I have forms with buttons on them, the buttons are loaded in from a database in the _load part.
If i edit the database and return to the form, I want to re-load it compleatly, Mine remembers its last state.:confused:
Printable View
I have forms with buttons on them, the buttons are loaded in from a database in the _load part.
If i edit the database and return to the form, I want to re-load it compleatly, Mine remembers its last state.:confused:
How are you re-loading the form?
-Cool Bizs
Did you try setting it equal to a new form?
Thanks for yout help I have solved the issue now. i I re-declare the form evytime I want to envoke it.
EG:
DIM spiritsForm AS NEW spirits form.
It seems to solve my problem as a new form has fresh settings.
Will this impinge on speed and memory though, will old forms still reside in memory??
:)
Just be sure to call the forms close() method for each form and you should be OK.