Make pop up form

menglim

Member
Joined
Oct 5, 2009
Messages
9
Programming Experience
Beginner
I want to make a form which is pop up in window. so, user can not do anything with this form displays. If user close this form, so user can open explorer or . . .. .

In all, I want to make a form which pop up like shutdown menu in Microsoft Window, so user cannot click any place beside this form.

thanks you so much,

I am a student at RUPP in major IT.
 
Open the form as a modal form and they can't continue til they close this window:
VB.NET:
Dim f As New Form2
f.ShowDialog
 
I have tried this but user can click something in desktop. I don't want user can do anything when this from open.
 
Back
Top