MI-L Odd Question: Access, VBA and MI

2002-06-26 Thread Ben Crane
Hi list, This is not a question I really want to ask, but it's been bothering me. stAppName = "C:\Program Files\MapInfo\Professional\Mapinfow.exe " + "P:\Shared Information\LSDDatabase\LSD\LSD.MBX" Call Shell(stAppName, 1) My access program says it can't find file "Shared"! I know it's having

RE: MI-L Odd Question: Access, VBA and MI

2002-06-26 Thread HANNA MICHAEL (TOR1MMH)
is causing the problem. Michael Hanna Industrial Engineering United Parcel Service Canada Ltd. (905) 660-8688 -Original Message- From: Ben Crane [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 10:30 AM To: [EMAIL PROTECTED] Subject: MI-L Odd Question: Access, VBA and MI Hi l

AW: MI-L Odd Question: Access, VBA and MI

2002-06-26 Thread Christof Kaiser
Ben, I reckon you have to protect the string with the space space somehow. maybe with \" ?? stAppName = "C:\Program Files\MapInfo\Professional\Mapinfow.exe " + " \"P:\Shared Information\LSDDatabase\LSD\LSD.MBX\" " or instead, try to escape the space somehow. I dont know how to escape it exact