Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

predefined forms

Status
Not open for further replies.

RichardDickerson

Programmer
Joined
Nov 4, 2003
Messages
3
Location
CA
Hi,

I am new to VBA and access and was wondering if there is a predefined set of forms that one can open? More specifically the form that opens when you want to open a file in any windows application. If so how would I go about using it?

Thanks in advance,
Richard
 
Richard,

Thee are a BUNCH of Built-In Dialogs. Check Help and you'll find a list with various arguments.
Code:
x = Application.Dialogs(xlDialogOpen).Show
If Not x = False Then
'...
End If



Skip,
Skip@TheOfficeExperts.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top