Code won't stop for form entry (1 Viewer)

belton

Registered User.
Local time
Today, 02:35
Joined
May 9, 2001
Messages
13
Hey-

I can't seem to get my VB code to stop to allow editing of some data on a form, before continuing.

I am using -

stdocname = "WC_Sel_CropArea"
Application.Echo False
DoCmd.OpenForm stdocname, , , stLinkCriteria
Application.Echo True

as I process a table of information.

much appreciated...

I also tried

DoCmd.OpenForm stdocname, , , , acFormEdit

[This message has been edited by belton (edited 05-17-2001).]

I fixed this problem by using
DoCmd.OpenForm stdocname, acNormal, , , acFormEdit, acDialog

Thanks.

[This message has been edited by belton (edited 05-17-2001).]
 

Users who are viewing this thread

Top Bottom