A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Northwind Customer Order Form



 
 
Thread Tools Display Modes
  #1  
Old April 20th, 2008, 09:14 AM posted to microsoft.public.access.forms
C Tate
external usenet poster
 
Posts: 45
Default Northwind Customer Order Form

In the Northwind Customer Order Form, if you click OrderID, advice appears in
the bottom of the screen (not sure what this area is actually called). It
says 'Unique order number'. I find this useful guidance for the user but
wasn't sure how to implement it. Any ideas?

Another thing I wondered is if there is any way to shade the orderID column
in a subform, to very clearly indicate that this is not a column into which
you enter data, but is in fact autonumbered?
  #2  
Old April 20th, 2008, 02:20 PM posted to microsoft.public.access.forms
Rob Parker
external usenet poster
 
Posts: 701
Default Northwind Customer Order Form

Which version of the Northwind database are you using? In my A2002 copy,
the OrderID field is not enabled in the Orders form, and does not even
appear in the subform.

Apart from that, I suspect that you're asking about the information that
appears in the status bar, at the very bottom (left) of the Access
application window. There are several ways of setting/controlling this
information.

First, the property which controls this is the ControlTip Text property for
the active control on the form. This is available on the Other tab of the
property dialog box.

Second, the default is that the ControlTip Text property for a control bound
to a field in the form's table/query recordsource will be the entry in the
Description in the underlying table. If this is empty, the status bar will
display "Form View", unless you change the string in the ControlTip Text
property.

Third, you can set this property via code by referring to the control's
StatusBarText property.

Re-reading your question, I see that the second part may be interpreted as a
more general question, rather than relating specifically to the Northwind
database. If that's the case, my advice is as follows:

You would normally not display the OrderID field in the subform; if you have
a control for it (which is not strictly necessary, but can be helpful,
particularly during development when you are checking what's happening) set
the control's Visible property to No. [Note: my practice is to do this, and
also to set the background colour of the control to something distinctive -
I use a pink shade - so that when I open the form in design view I can
immediately see which controls/fields are not visible to users.] Or, if you
think that you should show an autonumber field to the users (again, normally
not what you should be doing - autonumber fields really only have meaning to
the database itself), then set the Enabled property of the control to No,
and/or the Locked property of the control to Yes.

HTH,

Rob


"C Tate" wrote in message
...
In the Northwind Customer Order Form, if you click OrderID, advice appears
in
the bottom of the screen (not sure what this area is actually called). It
says 'Unique order number'. I find this useful guidance for the user but
wasn't sure how to implement it. Any ideas?

Another thing I wondered is if there is any way to shade the orderID
column
in a subform, to very clearly indicate that this is not a column into
which
you enter data, but is in fact autonumbered?


  #3  
Old April 20th, 2008, 04:32 PM posted to microsoft.public.access.forms
C Tate
external usenet poster
 
Posts: 45
Default Northwind Customer Order Form

Thanks for all that useful information - much appreciated.

"Rob Parker" wrote:

Which version of the Northwind database are you using? In my A2002 copy,
the OrderID field is not enabled in the Orders form, and does not even
appear in the subform.

Apart from that, I suspect that you're asking about the information that
appears in the status bar, at the very bottom (left) of the Access
application window. There are several ways of setting/controlling this
information.

First, the property which controls this is the ControlTip Text property for
the active control on the form. This is available on the Other tab of the
property dialog box.

Second, the default is that the ControlTip Text property for a control bound
to a field in the form's table/query recordsource will be the entry in the
Description in the underlying table. If this is empty, the status bar will
display "Form View", unless you change the string in the ControlTip Text
property.

Third, you can set this property via code by referring to the control's
StatusBarText property.

Re-reading your question, I see that the second part may be interpreted as a
more general question, rather than relating specifically to the Northwind
database. If that's the case, my advice is as follows:

You would normally not display the OrderID field in the subform; if you have
a control for it (which is not strictly necessary, but can be helpful,
particularly during development when you are checking what's happening) set
the control's Visible property to No. [Note: my practice is to do this, and
also to set the background colour of the control to something distinctive -
I use a pink shade - so that when I open the form in design view I can
immediately see which controls/fields are not visible to users.] Or, if you
think that you should show an autonumber field to the users (again, normally
not what you should be doing - autonumber fields really only have meaning to
the database itself), then set the Enabled property of the control to No,
and/or the Locked property of the control to Yes.

HTH,

Rob


"C Tate" wrote in message
...
In the Northwind Customer Order Form, if you click OrderID, advice appears
in
the bottom of the screen (not sure what this area is actually called). It
says 'Unique order number'. I find this useful guidance for the user but
wasn't sure how to implement it. Any ideas?

Another thing I wondered is if there is any way to shade the orderID
column
in a subform, to very clearly indicate that this is not a column into
which
you enter data, but is in fact autonumbered?



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:30 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.