Hi all,
I have a function that creates a file and saves it.
The file is FDF format used to import data to a PDF form.
Currently the file is created, notepad opens to view the file, and then I can manually exit the FDF file. Then I must go to the saved FDF file and double click it to open and execute.
What I want to do is create the file, and have the file execute.
My question is what command(s) do I use to do this within my function? Any ideas?
I have a function that creates a file and saves it.
The file is FDF format used to import data to a PDF form.
Currently the file is created, notepad opens to view the file, and then I can manually exit the FDF file. Then I must go to the saved FDF file and double click it to open and execute.
What I want to do is create the file, and have the file execute.
My question is what command(s) do I use to do this within my function? Any ideas?
Code:
. . .
. . .
Close #aFileNum
Shell "Notepad.exe \\bigguy\users\dom_f\Access\Forms\Query.fdf", vbMaximizedFocus
. . .
. . .