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  

How do I create a switch board that holds a number of forms?



 
 
Thread Tools Display Modes
  #1  
Old August 4th, 2006, 09:00 PM posted to microsoft.public.access.tablesdbdesign
Gmap
external usenet poster
 
Posts: 1
Default How do I create a switch board that holds a number of forms?

I am working on a Data base for Travel Unit where I work.
I have designed a Five Tables,Quaries and Forms .

Now I want to desing a switch board to hold all these forms, which should be
open with a command bottons.
How do I go about this?
  #2  
Old August 5th, 2006, 09:12 AM posted to microsoft.public.access.tablesdbdesign
Wayne-I-M
external usenet poster
 
Posts: 3,674
Default How do I create a switch board that holds a number of forms?

You could create a new form and call it Switchboard and simply insert a few
buttons onto the form. Place this code behine Button 1
Private Sub Button1_Click()
DoCmd.OpenForm "FormName1", acNormal, "", "", , acNormal
End Sub

Place this behind Button 2
Private Sub Button2_Click()
DoCmd.OpenForm "FormName2", acNormal, "", "", , acNormal
End Sub


Place this behind Button 3
Private Sub Button3_Click()
DoCmd.OpenForm "FormName3", acNormal, "", "", , acNormal
End Sub

Hope this helps

--
Wayne
Manchester, England.



"Gmap" wrote:

I am working on a Data base for Travel Unit where I work.
I have designed a Five Tables,Quaries and Forms .

Now I want to desing a switch board to hold all these forms, which should be
open with a command bottons.
How do I go about 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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Sequential number Scott Running & Setting Up Queries 16 April 22nd, 2006 12:53 AM
Update a number field incrementally AllyOop Running & Setting Up Queries 7 February 22nd, 2006 12:38 PM
Return SEARCHED Column Number of Numeric Label and Value Sam via OfficeKB.com Worksheet Functions 23 January 30th, 2006 06:16 PM
Report with set number of rows per page Ken from Chicago General Discussion 7 January 4th, 2006 02:42 PM
Design help, please SillySally Using Forms 27 March 6th, 2005 04:11 AM


All times are GMT +1. The time now is 11:42 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.