PC Review


Reply
Thread Tools Rate Thread

Access Shortcuts

 
 
=?Utf-8?B?cmVyYWlsZXI=?=
Guest
Posts: n/a
 
      24th Jan 2006
I want to create a shortcut to the desktop for a switchboard. I want only
the switchboard, and not the entire access program pane to open when I click
this shortcut. How do I do this?
 
Reply With Quote
 
 
 
 
Al Camp
Guest
Posts: n/a
 
      24th Jan 2006
I think you mean you want to "hide" the Access main screen (tables,
forms, queries...tabs)
Try Tools/StartUp and uncheck Display Database Window.
--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

"rerailer" <(E-Mail Removed)> wrote in message
news:10594538-46C6-46E5-AFAA-(E-Mail Removed)...
>I want to create a shortcut to the desktop for a switchboard. I want only
> the switchboard, and not the entire access program pane to open when I
> click
> this shortcut. How do I do this?



 
Reply With Quote
 
Allen Browne
Guest
Posts: n/a
 
      24th Jan 2006
You can drag a form from the Database window onto your Windows desktop, to
act as a shortcut to start the database and fire off this form. However,
that approach will show the database window.

Using API code, it is possible (though messy) to hide the main Access
window. Details in:
Manipulate Access Window
at:
http://www.mvps.org/access/api/api0019.htm

Note that a form normally opens as a child window of the main Access window,
so if you hide OMAIN, your form will not show either. You could try settting
the form's Popup property to Yes, so it opens as a standalone form and not a
child of the Access window.

--
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.

"rerailer" <(E-Mail Removed)> wrote in message
news:10594538-46C6-46E5-AFAA-(E-Mail Removed)...
>I want to create a shortcut to the desktop for a switchboard. I want only
> the switchboard, and not the entire access program pane to open when I
> click
> this shortcut. How do I do this?



 
Reply With Quote
 
66 Fox
Guest
Posts: n/a
 
      28th Jan 2006

"rerailer" <(E-Mail Removed)> wrote in message
news:10594538-46C6-46E5-AFAA-(E-Mail Removed)...
>I want to create a shortcut to the desktop for a switchboard. I want only
> the switchboard, and not the entire access program pane to open when I
> click
> this shortcut. How do I do this?


I tried posting this a couple of days ago with no success. Sorry if this
gets double posted.

Here is one trick I use. It opens up an Access form into which I enter
criteria for a query (Query-by-form), prints my report, and exits Access.

Create a Sub or Function like this in your Access database:
Sub OpenMyForm
DoCmd.OpenForm "frm_AnyForm", acNormal, , , , acDialog
End Sub

Create a VBScript file containing the following:
Set AccApp = CreateObject("Access.Application")
loc = "C:\Documents and settings\DB1.mdb" 'put path to your
database here
AccApp.OpenCurrentDatabase loc
AccApp.Run "OpenMyForm"
AccApp.CloseCurrentDatabase
AccApp.Quit
Set AccApp = nothing

Create a shortcut to this script on your desktop. It will open just the
form, which will stay open until you close it because it is a dialog box,
with Access running hidden. When you close the form, Access will close.

I don't know how well this will work with a switchboard.

Dave
66 Fox

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Shortcuts in Access 2007 David Z Microsoft Access Forms 0 12th Dec 2007 07:12 PM
No Access to Folder shortcuts Greg Windows Vista Networking 2 7th May 2007 11:31 AM
Shortcuts in Access 2002? =?Utf-8?B?Q09VUlRCVU0=?= Microsoft Access Database Table Design 0 11th Mar 2005 01:33 AM
cannot access ie shortcuts from desktop. nitro7361@yahoo.com Microsoft Windows 2000 0 4th Sep 2004 05:13 PM
Solution: Desktop shortcuts cause "Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item" error news.microsoft.com Windows XP General 2 29th May 2004 02:27 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:34 PM.