Results 1 to 3 of 3

Thread: [RESOLVED] New Window

  1. #1

    Thread Starter
    Lively Member lavarock09's Avatar
    Join Date
    Jun 2005
    Posts
    124

    [RESOLVED] New Window

    New Window,

    I want to press a button and the same window appears again aswell as the current one.

    so on form1 there is a button, when you press the button it loads up a new form1 aswell as the current one
    Last edited by lavarock09; Jul 22nd, 2005 at 02:41 PM.

  2. #2
    Fanatic Member space_monkey's Avatar
    Join Date
    Apr 2005
    Location
    神と歩くこと
    Posts
    573

    Re: New Window

    This might be what you are looking for.

    VB Code:
    1. cmdButton_Click()
    2. Dim newWindow As Form
    3.  
    4. Set newWindow = New frmOldForm
    5. newWindow.Show

    HTH
    Using VB6 or VB.net 2008 with .net 3.5
    "Life... death... either way I'll be confined to a small cubicle!" - Hermes Conrad

  3. #3

    Thread Starter
    Lively Member lavarock09's Avatar
    Join Date
    Jun 2005
    Posts
    124

    Re: New Window

    Thanks Dude

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