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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can i Open a Fox Pro file with Access 1

Status
Not open for further replies.

Hokis

Technical User
May 21, 2007
51
US
Hi,
I have a program in Access that i want to put a command button in the form to Open a window with .dbf files showing & let me get it. Can i do that or it won't let me.
And if Yes I can do it, would you tell me how????
Thank you.
Hokis
 
ok thank you, but now i have a button which does as follows
Dim msg as String
Application.FileDialog(msoFileDialogFilePicker).Show
msg= Application.FileDialog(msofileDialogFilePicker).SelectItem (1)

wich is working just fine, but when I'm grabing the file I want it to show me the file name & extension in a specifix Text box that i have, how can i do that?
thank you
H
 
Code:
Application.FileDialog(msoFileDialogFilePicker).Show
me.textboxname= Application.FileDialog(msofileDialogFilePicker).SelectItem (1)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top