CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2000
    Posts
    22

    Run-Time : Form Creartion and Acess

    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


  2. #2
    Join Date
    Apr 2001
    Location
    CA
    Posts
    153

    Re: Run-Time : Form Creartion and Acess

    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
    thanx/good luck

  3. #3
    Join Date
    Aug 2000
    Posts
    22

    Re: Run-Time : Form Creartion and Acess

    I am doing that. BUT I have to change the contol value after a perticular interval.




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured