Good day & thanks.
i have two student forms:
the name of the first form is frm_student_main .it has a "Add Student" button. and a "Edit Student" button.
the name of the second form is frm_student.
this form opens when the user hits the "Add Student" or "Edit Student" button on the frm_student_main.
the frm_student allows users to enter student name , class, section , and etc ....
a save button saves info to the student_tbl.
a cancel button to exit form without saving.
now let's consider the user keeping the frm_student standby and goes back to frm_student_main and clicks again on one of the two buttons (add or edit student buttons).
this will reload the same frm_student with the new data . data in the frm_student that the user kept standby has been altered with the new ones. Moreover, multiple open instances of frm_student is not possible .Only one frm_student may be open at any one time.
i like to change that so that a user may open multiple instances of frm_student form.
how may i do that? Please.