| View previous topic :: View next topic |
| Author |
Message |
pj Newbie
Joined: 26 Apr 2002 Posts: 11
|
Posted: Fri Jun 20, 2003 3:39 pm Post subject: External dll problem |
|
|
Would anyone be able to assist in establishing whether VDS 5
can work with a specific dll? I am prepared to pay anyone who can help me get this working.
Below is some of the information I have regarding the dll which is for decrypting a series of text files. It is provided by the supplier of the files, but the documentation is sparse and my knowledge of programming beyond VDS is minimal.
Thanks PJ
Object name
~~~~~~~~~~~
Attribute VB_Name = "encoded_file"
Properties
~~~~~~~~~~
Public file_path As String
Public file_name As String
Public enc_extension As String
Public dec_extension As String
Public serial_number As String
Public Password As String
Method
~~~~~~
Public Sub decode()
Output
~~~~~~
All output is sent to the file created by the expression
file_path & "\" & file_name & "." & dec_extension
This will contain the decoded file, or a readable error message. |
|
| Back to top |
|
 |
CodeScript Moderator Team

Joined: 08 Jun 2003 Posts: 1060 Location: India
|
Posted: Mon Jul 21, 2003 1:27 am Post subject: |
|
|
I think it can be done if U have atleast a working VB example with source even if there is no documentation and the routine itself it not very complicated involving multiple structures and also that the dll doesnot check if it is called by VB as a security measure.
I assume that your dll is a true 32 bit windows dll and not an active x dll or something.
BTW VDS 5 has built in encrypt / decrypt options I think.
If the dll. _________________ Regards
- CodeScript
Give your application a professional look with the VDSGUI Extension |
|
| Back to top |
|
 |
|