$ $ Sugar Daddy $ New member Local time Today, 17:54 Joined Oct 31, 2006 Messages 4 Nov 14, 2006 #1 This is probably very simple and I feel I should know how, but I'm drawing a blank. How can I launch an external database when I click on a button? Thanks
This is probably very simple and I feel I should know how, but I'm drawing a blank. How can I launch an external database when I click on a button? Thanks
boblarson Smeghead Local time Today, 14:54 Joined Jan 12, 2001 Messages 32,053 Nov 14, 2006 #2 One way is to use this (changing the file path as necessary): Code: Application.OpenCurrentDatabase ("C:\Temp\YourFilePath.mdb") Another way is to use this with a hyperlink: Code: Application.FollowHyperlink "file://C:\Temp\YourFileName.mdb"
One way is to use this (changing the file path as necessary): Code: Application.OpenCurrentDatabase ("C:\Temp\YourFilePath.mdb") Another way is to use this with a hyperlink: Code: Application.FollowHyperlink "file://C:\Temp\YourFileName.mdb"