Roy wrote:
On Sep 10, 4:49 pm, Salad <o...@vinegar.comwrote:
>>Roy wrote:
>>>Hi All,
I have an A2003 application .Recently we had a request to import data
from IDL files and create some reports.
Since I have no idea to do that using Access,I used Excel to import
data and then imported these excel sheets into Access tables.
>>>Is there a way to directly import IDL files into Access using any
method or VBA?
How do you import it into Excel?
>>>Thanks,
Roy- Hide quoted text -
- Show quoted text -
I do this manually.Using the Import Data functionality on the Excel
Menu.
Can you use Open statement in Access to do the import?
Ex:
Type Record ' Define user-defined type.
ID As Integer
Name As String * 20
End Type
Dim MyRecord As Record ' Declare variable.
Open "TESTFILE" For Random As #1 Len = Len(MyRecord)
' Close before reopening in another mode.
Close #1
See LineInput, Get, Write, etc in help.