A
Ayala
Hi, I have 6 forms which capture info for a service
report. I have one form for 1 step of the service. I try
to put as few controls as possible.. but anyways forms are
opening to slow. What I have now is:
A main form where the user selects an OrderNo. from a
combobox, with this order no used as a unique identifier I
open an close the rest of the forms.
Every form has a next and previous button which moves to
the next or previous form. When clicking on any button I
close the present form and open the previous or next form
using DoCmd.OpenForm "frmName", acNormal, , strSQL; where
in strSQL I'm passing the OrderID. But this is too slow..
So I tried not opening and closing every form but just
using putting visible = True/False depending on the case,
and then Requering so I'm still viewing the info for the
specified OrderID. But this causes a Write conflict every
time any record is changed on any form.. the data is lost
or corrupted.
which is then the proper way to move around this forms??
thx in advance.
report. I have one form for 1 step of the service. I try
to put as few controls as possible.. but anyways forms are
opening to slow. What I have now is:
A main form where the user selects an OrderNo. from a
combobox, with this order no used as a unique identifier I
open an close the rest of the forms.
Every form has a next and previous button which moves to
the next or previous form. When clicking on any button I
close the present form and open the previous or next form
using DoCmd.OpenForm "frmName", acNormal, , strSQL; where
in strSQL I'm passing the OrderID. But this is too slow..
So I tried not opening and closing every form but just
using putting visible = True/False depending on the case,
and then Requering so I'm still viewing the info for the
specified OrderID. But this causes a Write conflict every
time any record is changed on any form.. the data is lost
or corrupted.
which is then the proper way to move around this forms??
thx in advance.