CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: code

  1. #1
    Join Date
    Apr 2001
    Posts
    1

    code

    How do I:
    code NEXT for next form?
    PREVIOUS?
    EXIT?

    Thanks!!!



  2. #2
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: code

    What do you need to do with next(porevious) form? Load it?

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

  3. #3
    Join Date
    May 2000
    Location
    New York, NY, USA
    Posts
    2,878

    Re: code

    If you are talking about Forms collection then the following code
    Dim frm As Form
    For Each frm In Forms
    MsgBox frm.Name
    Next

    will show you every loaded form in the Forms collection

    Iouri Boutchkine
    [email protected]
    Iouri Boutchkine
    [email protected]

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