Property sheet not working

BETTER repair, Stellar Phoenix Access Repair.
 
How is £70 better than a bit of work you can do yourself for free?
 
thanks static for your help
for the last little bit - how to I read the filename from the directory?

do I need some sort of loop to read all the form names in the directory??
 
Yes. Use the Dir() functionin a loop

Code:
Const folder As String = "c:\...\*.txt"
dim FileName as string
FileName = Dir(folder)
Do Until FileName = ""
    select...
    ...
    End Select
    FileName = Dir
Loop
 
many thanks - forms working and imported now working on query and reports etcx
 

Users who are viewing this thread

Back
Top Bottom