|
-
Sep 27th, 2005, 12:25 AM
#1
Thread Starter
New Member
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.
-
Sep 27th, 2005, 12:40 AM
#2
Fanatic Member
-
Sep 27th, 2005, 12:42 AM
#3
Re: I need some help in form
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|