: hi, : I WANT KNOW THE DIFFERENCE BETWEEN : "Difference between form.show() and form.showdialog()" : : Regard : Varadha : I worked with this. supose you have form1 and 2 you are going from form1 to form2 The differance is:
form2.show() lets form1 active so you can enter data form2.showdialog makes form1 read only you can't enter data
: : hi, : : I WANT KNOW THE DIFFERENCE BETWEEN : : "Difference between form.show() and form.showdialog()" : : : : Regard : : Varadha : : : I worked with this. : supose you have form1 and 2 : you are going from form1 to form2 : The differance is: : : form2.show() lets form1 active so you can enter data : form2.showdialog makes form1 read only you can't enter data : : Thanks :
Hi,
Actually the Form1.ShowDialog() is the .NET (VB7) way of setting the form to 'MODAL'. The equivalent VB6 statement would be 'Form1.Show 1' or Form1.Show(1).
Comments
: I WANT KNOW THE DIFFERENCE BETWEEN
: "Difference between form.show() and form.showdialog()"
:
: Regard
: Varadha
:
I worked with this.
supose you have form1 and 2
you are going from form1 to form2
The differance is:
form2.show() lets form1 active so you can enter data
form2.showdialog makes form1 read only you can't enter data
Thanks
: : I WANT KNOW THE DIFFERENCE BETWEEN
: : "Difference between form.show() and form.showdialog()"
: :
: : Regard
: : Varadha
: :
: I worked with this.
: supose you have form1 and 2
: you are going from form1 to form2
: The differance is:
:
: form2.show() lets form1 active so you can enter data
: form2.showdialog makes form1 read only you can't enter data
:
: Thanks
:
Hi,
Actually the Form1.ShowDialog() is the .NET (VB7) way of setting the form
to 'MODAL'. The equivalent VB6 statement would be 'Form1.Show 1' or
Form1.Show(1).
Hope this helps
rrbecker