473,388 Members | 1,256 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,388 software developers and data experts.

how do I create a folder/file browser in Access 2003???

Hi guys

Thank you for all your previous answers. My new question is as follows: how
do I create a folder/file browser in access 2003. That is, I would like the
user to locate several files (the back-end, logo, etc...) and save the path.

Cheers

Nic.
---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004
Nov 12 '05 #1
6 22416
On Tue, 18 May 2004 16:42:34 +1200, "WindAndWaves" <ac****@ngaru.com>
wrote:

Same as in previous versions:
http://www.mvps.org/access/api/api0002.htm

-Tom.

Hi guys

Thank you for all your previous answers. My new question is as follows: how
do I create a folder/file browser in access 2003. That is, I would like the
user to locate several files (the back-end, logo, etc...) and save the path.

Cheers

Nic.
---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004


Nov 12 '05 #2
Thank you perfect. Really appreciate it. Hopefully I can help someone else
next time.
"Tom van Stiphout" <to*****@no.spam.cox.net> wrote in message
news:kg********************************@4ax.com...
On Tue, 18 May 2004 16:42:34 +1200, "WindAndWaves" <ac****@ngaru.com>
wrote:

Same as in previous versions:
http://www.mvps.org/access/api/api0002.htm

-Tom.

Hi guys

Thank you for all your previous answers. My new question is as follows: howdo I create a folder/file browser in access 2003. That is, I would like theuser to locate several files (the back-end, logo, etc...) and save the path.
Cheers

Nic.
---
Please immediately let us know (by phone or return email) if (a) this emailcontains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004

---
Please immediately let us know (by phone or return email) if (a) this email
contains a virus
(b) you are not the intended recipient
(c) you consider this email to be spam.
We have done our utmost to make sure that
none of the above are applicable. THANK YOU
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.687 / Virus Database: 448 - Release Date: 16/05/2004
Nov 12 '05 #3
WindAndWaves wrote:
Thank you perfect. Really appreciate it. Hopefully I can help someone else
next time.


It is AMAZING to me that MS has never provided a File/Open in any of its
versions in Access. I am sure many man years have been consumed on this
question and in the installation of it if we multiply the number of
developers that have spent time on this single question. I do believe
it exists in VB as a standard function via CommonDialog. If it exists
in a "developer" product like VB and does not exist in an "end-user"
product like Access I should think the oversight could be corrected.
Heck, even FoxPro for DOS has a FileOpen with the GetFile() function.
Nov 12 '05 #4
>
It is AMAZING to me that MS has never provided a File/Open in any of its
versions in Access. I am sure many man years have been consumed on this
question and in the installation of it if we multiply the number of
developers that have spent time on this single question. I do believe
it exists in VB as a standard function via CommonDialog. If it exists
in a "developer" product like VB and does not exist in an "end-user"
product like Access I should think the oversight could be corrected.
Heck, even FoxPro for DOS has a FileOpen with the GetFile() function.


From the access help files:

FileDialog Property

Returns a FileDialog object which represents a single instance of a file
dialog box.

expression.FileDialog(dialogType)
dialogType Required MsoFileDialogType. The type of file dialog box.

MsoFileDialog Type can be one of these MsoFileDialogType constants.
msoFileDialogFilePicker
msoFileDialogFolderPicker
msoFileDialogOpen
msoFileDialogSaveAs

Example

This example displays the Save As dialog box.

Dim dlgSaveAs As FileDialog

Set dlgSaveAs = Application.FileDialog( _
FileDialogType:=msoFileDialogSaveAs)

dlgSaveAs.Show

This example displays the Open dialog box and allows a user to select
multiple files to open.

Dim dlgOpen As FileDialog

Set dlgOpen = Application.FileDialog( _
FileDialogType:=msoFileDialogOpen)

With dlgOpen
.AllowMultiSelect = True
.Show
End With

The above text is right from the a2003 help files. As far as I know..that
last 2 versions of ms-access has this feature...

