I checked for the path and it is the correct one.
I also tried to run an small application that will register the conduit


#include <Windows.h>
#include <CondMgre.h>
#include <stdio.h>


int main(int argc, char **argv)
{
        const char *kCreator = "SCAN";
        int err;
        
        err = CmInstallCreator(kCreator, CONDUIT_APPLICATION);
        if (err == 0)
                err = CmSetCreatorName(kCreator,
                        "C:\\Program
Files\\DevStudio\\MyProjects\\ScanManConduit\\Debug\\ScanManConduit.dll");
        if (err == 0)
                err = CmSetCreatorDirectory(kCreator, "ScanMan");
        if (err == 0)
                err = CmSetCreatorFile(kCreator, "ScanMan");
        if (err == 0)
                err = CmSetCreatorPriority(kCreator, 2);
        if (err == 0)
                printf("Registration succeeded\n");
        else
                printf("Registration failed %d\n", err);

        return err;
} 

This fails returning and error = -1005.

Any Ideas??????????

Thanks


At 10:08 AM 5/17/99 -0700, you wrote:
>Hi,
>    Check the path of the DLL in CondCfg. If the path is wrong or if it
does not 
>find the DLL then it will not show in the HotSync Manager. I had faced the
same 
>problem.
>    
>-Sujata
>    
>> Date: Mon, 17 May 1999 09:45:55 -0500
>> From: Silvia Brunet <[EMAIL PROTECTED]>
>> Subject: Conduit
>> To: [EMAIL PROTECTED]
>> Mime-Version: 1.0
>> X-LIST-URL: http://ls.palm.com
>> 
>> I am registering my conduit with CondCfg, and for some reazon it is not
>> showing on the
>> list of conduits in the HotSync Manger.
>> 
>> Any ideas.
>> 
>> Thanks =)
>> 
>> Silvia Brunet
>> LightHouse Technologies
>> 
>
>
>

Reply via email to