I've got this path;
path = Cash Report\\30-03-2012 01-11-07 Cash Flow Report.Docx
When I use the below code to open the file it trys to open each word. SO it'll try open cash.doc, then Report.doc etc etc;
//Open the newly created file
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "WINWORD.EXE";
startInfo.Arguments = path;
Process.Start(startInfo);
Is there a way to ignore the spaces?!