Results 1 to 3 of 3

Thread: I need some help in form

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2005
    Posts
    10

    I need some help in form

    -I want to create a buttom that when i click on a form will come
    i want the code that allow me to this.

    - I want some to provide me with some video tutorial about the windows
    form and the process of deleting inserting updating of data.

  2. #2
    Fanatic Member uniquegodwin's Avatar
    Join Date
    Jul 2005
    Location
    Chennai,India
    Posts
    694

    Re: I need some help in form

    Hi,I dont understand your 1st question there..
    and as for the 2nd thing you've asked,there are free video tutorials from MSDN called the MSDN Nuggets...Their 1st few tutorial videos teach about the basics.
    Just search for MSDN nuggets and you'll find it

    Hope it helps
    Godwin

    Help someone else with what someone helped you!

  3. #3
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: I need some help in form

    Here, I click directly on form1 to call form2

    VB Code:
    1. Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Click
    2.         Dim frm2 As New Form2
    3.         frm2.Show()
    4.     End Sub

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