-
-
General
wodFtpDLX component has two versions (both included in the
package):
wodFtpDLXCom is a COM object (wodFtpDLX.dll), designed to
be initialized dynamically from your code, and declared
from within your code. It does not have user interface, it
is windowless. Usually, you will initialize it with
- Dim WithEvents Ftp1 as wodFtpDLXCom
and wodFtpDLX as ActiveX control (wodFtpDLX.ocx) -
designed to be put on application's form using
drag&drop from control toolbox. Once you put it on the
form, no special code is required to initialize it, since
your environment (usually VB) will handle it. It has
it's own explorer-alike user interface.
COM object licensing is not directly supported by any
container. Unlike ActiveX controls which are licensed the
moment you put them on the form (if you have licensed
version of wodFtpDLX, of course), you need one more line to
put in your code to license wodFtpDLX correctly:
-
- Ftp1.LicenseKey =
"put.your.key.here"
-
| Filename |
wodFtpDLX.DLL (wodFtpDLX64.DLL
for x64) |
| Class
name |
WeOnlyDo.wodFtpDLXCom.1 |
| Class ID |
{FE5B9A96-B1A7-4E8B-9713-115F51088981} |
| Events class
ID |
{0x9BB21FE3,0x65D5,0x4E00,{0x8F,0xB1,0xE0,0x83,0x09,0x15,0x11,0x17}} |
|
Compatibility |
VB 5.0 and above, VFP
5.0 and above |
| Built
with |
Microsoft Visual Studio 2008
C++, OpenSSL |
| Required
DLLs |
None required,
wodCertificate.dll optional, only if certificates are
used. |
-
| Filename |
wodFtpDLX.OCX (wodFtpDLX64.DLL
for x64) |
| Class
name |
WeOnlyDo.wodFtpDLX.1 |
| Class ID |
{E26D1AC4-B4E5-4CD6-8381-55E053B0A45E} |
| Events class
ID |
{0xDE3C4A9B,0xB6CA,0x46E8,{0xB7,0x13,0xE2,0x65,0x9A,0xFC,0x77,0xAD}} |
|
Compatibility |
VB 5.0 and above, VFP
5.0 and above |
| Built
with |
Microsoft Visual Studio 2008
C++, OpenSSL |
| Required
DLLs |
None required,
wodCertificate.dll optional, only if certificates are
used. |
-
|
IwodFtpNotify |
{F1D62E9B-74B2-4278-8AD4-F2BBDBAB7E22} |
| IDirItem |
{2A4D62C3-1902-4702-8759-00107A596E67} |
| IDirItems |
{89E6BC68-FB75-4144-A710-F2E158D2CE04} |
-
| Help
filename |
wodFtpDLX.CHM |
Distribution note
When you develop and distribute an application that uses
this component:
1. Choose between COM object (wodFtpDLX.DLL/wodFtpDLX64.DLL) and the
ActiveX control (wodFtpDLX.OCX/wodFtpDLX64.DLL) to include into the
installation package. Both versions are independent on each
other.
2. You should include wodCertificate.DLL/wodCertificate64.DLL for Certificate
management - if it is needed in your application. wodFtpDLX
does not depend on it - only uses it for client
authentication with the certificate or private key.
3. Above binaries can be included royalty-free in your
application.
4. Use RegSvr32.EXE (or any other installer package
creator) to register both the OCX and the DLL. Usually,
installer software will do this for you
5. Install the component file(s) into the user's
Windows SYSTEM32 folder. The component file(s) has/have
version information built into it. So, during installation,
you should ensure that you are not overwriting a newer
version.
Using licensed version
To use retail (licensed) version in your code, put your
license key into LicenseKey property, immediately after
initializing the component. For ActiveX control, you cannot
do this (there is no LicenseKey property) because your
license key will be read internally by wodFtpDLX.
|