I need to use SFTP in an old VB6 environment.
I do not want to use an active-x, because I would need to install it
on every client.
Is there a dll to call with API (Declare...)
or a native windows-API ?
Please help
What is this DLL, I can't find any info on google of microsoft
searches?
>A search of my system finds a DXTMSFTP.DLL in windows\system32
>
>What is this DLL, I can't find any info on google of microsoft
>searches?
>
I can't see the link between your question and the OPs post
or VB for that matter.
However a google search, the very first entry tells me it's
a directX file.
--
Jan Hyde (VB MVP)
so I searched system for SFTP which found 1 item which was
DXTMSFTP.DLL
I then wanted to check what it was but found nothing of any use, I did
asume myself that it was a directX file due to the DX at the begining
but my search returned nothing.
I have since realised that I have recently set my defult google to
Google.co.uk which does infact return nothing.
Have a nice day :o)
& God Bless
For DLL's try http://www.mdgx.com/dx.htm
I presume the OP was referring to Secure File Transfer Protocol,
essentially running FTP in a secure SSH session. SSH isn't something
I've messed around with much though.
If you have a look at the dll properties you'll see DXTMSFT.DLL for
instance is 'DirectX Media -- Image DirectX Transforms' and appears to
have been installed for use by Internet Explorer. I don't have
DXTMSFTP.DLL on my system.
--
Alfie [UK]
<http://www.delphia.co.uk/>
The goal of Computer Science is to build something that will last at least until we've finished building it.
Hi,
maybe I did not write my question exact enough:
I need to transfer files unsing sftp (secure ftp, ssh, ...)
optional I could use SCP-functionality too,
in a vb6 application.
Now I use Windows-API to have ftp-functionality,
but I have to switch to sftp soon.
As my application should not need active-x, or anything else, that
has to be installed, I would prefer pure API-calls or calls
to a dll using "declare".
First I thought, this is no problem, and can easily be
done, but I cannot find any API or any DLL, that
- does not need any installation (registration, ...)
- can be distributed just with the exe
- can be called using declare
- sould be free of charge (or a license-model, that does not rstict the
amount of installations)
Any further Idea?
Alex
The only free Windows DLL I know of that will allow you to use Secure
FTP is http://curl.haxx.se/libcurl/
I suggest you download the Visual Basic and .NET bindings and study the
samples and documentation.