Group: StrataFrame Users
Posts: 153,
Visits: 1.2K
|
I created a inherited browsedialog class and used it on code (not with the designer)
I use a handler:
AddHandler _BrowseDialog.BrowseDialogClosed, AddressOf _BrowseDialog_BrowseDialogClosed
and on it:
Private Sub _BrowseDialog_BrowseDialogClosed(ByVal e As System.EventArgs)
NoDebeMostrarPopup = True
txtID.Text = _InternalBusinessObject(_InternalBusinessObject.PrimaryKeyField).ToString()
PasarASiguienteControl = True
txtCodigoOrDescripcionCambiarFoco(txtCodigo)
End Sub
When I select a item on the browsedialog, all work ok but appears a messagebox, how I can avoid this message? thanks!
|