T
Thomas.Swaney
I have developed many applications in VB and eVB. I am currently
working on developing an application with the .net compact framework
2.0 in Visual Studio 2005.
In VB or eVB you could access another forms controls as shown below:
'From frmMain Click event
frmGetPrimary.grdPrimary.DataSource = dtChildUPN
is all very confusing for me. My problem is that the frmGetPrimary form
hasn't been called as of yet before the frmMain click event has been
fired. Can someone please tell me how to set the DataSource for a grid
in Form2 if Form1 is the form with the Click Event. Please keep it
VB/eVB oriented so I can understand. Thanks.
working on developing an application with the .net compact framework
2.0 in Visual Studio 2005.
In VB or eVB you could access another forms controls as shown below:
'From frmMain Click event
frmGetPrimary.grdPrimary.DataSource = dtChildUPN
that will share it's properties before you can use the properties. ThisFrom some of the information that I have read you have to create a form
is all very confusing for me. My problem is that the frmGetPrimary form
hasn't been called as of yet before the frmMain click event has been
fired. Can someone please tell me how to set the DataSource for a grid
in Form2 if Form1 is the form with the Click Event. Please keep it
VB/eVB oriented so I can understand. Thanks.