To simulated a reload in a form without actually unloading the form and reloading it?
Example form1 is showing but i want it to reload.....if a panel is not showing no more.....without actually going unload me
form1.show
got me?
Printable View
To simulated a reload in a form without actually unloading the form and reloading it?
Example form1 is showing but i want it to reload.....if a panel is not showing no more.....without actually going unload me
form1.show
got me?
would do
i don't know if it's what you want but try this:
Code:Private Sub Command1_Click()
Form_Load
End Sub
Private Sub Form_Load()
MsgBox "hello"
End Sub
er, I think I know what you're saying.
Have you tried me.refresh to refresh the form
None of the suggestions work since the form is already loaded....
why does part of it stop showing?
is the app busy in a loop or something?
I wanted the code in the activate to be performed, if i do it any time since its a loop my app wont even begin, or just stop. It works fine in the activate though....