Datasheet view

A

Alan T

I got a form has been set the format as DataSheet.
However, when it is displayed from my main form by:
DoCmd.OpenForm "frmSetup", acNormal, , , acFormEdit, acWindowNormal

It display as:

Field label, Field value text box.
 
J

John W. Vinson

I got a form has been set the format as DataSheet.
However, when it is displayed from my main form by:
DoCmd.OpenForm "frmSetup", acNormal, , , acFormEdit, acWindowNormal

It display as:

Field label, Field value text box.

Change acNormal to acFormDS to make it appear as a datasheet. The parameter in
the OpenForm method overrides the default setting.

John W. Vinson [MVP]
 
D

deepinlife

acNormal means form view..it is teh defulat view in the method.
so u have to override it
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

stopping an unwanted requery 1
Open form for add/edit records 2
Split form 0
Second form appears behind the first 2
DCount 2
ASK Field Formatting 1
Unremovable horizontal scroll bar on subform 1
Datasheet View 3

Top