M
Mohd Ebrahim
Hello,
In the below code , I want to launch all the 5 instances of 'frmCustomer'
but since its 'ShowDialog' i cant do it.
any way of achieving this?
int i=5;
while i < 5
{
using (frmCustomer obj = new frmCustomer())
{
obj.ShowDialog();
i++;
}
}
Regards,
In the below code , I want to launch all the 5 instances of 'frmCustomer'
but since its 'ShowDialog' i cant do it.
any way of achieving this?
int i=5;
while i < 5
{
using (frmCustomer obj = new frmCustomer())
{
obj.ShowDialog();
i++;
}
}
Regards,