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
Printable View
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
For starters,
There are various ways to pass data into the new form.Code:Dim oForm As chedetail
oForm = New chedetail()
oForm.Show()
oForm = Nothing
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.