block the mdiform
Visual Basic
3
Posts
2
Posters
0
Views
1
Watching
-
I'm making the tipic "about" form. This form is a child of a mdiForm. How can I block the mdiForm when the user press the "about" button until the about form is closed? I suppose that there is a property to do this, but I can't find it.
-
I'm making the tipic "about" form. This form is a child of a mdiForm. How can I block the mdiForm when the user press the "about" button until the about form is closed? I suppose that there is a property to do this, but I can't find it.
-
you must make it modal... use something like
_myForm_.ShowModal()
instead of_myForm_.Show()
(i don't remember the right name)...
TOXCCT >>> GEII power
[toxcct][VisualCalc]It's ShowDialog() Thank you!!