View Full Version : Code won't stop for form entry


belton
05-17-2001, 10:05 AM
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).]