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 » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Switching to Design view - lost the icon



 
 
Thread Tools Display Modes
  #1  
Old May 18th, 2009, 08:09 PM posted to microsoft.public.access.tablesdbdesign
Breezy
external usenet poster
 
Posts: 38
Default Switching to Design view - lost the icon

I have somehow lost the toolbar / icon to switch to design view. I need to
make some changes and I'm not sure how to get back to the design view without
the toolbar option.

ALso... I need to make a field become required only if another field is
checked. I have a field that says completed with a check box option. When
this is selected, I want the work order field to become required. How do I do
this?
  #2  
Old May 18th, 2009, 10:59 PM posted to microsoft.public.access.tablesdbdesign
Graham Mandeno
external usenet poster
 
Posts: 593
Default Switching to Design view - lost the icon

Hi Breezy

Is your form modal or popup? Both these will prevent the toolbar from
changing to match the context of the form.

However, you should be able to right-click on the form's background and
choose "Form design" from the context menu.

I suggest you use your form's BeforeUpdate event for validation based on
multiple fields:

If Me.chkCompleted And IsNull(Me.txtWorkOrder) Then
Me.txtWorkOrder.SetFocus
MsgBox "Please supply a work order"
Cancel = True
End If

--
Good Luck :-)

Graham Mandeno [Access MVP]
Auckland, New Zealand

"Breezy" wrote in message
...
I have somehow lost the toolbar / icon to switch to design view. I need to
make some changes and I'm not sure how to get back to the design view
without
the toolbar option.

ALso... I need to make a field become required only if another field is
checked. I have a field that says completed with a check box option. When
this is selected, I want the work order field to become required. How do I
do
this?



 




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 04:45 PM.


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