P
Pascal
bonjour/hello
I have an application with several forms : form1 is loaded at first.
Man makes some staff (filling text box, clicking radiobutton) in this window
and then click nextbutton and so on from form to form.
I use theese commands to pass from Form1 to Form2 :
Form2.Activate()
Me.Hide()
Form2.Show()
But it's a little bit flickering during the construction of the form : it's
not nice to see.
Before in vb6
it was
form2.load
me.hide
form2.show
so form2 was not flickering ....
Is there another way to do that ?
What's happen really when man clicks on the red cross button in the title
bar of a window ?
under vb2005 debugging, if i click on this button on the third form : form3
closes but the debugger not... so i think the other form (form1 and 2 are
still alive in the memory ?
do i have to code with showdialog instead of show() knowing that i could go
back from form5 to form1 ?
thanks a lot for your help
http://www.scalpa.info
I have an application with several forms : form1 is loaded at first.
Man makes some staff (filling text box, clicking radiobutton) in this window
and then click nextbutton and so on from form to form.
I use theese commands to pass from Form1 to Form2 :
Form2.Activate()
Me.Hide()
Form2.Show()
But it's a little bit flickering during the construction of the form : it's
not nice to see.
Before in vb6
it was
form2.load
me.hide
form2.show
so form2 was not flickering ....
Is there another way to do that ?
What's happen really when man clicks on the red cross button in the title
bar of a window ?
under vb2005 debugging, if i click on this button on the third form : form3
closes but the debugger not... so i think the other form (form1 and 2 are
still alive in the memory ?
do i have to code with showdialog instead of show() knowing that i could go
back from form5 to form1 ?
thanks a lot for your help
http://www.scalpa.info