In VC++, I can create a control in the resource editor and connect it, called subclassing, to a supporting object in the OnInitDialog() function of my dialog class.
Ex: m_pPartno = new CEdit;
m_pPartno->Create(....);
m_pPartno->SubclassDlgItem(IDC_PARTNO, this);
How can I do the same thing in .NET C#? Surely Microsoft didn't forget to implement this feature in the .NET environment!
Thanks,
Royce Fickling