Hello
I am trying to get WordPad to open a document. I was simply using Process.Start("wordpad.exe", path) but that gave me an error when the path had spaces in it. WordPad would open saying it couldn't find "C:\Program".
I tried doing
path = """" & path & """"
before opening but now wordpad just says "Failed to open document".
I'm in VB.NET
anyone ever have this problem?
Thanks in advance
ereeno


Reply With Quote