-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.
Printable View
-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.
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
Here, I click directly on form1 to call form2
VB Code:
Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Click Dim frm2 As New Form2 frm2.Show() End Sub