From: Jan Svitok Date: 2006-11-08T05:03:53+09:00 Subject: Re: Win32ole & Adobe Acrobat Reader On 11/6/06, Jeff wrote: > filename = "myfile.pdf" > > `start #{filename}` FYI: be careful when using quotes with start: `start "myfile.pdf"` won't work because when first parameter is quoted it is the title of the window. so this works: `start "" "myfile.pdf"` ...sometimes I wonder what did they smoke when they created this...