Er....wat does .repaint do for a form? is it like a refresh?
Also, I want to call form B from form A which, i want to close after calling the form B. My code in form A is like :
formB.show()
me.close()
however, after i do this, the whole program terminates
if i do
formB.show()
me.hide()
with this, formA is still active...
someone did suggest to set the formA to nothing, how do I do that?
also, is there a better way around this?
Also, I want to call form B from form A which, i want to close after calling the form B. My code in form A is like :
formB.show()
me.close()
however, after i do this, the whole program terminates
if i do
formB.show()
me.hide()
with this, formA is still active...
someone did suggest to set the formA to nothing, how do I do that?
also, is there a better way around this?