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

    opening an interface after some event happen in windows form application

    I've created an interface for registration. When user clicks on any event the window for that should appear in this form, else the windows should be hidden.

    For example if you see the image that I've posted, suppose the user clicks on the admin then the registration form for admin should appear in the form.

    if the user clicks on the student then the registration form for student should appear. Else all should be hidden, unless user clicks on some events.

    also, at one time onlly one event should appear at the form.

    How can I do this??
    Attached Images Attached Images  

  2. #2
    Join Date
    May 2007
    Location
    Denmark
    Posts
    623

    Re: opening an interface after some event happen in windows form application

    try googling a little.
    Questions about opening forms have been asked before ... A lot
    It's not a bug, it's a feature!

  3. #3
    Join Date
    Dec 2011
    Posts
    61

    Re: opening an interface after some event happen in windows form application

    you can create a MDI app and loop through all child windows, closing all except the one that matches your selection

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