Hi, I have just installed 2004 on my dev pc, but am unable to connect to the company with a -8003 error. I can connect to our live server however with the exact same code (with the correct server credentials).
The install is currently 2004 with sp1, I am waiting on a dev license key so that I am able to go to sp4...
Anyone seen the -8003 error before? I am using standard code to connect (its in C#):
SAPbobsCOM.Company cmpny = new SAPbobsCOM.Company();
cmpny.Server = "(local)";
cmpny.CompanyDB = "SBODemo_UK";
cmpny.UserName = "manager";
cmpny.Password = "manager";
cmpny.language = SAPbobsCOM.BoSuppLangs.ln_English;
cmpny.UseTrusted = true;
int connectResult = cmpny.Connect();
Add a comment