try like this... |
| Vasanthakumar D replied to sambath kumar at 03-Jul-08 03:22 |
Hi,
if you are using different file names, then VS treat it as new form. so you need to use the same fomr name Form1 for this. If you use partial declaration, you can able to create multiple classes with the same. try like this...
Public Partial Form1 : Form
{
}
|
|