
NetCode 2.0
-----------

' ---------------------------------------------------------------
' NetCode Properties
'   Dispatch interface for NetCode Control

' AboutBox
'   Shows the About Box. Available only at design time.
Declare Sub AboutBox ()

' ProgressStep
'   Controls the granularity at which the Progress Event is fired.
'   Values 0-100. No Progress Events are fired if 0.
Dim ProgressStep As int

' FileName
'   While UUEncoding it contains the filename that is written in the
'   uuencoded data. While Decoding -- if not empty -- instructs
'   NetCode where to write the decoded data. It can be either the
'   filename or, if it ends with a slash "\", the directory where
'    the file should be written.
Dim FileName As String

' DecodedData
'   Filename of the decoded data or the decoded data itself.
'   Setting the Action property tells NetCode what is meant.
Dim DecodedData As String

' EncodedData
'   Filename of the encoded data or the encoded data itself.
'   Setting the Action property tells NetCode what is meant.
Dim EncodedData As String

' Overwrite
'   Controls whether created file(s) should overwrite already existing one(s).
Dim Overwrite As Boolean

' IntelliCode
'   Controls whether NetCode should try to interpret several concatenated
'   messages while UUDecoding. No interpretation of MIME headers is currently made.
Dim IntelliCode As Boolean

' Format
'   Shows the type of coding to be used. 0 (UUEncode), 1 (Base64), 2 (Quoted_Printable)
Dim Format As Integer

' MaxFileSize
'   Controls while Decoding whether encoded data should be splitted into
'   several files and gives the maximum allowed size for these files.
Dim MaxFileSize As Long

' Action
'   Controls operation of NetCode. Values: 0 (Idle), 1 DecodeToFile, 2 EncodeToFile,
'   3 DecodeToString, 4 EncodeToString
Dim Action As Integer

' FileCnt
'   Tells -- if not 0 -- the number of encoded files NetCode has read from or written into.
Dim FileCnt As Integer

' ---------------------------------------------------------------
' NetCode Events
'   Event interface for NetCode Control

' Progress
'  Information about the amount of completed work
Declare Sub Progress (ByVal PercentDone As Integer)

---------------------------------------------------------------

devSoft Inc.                                    

For more information, please go to http://www.devlink.com/devsoft/
or send us email at devsoft@devlink.com .

Copyright (c) 1995, 1996 devSoft Inc. - All Rights Reserved.
