Jump to content

Recommended Posts

Posted

Hi,

I'n new to this and am trying to run a program with a working dir

Run ("Ctrl.exe", "\\controlES\Process Repository")

However beacuse the folder Process Repository has a space it won't read it in all it reads is process, how do I input this correctly I've tried ""\\controlES\Process Repository"" but to no avail.

Posted

Hi Imilesuk,

please try this: "'\\server\working path'".

Single-quotes in between double-quotes.

Regards,

Hannes

Regards,Hannes[spoiler]If you can't convince them, confuse them![/spoiler]
Posted (edited)

This does'nt seem to work;

Run ("\\ultra02\controlES\Client\Ctrl.exe " ,"'\\ultra02\controlES\Process Repository'")

at all

I think the problem is that Run expects the short names, so you could either try this

Run (FileGetShertName("\\ultra02\controlES\Client\Ctrl.exe ") ,FileGetShortName("'\\ultra02\controlES\Process Repository'"))

or use ShellExecute instead.

ShellExecute ("\\ultra02\controlES\Client\Ctrl.exe " , "", "'\\ultra02\controlES\Process Repository'")
Edited by martin
Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...