Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

form view error?

Status
Not open for further replies.

homeguard

IS-IT--Management
Jul 12, 2007
47
US
so i have a form that when i open it up it looks like a datasheet but when i make a button to open it up it looks like a single form. I disabled form view and everything but still get this problem. Anyone had this problem?
 
Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmSubscription"
DoCmd.OpenForm stDocName, , , stLinkCriteria

the stuff the access wizard generated for me.
 
Try:

[tt]DoCmd.OpenForm stDocName, acFormDS, , stLinkCriteria[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top