showing a modal form at a location
-
how can i show a modal window form at a cordinates im using vb.net 2005 and im doing something like this dim oForm as new InvoiceForm with oform .showmodal() .left=txtID.left .top=txtid.top+txtid.height end with t.aransiola
I think this might be what you are looking for
Dim oForm As New InvoiceForm
With oForm
.StartPosition = FormStartPosition.Manual
.Left = txtID.left
.Top = txtid.top+txtid.height
.ShowDialog()
End Withhope it helps
If my help was helpfull let me know, if not let me know why. The only way we learn is by making mistakes.
-
how can i show a modal window form at a cordinates im using vb.net 2005 and im doing something like this dim oForm as new InvoiceForm with oform .showmodal() .left=txtID.left .top=txtid.top+txtid.height end with t.aransiola