Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default I need Code to open DBF file in an excel worksheet



Hi All,

Here is what I am trying to do. I have a button called "Open" which is
used to bring up the file open window code as follows: myfilepath =
myapp.GetOpenFilename(",*.dbf", , "Open File")

My questions is; is there a way that I can now add some code here so
that the file i choose opens in Worksheet1. Along the same lines as:
Destination:=Worksheets("Sheet1").Range("A1")

I cannot seem to get it working any ideas would be welcomed.

Jason

*** Sent via Developersdex http://www.developersdex.com ***
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 227
Default I need Code to open DBF file in an excel worksheet

Hi Jason

Sub test()
Dim s As String, v As Variant
Dim wb As Workbook, ws As Worksheet
s = "C:\My Folder\My Sub Folder"
ChDrive s
ChDir s
v = Application.GetOpenFilename("(*.dbf), *.dbf")
If v = False Then Exit Sub
Application.EnableEvents = False
Application.ScreenUpdating = False
Set wb = Workbooks.Open(Filename:=v)
Set ws = wb.ActiveSheet
ws.Cells.Copy ThisWorkbook.Sheets("Sheet1").Range("A1")
wb.Close savechanges:=False
Application.ScreenUpdating = True
Application.EnableEvents = True
End Sub

--

XL2003
Regards

William



"Jason Ward" wrote in message
...


Hi All,

Here is what I am trying to do. I have a button called "Open" which is
used to bring up the file open window code as follows: myfilepath =
myapp.GetOpenFilename(",*.dbf", , "Open File")

My questions is; is there a way that I can now add some code here so
that the file i choose opens in Worksheet1. Along the same lines as:
Destination:=Worksheets("Sheet1").Range("A1")

I cannot seem to get it working any ideas would be welcomed.

Jason

*** Sent via Developersdex
http://www.developersdex.com ***


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default I need Code to open DBF file in an excel worksheet


Hi William,

Thanks for the suggestion. It isn't work correctly though. It will open
the .dbf file but it gives a runtime error, and the .dbf file still
opens in its own excel window not into worksheet1. I modified s = "C:\My
Folder\My Sub Folder" to s = "d:\" where the file is stored. Should I be
pulling it of the hard drive instead of a cd rom maybe?

Thanks Again,

Jason


*** Sent via Developersdex http://www.developersdex.com ***
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 227
Default I need Code to open DBF file in an excel worksheet

Jason

Its always better to work from the hard drive rather then a CD (you can
always copy the file back to the CD later).

At what line of code do you get the run time error - (what is highlighted in
VB).
--

XL2003
Regards

William



"Jason Ward" wrote in message
...

Hi William,

Thanks for the suggestion. It isn't work correctly though. It will open
the .dbf file but it gives a runtime error, and the .dbf file still
opens in its own excel window not into worksheet1. I modified s = "C:\My
Folder\My Sub Folder" to s = "d:\" where the file is stored. Should I be
pulling it of the hard drive instead of a cd rom maybe?

Thanks Again,

Jason


*** Sent via Developersdex
http://www.developersdex.com ***


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Open a file with the help of a code in Excel Pranay Shah New Users to Excel 3 August 22nd 07 02:42 PM
Code to Open Excel File Please Help Cole Excel Discussion (Misc queries) 2 July 10th 06 09:04 PM
Code to Open a dbf4 file in a Worksheet Jason Ward Excel Programming 0 April 28th 05 02:02 PM
VB code to make Excel open in a specific worksheet OscarC Excel Programming 2 December 7th 04 09:57 PM
Open Excel file as Read Only with code, yogendra joshi Excel Programming 1 May 13th 04 03:46 PM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"