ShowDialog

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Ok i hope this is an easyone.

Just started creating a windows ap using vb.net.. I have done a bit with
vb6 and have asp.net alot.

I am tring to open a modal form in my code with this

Dim fJob As New frmJob
fJob.ShowDialog()

what pops up is a blank form with no controls.

if i type fjob. it has my controls in the list but i do not see them on
the form.

What have i done?
 
If you do have some controls on the form (frmJob), is there a chance that
their Visible property is set to False?
 
Back
Top