473,466 Members | 1,324 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Problem getting datasheet view in forms

Hi Group,

I'm creating a maintenance switchboard and am trying to create forms
to update tables and wanted these to appear as datasheets. Although I
have the default view set to datasheet and when opened directly the
form opens in datasheet view, as soon as I try to open the same form
from the mainenance switchboard it opens in single form view. I'm
using Access 2000. Sorry if its a basic error on my part but cant see
what I've missed.

Regards

Don
Dec 13 '07 #1
4 4380
If you open the form programmatically, you need to specify the view you
want, e.g.:
DoCmd.OpenForm "Form1", acFormDS

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

<dw******@gmail.comwrote in message
news:c3**********************************@e10g2000 prf.googlegroups.com...
Hi Group,

I'm creating a maintenance switchboard and am trying to create forms
to update tables and wanted these to appear as datasheets. Although I
have the default view set to datasheet and when opened directly the
form opens in datasheet view, as soon as I try to open the same form
from the mainenance switchboard it opens in single form view. I'm
using Access 2000. Sorry if its a basic error on my part but cant see
what I've missed.

Regards

Don
Dec 13 '07 #2
On Dec 13, 1:05 pm, "Allen Browne" <AllenBro...@SeeSig.Invalidwrote:
If you open the form programmatically, you need to specify the view you
want, e.g.:
DoCmd.OpenForm "Form1", acFormDS

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users -http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

<dwasb...@gmail.comwrote in message

news:c3**********************************@e10g2000 prf.googlegroups.com...
Hi Group,
I'm creating a maintenance switchboard and am trying to create forms
to update tables and wanted these to appear as datasheets. Although I
have the default view set to datasheet and when opened directly the
form opens in datasheet view, as soon as I try to open the same form
from the mainenance switchboard it opens in single form view. I'm
using Access 2000. Sorry if its a basic error on my part but cant see
what I've missed.
Regards
Don- Hide quoted text -

- Show quoted text -
Thank you Allen
Dec 13 '07 #3
On Dec 13, 8:03 am, "dwasb...@gmail.com" <dwasb...@gmail.comwrote:
On Dec 13, 1:05 pm, "Allen Browne" <AllenBro...@SeeSig.Invalidwrote:


If you open the form programmatically, you need to specify the view you
want, e.g.:
DoCmd.OpenForm "Form1", acFormDS
--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users -http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
<dwasb...@gmail.comwrote in message
news:c3**********************************@e10g2000 prf.googlegroups.com...
Hi Group,
I'm creating a maintenance switchboard and am trying to create forms
to update tables and wanted these to appear as datasheets. Although I
have the default view set to datasheet and when opened directly the
form opens in datasheet view, as soon as I try to open the same form
from the mainenance switchboard it opens in single form view. I'm
using Access 2000. Sorry if its a basic error on my part but cant see
what I've missed.
Regards
Don- Hide quoted text -
- Show quoted text -

Thank you Allen- Hide quoted text -

- Show quoted text -
The generic switchboard maintenance does not allow for that type of
open.

One way around that is to create a blank form and place your designed
form on it as a child form and make them the same size and then have
the switchboard open the blank form (obviously with a specific name).

Ron
Dec 13 '07 #4
On 13 Dec, 19:08, Ron2006 <ronne...@hotmail.comwrote:
On Dec 13, 8:03 am, "dwasb...@gmail.com" <dwasb...@gmail.comwrote:


On Dec 13, 1:05 pm, "Allen Browne" <AllenBro...@SeeSig.Invalidwrote:
If you open the form programmatically, you need to specify the view you
want, e.g.:
DoCmd.OpenForm "Form1", acFormDS
--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users -http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
<dwasb...@gmail.comwrote in message
>news:c3**********************************@e10g200 0prf.googlegroups.com...
Hi Group,
I'm creating a maintenance switchboard and am trying to create forms
to update tables and wanted these to appear as datasheets. Although I
have the default view set to datasheet and when opened directly the
form opens in datasheet view, as soon as I try to open the same form
from the mainenance switchboard it opens in single form view. I'm
using Access 2000. Sorry if its a basic error on my part but cant see
what I've missed.
Regards
Don- Hide quoted text -
- Show quoted text -
Thank you Allen- Hide quoted text -
- Show quoted text -

The generic switchboard maintenance does not allow for that type of
open.

One way around that is to create a blank form and place your designed
form on it as a child form and make them the same size and then have
the switchboard open the blank form (obviously with a specific name).

Ron- Hide quoted text -

- Show quoted text -
Ron,

Many thanks for your reply, I did try that but although it did work it
meant I had more forms than I really wanted. I've now had a chance to
use Allens suggestion and that works fine.

Many thanks to you both.

Regards

Don
Dec 14 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Dejan M. | last post by:
Can you help me? I have 9 forms in the base. 2 forms are opening as single and 7 as datasheet. Thats OK, but when I used Switchboard manager, with him all of my forms are opened as single. How can...
2
by: Georges Heinesch | last post by:
Hi: I have a tables in relationship to each other. When I open the main table (table 1), I see a "+" at the very left of every record. Clicking on the "+" expands the data of the linked table...
1
by: Big Time | last post by:
I have a form that is based on a parameter query that needs to be opened in datasheet view. I have set the default view to datasheet and disallowed all other types of views other than design view....
1
by: Yuki | last post by:
I am trying to find out if I can have a specific record that has been selected in a list box be opened in datasheet view. I can't seem to find where this can happen or what I need to use to make...
5
by: sara | last post by:
I haven't been able to find this answer in previous posts; I have a form, with a subform that is displayed in datasheet view, and one field "Item Description" could be from very few to many...
5
by: Bill | last post by:
This database has no forms. I am viewing an Access table in datasheet view. I'd like to execute a macro to execute a function (using "runcode"). In the function, I'll reading data from the record...
3
by: russellhq | last post by:
Hi, i am trying to open a report based on values picked in a form but get stuck with one of the values. I have a feeling it has to do with the yes/no datatype but am not sure since I am quite new...
10
by: MLH | last post by:
Gentlemen: I am having one heck of a time taking a DAO walk through the records in an SQL dynaset. I'm trying to walk a set of records returned by a UNION query. I'm attempting to filter the...
4
WyvsEyeView
by: WyvsEyeView | last post by:
I have a datasheet form in which one field is a combo box that will potentially contain hundreds of records. I've read about several methods of speeding up such combo boxes or limiting their initial...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.