--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pl*****************@msn.com
http://www.attcanada.net/~kallal.msn
Nov 12 '05 #5
Albert D. Kallal wrote:
It is AMAZING to me that MS has never provided a File/Open in any of its
versions in Access. I am sure many man years have been consumed on this
question and in the installation of it if we multiply the number of
developers that have spent time on this single question. I do believe
it exists in VB as a standard function via CommonDialog. If it exists
in a "developer" product like VB and does not exist in an "end-user"
product like Access I should think the oversight could be corrected.
Heck, even FoxPro for DOS has a FileOpen with the GetFile() function.
From the access help files:


Thanks Albert. I haven't installed my A2003 yet and I have removed by
A2K. Glad to see they incorporated it.

FileDialog Property

Returns a FileDialog object which represents a single instance of a file
dialog box.

expression.FileDialog(dialogType)
dialogType Required MsoFileDialogType. The type of file dialog box.

MsoFileDialog Type can be one of these MsoFileDialogType constants.
msoFileDialogFilePicker
msoFileDialogFolderPicker
msoFileDialogOpen
msoFileDialogSaveAs

Example

This example displays the Save As dialog box.

Dim dlgSaveAs As FileDialog

Set dlgSaveAs = Application.FileDialog( _
FileDialogType:=msoFileDialogSaveAs)

dlgSaveAs.Show

This example displays the Open dialog box and allows a user to select
multiple files to open.

Dim dlgOpen As FileDialog

Set dlgOpen = Application.FileDialog( _
FileDialogType:=msoFileDialogOpen)

With dlgOpen
.AllowMultiSelect = True
.Show
End With

The above text is right from the a2003 help files. As far as I know..that
last 2 versions of ms-access has this feature...


Nov 12 '05 #6
"Albert D. Kallal" <Pl*******************@msn.com> wrote in message
news:Ohrqc.494272$Pk3.224589@pd7tw1no...

Example

This example displays the Save As dialog box.

Dim dlgSaveAs As FileDialog

Set dlgSaveAs = Application.FileDialog( _
FileDialogType:=msoFileDialogSaveAs)

dlgSaveAs.Show


Doesn't work in Access 2002
http://support.microsoft.com/?id=282335

--
Joan Wild
Microsoft Access MVP
Nov 12 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Wayne Aprato | last post by:
I have a client who is running several Access 97 databases that I have written for them. They are about to upgrade to Access 2003. Is the default file format of Access 2003 still Access 2000 the...
4
by: pw | last post by:
Hi, I converted (actually, imported) my Access 97 application into Access 2003. I selected "Create MDE" and it prompts me for the mde file to create. However, what A2003 really does is create...
10
by: Daven Thrice | last post by:
If I create an mdb in Access 2003, in 2003 format, and go to a computer that has Access 2002 on it, will I be able to open and edit all of the objects? Thanks, dt
5
by: kathyk | last post by:
Hi All, We are moving to Access 2003 in a month or so, so i started testing my data base files in v2003. When The mdb open I get 3 warning messagase about blocking unsafe expressions. Security...
3
by: KEMDignam | last post by:
I have upgraded my computer to Access 2003, but I have not converted my databases since all of my clients still use Access 2000. I need to create a new MDB, but Access is telling me that I will...
0
by: Karl Irvin | last post by:
I have a QuickBooks xsd file (XML definitions) that I'm trying to import. On import Acess suffers a fatal error and has to close. I updated Access/Office and it still does this. Any thoughts on...
5
by: 205210864 | last post by:
how do i create a file by a click of a button on an access form. the file i need to create is a text file with a heading and column names.
4
by: ramaswamynanda | last post by:
Hello All, I created an application using Ms Access 2000. My client has Access 2003. When I shipped him the code, this problem occured. He took the following actions - 1. double click on mdb...
2
by: laurasesma18 | last post by:
Hi, I have a program in Access 2003 and written in Visual Basic. At some point I would like to open an Excel file automatly from Access 2003. So that the user can do some changes in this file...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.