Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Command Line 1

Status
Not open for further replies.

Curtis360it

IS-IT--Management
Nov 7, 2005
88
US
Is this how I would initiate the following from VBA?

Shell(copy /b filename \\servername\printername)
 
Curtis360it,
you can use the shell command or you can use the filesystemobject:
Code:
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile yourfile, "\\yourserver\yourfolder" & yourfile, True
the true at the end is to overwrite if it exists.
regards,
longhair
 
I couldn't get my code to work. It says "File not found".

I am just trying to print the .prn file.

This doesn't work:
Shell ("COPY /B C:\Escript\output.prn \\Sheronc\HPDeskje")

But if I put the following in cmd then it works:
COPY /B C:\Escript\output.prn \\Sheronc\HPDeskje
 
Curtis360it,
try it with the filesystemobject.
for the shell command - i usually put the actual dos command into a variable then print then call the shell.
example:
Code:
x = "COPY /B C:\Escript\output.prn \\Sheronc\HPDeskje"
    Debug.Print x
    Call Shell(x, vbHide)
regards,
longhair
 
Craziest freakin' thing- It still says "File not Found"...

Any ideas?

What's the command to just Print a .txt file in VBA?
 
Have you tried this ?
Shell ("CMD /C COPY /B C:\Escript\output.prn \\Sheronc\HPDeskje")

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top