L
Linc
Does any one here know how to print files from a folder in VBA?
I have a button on a form (in Access) that when clicked it goes out and
finds all the
files in a particular folder that pertain to that form's id. That's no
problem. But...
Once it's found all the files, I want to print each file. I can write the
loop, but I can't find the right command word to make them print. Help!
Dim i As Integer
For i = 1 To .FoundFiles.count
'Print each file
'Print .FoundFiles(i) <---- What is this line supposed to be?????
Next i
I have a button on a form (in Access) that when clicked it goes out and
finds all the
files in a particular folder that pertain to that form's id. That's no
problem. But...
Once it's found all the files, I want to print each file. I can write the
loop, but I can't find the right command word to make them print. Help!
Dim i As Integer
For i = 1 To .FoundFiles.count
'Print each file
'Print .FoundFiles(i) <---- What is this line supposed to be?????
Next i