Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calwin32 file not found after full install? What is wrong with this?

Status
Not open for further replies.

bigracefan

Programmer
Apr 2, 2002
304
US
I'm declaring the following on a child form. It works great on my win2000 delevopment machine but I get a file not found for calwin32.dll when it's run on the NT client machine.


Private Declare Function NWCallsInit Lib "calwin32" _
(reserved1 As Byte, reserved2 As Byte) As Long

Private Declare Function NWCCOpenConnByName Lib "clxwin32" _
(ByVal startConnHandle As Long, ByVal name As String, _
ByVal nameFormat As Long, ByVal openState As Long, _
ByVal tranType As Long, pConnHandle As Long) As Long

Private Declare Function NWGetFileServerDateAndTime Lib "calwin32" _
(ByVal conn As Long, dateTimeBuffer As Byte) As Long

Private Declare Function NWCCCloseConn Lib "clxwin32" _
(ByVal connHandle As Long) As Long

 
I've answered my own question. It has to do with the Novel client version.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top