G
Guest
Hi
I have made a database to run off a memory stick.
However, I have found that 1 large form is slow to load.
I've tried starting a small form, as a message, and then this form opening
the larger one using:
'Small form on current
Private Sub Form_Current()
On Error GoTo E_Handle
Me.Repaint
DoCmd.OpenForm "frmLargeForm"
sExit:
On Error Resume Next
Exit Sub
E_Handle:
MsgBox Err.Description, vbOKOnly, Err.Number
Resume sExit
End Sub
However, this smaller message form only displays after the main form. I
thought the me.repaint would fix this.
Any ideas?
Thanks
Leonard
I have made a database to run off a memory stick.
However, I have found that 1 large form is slow to load.
I've tried starting a small form, as a message, and then this form opening
the larger one using:
'Small form on current
Private Sub Form_Current()
On Error GoTo E_Handle
Me.Repaint
DoCmd.OpenForm "frmLargeForm"
sExit:
On Error Resume Next
Exit Sub
E_Handle:
MsgBox Err.Description, vbOKOnly, Err.Number
Resume sExit
End Sub
However, this smaller message form only displays after the main form. I
thought the me.repaint would fix this.
Any ideas?
Thanks
Leonard