Results 1 to 36 of 36

Thread: VB: Form

Threaded View

  1. #4
    Elite Hacker Jacob Roman's Avatar
    Join Date
    Aug 2004
    Location
    Miami Beach, FL
    Posts
    5,349

    Re: VB: Form

    Let's do things one at a time here. The server stuff is way out of your league. Plus you must have some DirectX7 or DirectX8 and maybe some Winsock experience to do that. But if you want to learn your server stuff anyways, it's your funeral:

    http://216.5.163.53/DirectX4VB/TUT_DX8_DP.asp

    Now to get another form to appear after clicking a command button, assuming your first form's name is Form1 and the second form's name is Form2:

    Code:
    Private Sub Command1_Click()
    
        Form1.Hide
        Form2.Show
        
    End Sub
    And what Icon do you want moved anyways? You can't move the forms icon. But you can change it to something else.
    Last edited by Jacob Roman; Dec 9th, 2004 at 08:53 PM.

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