i want to pass parameters to winword to read it in my vsto addin by using Environment.GetCommandLineArgs()

if a parameter-value contains a space im not able to escape the strings.

this is working: winword.exe /myVar1:C:\folder\whatever1.doc /myVar2:C:\folder\somethingelese.txt C:\example.doc

this is not working: winword.exe /myVar1:"C:\folder with space\whatever1.doc" /myVar2:"C:\folder with space 2\somethingelese.txt" C:\example.doc

link|improve this question

57% accept rate
feedback

1 Answer

Try with the following command :

winword.exe "/myVar1:C:\folder with space\whatever1.doc" "/myVar2:C:\folder with space 2\somethingelese.txt" C:\example.doc

If it still doesn't work, send us the content of the array returned by GetCommandLineArgs.

link|improve this answer
doesnt work :( the 2nd parameter is not set?! – wuhi Sep 6 '11 at 14:59
What is the array returned by GetCommandLineArgs ? The bug may be in your code (maybe you are not reading the values properly). – Guillaume Sep 6 '11 at 15:02
here is the content - args {string[2]} string[] [0] "winword.exe" string [1] "/myVar1:C:\\folder with space\\whatever1.doc" string – wuhi Sep 6 '11 at 15:02
Is winword.exe already runing when you execute the command ? – Guillaume Sep 6 '11 at 15:08
no. its a new instance. im sure its just a syntax problem ... without the quotes and spaces everything is ok :( – wuhi Sep 6 '11 at 15:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.