I am looking for as much feedback as I can get. I am not looking for anyone to do my work for me, but I do not know where to begin.
I want to design an application that will write and execute a batch file. The application will send an AutoCAD.plt file (a file created by printing from AutoCAD to a file) directly to the printer port LPT1.
The way I see this working is that when the user fires up the application, they would first see a screen that shows the directory of .plt files. The user would then have to select the files that they want to send to the printer (LPT1 if local or a network printer) and click print. They would be able to select one at a time or select multiple files while holding down the shift key. When they click print, Access would have to write and execute a batch file with the following syntax;
copy myfile.plt lpt1
Where myfile.plt is the file that was selected for printing. I am pretty sure that for multiple files the syntax could be;
copy myfile1.plt, myfile2.plt, myfile3.plt lpt1.
Does anyone think this is achievable? What topics do I need to look into to make it happen? What objects, methods and properties are going to be key to make this work.
Thank you in advance for your feedback.
Jonathan
I want to design an application that will write and execute a batch file. The application will send an AutoCAD.plt file (a file created by printing from AutoCAD to a file) directly to the printer port LPT1.
The way I see this working is that when the user fires up the application, they would first see a screen that shows the directory of .plt files. The user would then have to select the files that they want to send to the printer (LPT1 if local or a network printer) and click print. They would be able to select one at a time or select multiple files while holding down the shift key. When they click print, Access would have to write and execute a batch file with the following syntax;
copy myfile.plt lpt1
Where myfile.plt is the file that was selected for printing. I am pretty sure that for multiple files the syntax could be;
copy myfile1.plt, myfile2.plt, myfile3.plt lpt1.
Does anyone think this is achievable? What topics do I need to look into to make it happen? What objects, methods and properties are going to be key to make this work.
Thank you in advance for your feedback.
Jonathan