|
-
Mar 12th, 2013, 06:41 AM
#1
Thread Starter
New Member
open a new form from form 1
Hi!
i create two form 1) customer and 2) chedetail now i want to open form chedetail from customer form with custid
and both table has relation with custid
thanks
-
Mar 12th, 2013, 03:35 PM
#2
Lively Member
Re: open a new form from form 1
For starters,
Code:
Dim oForm As chedetail
oForm = New chedetail()
oForm.Show()
oForm = Nothing
There are various ways to pass data into the new form.
-
Mar 12th, 2013, 03:50 PM
#3
Thread Starter
New Member
Re: open a new form from form 1
 Originally Posted by geek648
For starters,
Code:
Dim oForm As chedetail
oForm = New chedetail()
oForm.Show()
oForm = Nothing
There are various ways to pass data into the new form.
thanks for reply
i am trying to add chqdetail in chqdetail form for customer how can i do that
thanks
-
Mar 12th, 2013, 03:57 PM
#4
Lively Member
Re: open a new form from form 1
Simplest way is to have a public variable in the chqdetail form, and set it (oForm.YourVar=whatever) to whatever you require before you show the form.
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
|