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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ZPArchive

Status
Not open for further replies.

ratzp

Programmer
Dec 30, 2005
49
IN
Private Declare Function ZpArchive Lib "vbzip10.dll" (ByVal argc As Long, ByVal
funame As String, ByRef argv As ZIPnames) As Long


Returns long
0 if successfully Zipped
and what are the other possibilites and what the long signifies

 
Long is the returned datatype - it's a 32 bit integer type. It's normal for a function to return a success code of 0 and any other number indicates failure. Each author will use their own choice of error codes, so you will need to go to the documentation (or the author) for the specific codes returned by this dll

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first.
'If we're supposed to work in Hex, why have we only got A fingers?'
Drive a Steam Roller
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top