Click to See Complete Forum and Search --> : Run-Time : Form Creartion and Acess


deep2000
June 18th, 2001, 10:42 AM
Hello,

I have created a Dialog with the name MyMessageDialog Each time I recive a New Message I am Creating a new instance of this.
like :
Dim NewMessage As New MyMessageDialog
NewMessage.Show

Once This is created I am changing the Text and such stuff.

BUT - I want insted of Creaing Each time Every New Type of Message the new Instace to be created otherwise it has to access the previously created Window.

Is it possible ??? If yes how can i do that

-Deep

forty7
June 18th, 2001, 03:15 PM
you could change the scope of your dialogue box. create it once and then change it's properties before showing it when you need it.

thanx/good luck,
adam

deep2000
June 19th, 2001, 02:04 AM
I am doing that. BUT I have to change the contol value after a perticular interval.