Need to pass the filename from the file selected using "Dialog FileBrowse" to a command line .exe argument
Anyone know this can be done
Here is my current script
result = Dialog.FileBrowse(true, "Load File", _DesktopFolder, "Microsoft Word Document (*.doc)|*.doc|All Files (*.*)|*.*|", "", "", false, true);
I need the filename in result[1] to be added to a command line with File.Run but I think the table needs changing to a string for it to work?
Anyone know this can be done
Here is my current script
result = Dialog.FileBrowse(true, "Load File", _DesktopFolder, "Microsoft Word Document (*.doc)|*.doc|All Files (*.*)|*.*|", "", "", false, true);
I need the filename in result[1] to be added to a command line with File.Run but I think the table needs changing to a string for it to work?
Comment