D
Dom
I have a Main form called frmMain which appears when the program
starts, and a second form called frmUserName. frmMain has a button,
btnUserName. When you click it, I have this code:
frmUserName f = new frmUserName ();
f.ShowDialog(this);
For the next line, I expected to find f.txtUserName in the
IntelliSense window, but it's not there. In fact, noneof the controls
are there. Am I just caught in VB think?
Dom
starts, and a second form called frmUserName. frmMain has a button,
btnUserName. When you click it, I have this code:
frmUserName f = new frmUserName ();
f.ShowDialog(this);
For the next line, I expected to find f.txtUserName in the
IntelliSense window, but it's not there. In fact, noneof the controls
are there. Am I just caught in VB think?
Dom