I need to open the form in acDialog mode so that the user can enter in some values to be used by the report that is being run once they hit the ok button...
DoCmd.OpenForm "frmParameters", acNormal, , , acFormEdit, acDialog
The problem is that for some reason the acdialog mode prevents me from repainting the form and it's controls after assigned a new value to a label with these statements..
Forms!frmParameters!lblDirections.Caption = "Enter in the parameter values for the " & Me.Name & " report and press ok"
DoCmd.RepaintObject acForm, "frmParameters"
These statement are run when the report is opened.
Is there a way to get around this problem???
Thanks in Advance!!
DoCmd.OpenForm "frmParameters", acNormal, , , acFormEdit, acDialog
The problem is that for some reason the acdialog mode prevents me from repainting the form and it's controls after assigned a new value to a label with these statements..
Forms!frmParameters!lblDirections.Caption = "Enter in the parameter values for the " & Me.Name & " report and press ok"
DoCmd.RepaintObject acForm, "frmParameters"
These statement are run when the report is opened.
Is there a way to get around this problem???
Thanks in Advance!!
