Hi all,
Im getting the below error
---------------------------
System Error
---------------------------
Error Number 14.
Error text = Error opening DLL library zlibwapi.dll for external function at line 18 in function of_zipopen of object n_zlib..
Window/Menu/Object = n_zlib.
Error Object/Control = n_zlib.
Script = of_zipopen.
Line in Script = 18.
---------------------------
OK
---------------------------
I have tried to replace zlibwapi.dll and regenerated the n_zlib also, still no luck.
Need help in urgent bases.
Issue is with compiled app only and it compiled as 32-bit app
Local external function :
Function ulong zipOpen ( &
Ref string filename, &
int append &
) Library "zlibwapi.dll" Alias For "zipOpen;Ansi"
ULong lul_zipFile
// of_zipopen function
lul_zipFile = zipOpen(as_filename, 0)
If lul_zipFile < 0 Then
MessageBox("ZLib Error in of_zipOpen", &
"The zip file could not be opened!", StopSign!)
End If
Return lul_zipFile