At 02:46 3/29/2001, Joe wrote:

>open "C:\Programme\Common Files\Microsoft Shared\DAO\DAO350.DLL" with
>"C:\WINNT\system32\regsvr32.exe"
>
>the Problem is that regsvr32.exe shows the ERROR
>
>LoadLibrary("c:\Programme\Gemeinsame"} faild - Das Modul wurde nicht
>gefunden
>like
>LoadLibrary("c:\Programme\Common"} faild - Can't find Modul

As you know, the spaces in the path are causing the problem. It _might_ 
work if you enclose the file in quotes.

open QUOTE &"C:\Programme\Common Files\Microsoft Shared\DAO\DAO350.DLL" 
&QUOTE with . . .

Best bet is to use the Buddy API Xtra to get the DOS short filename 
equivalent of that file.

theFile = baShortFileName("C:\Programme\Common Files\Microsoft 
Shared\DAO\DAO350.DLL")
open theFile with ...

Or use Buddy API's baRunProgram()

It's free for up to 2 functions and is available at http://www.mods.com.au


--
Mark A. Boyd
Keep-On-Learnin' :)


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to