Gettin error SBL-DAT-60320 when connecting via COM
Hi, we have an application that connects with siebel via Com, it was working fine with version IP15, now we are upgrading to version IP17 patch 20.12, and we are getting error in connection
with this code, we are getting error "Cannot load resource DLL"
Dim errCode As Integer
Dim ErrText, sConnStr1, lstr, lng As String
Dim SiebelApplication = CreateObject("SiebelDataControl.SiebelDataControl.1")
Dim retval As Boolean
lstr = "host='siebel.tcpip.none.none://siebel20dev:2321/SiebelEnt/SSEObjMgr_esn' lang='ENU'"
retval = SiebelApplication.Login(lstr, "INTERFASECRM", "XXXXXXXXX")
errCode = SiebelApplication.GetLastErrCode()
If errCode <> 0 Then
Console.WriteLine((CStr(errCode) & " - ") + SiebelApplication.GetLastErrText(), MsgBoxStyle.Critical)
MsgBox((CStr(errCode) & " - ") + SiebelApplication.GetLastErrText(), MsgBoxStyle.Critical)