I need to know which should come first and explanation?
Unload Me
End
or
End
Unload Me
Thanx
Anyone still use VB6?
My vb6 skills are a bit rusty, but as far as I remember it's for multi-form projects...abc123 wrote:Thanx - that was fast!!
I'm not sure what unload me does either LOL
Make a project.
Code: Select all
Form1: frmMain
2 buttons:
cmdNextForm
cmdExit
Form2: frmTwo
1 button:
cmdBack
cmdNextForm:
frmMain.hide 'hides this form, but keeps it alive in memory
unload frmMain 'kills the form from memory
load frmTwo 'initiates frmTwo and loads it into memory
frmTwo.show 'shows the initiated frmTwo
cmdExit:
end 'kills the application
cmdBack:
frmTwo.hide
unload frmTwo
load frmMain
frmMain.show
I can't remember the term for it... but "me" I believe is a variable that refers to the form the code is resident in... you should be able to do "me.hide/unload me".