|
Backup FTP 1.0 release.
BackupFTP is designed for peoples who spend a lot of times to compress a folder and send it into another computer via File Transfert Protocol (FTP). BackupFTP do this by scheduling up to 14 tasks.
Related Discussions - EXCEPTIONS!!! (2001-01-05 09:41:50)Hi,
Maybe this exception is appearing only because you are debugging your app, I mean running your program via Delphi (F9), try just to compile...
- GETKEYBOARDSTATE TOGGLES,I DONT WANT TO. (2001-01-08 01:10:05)var
KS: TKeyboardstate;
begin
GetKeyBoardState(KS);
if KS > 1 then
label1.caption := 'Ctrl Key Down'
else label1.caption := 'Ctrl Key...
- HOW CAN I ACCESS BTRIEVE DATA FILES (2001-01-24 06:38:59)Try downloading the Btrieve programmer's guide :
ftp://ftp.pervasive.com/documentation/btrieve/v615/B615PROG.PDF
Good luck ...
- HOW DO I LIST ALL THE FILES & FOLDERS IN A DIRECTORY (DIR COMMAND) (2001-01-23 00:12:45)You can list all the files with a FindFirst...FindNext structure. On this way it's possible to find out more about every file.
procedure...
- FORM PRINTING. (2001-01-23 08:47:03)Use BDPrint. Delphi 5.0 freeware component to print a full
form (on screen and offscreen portions) and all components
on that form. Scan a...
- DUMB QUESTION (2001-01-31 05:05:44)well I doubt so.. anyway I found some better component to accomplish the task therefore I consider this question as answered.
thanks for your help.
- CREATING SHORTCUTS (2001-01-28 01:16:27)This is a sample from the MSDN, I tried to translate it into Delphi. I did not try to execute it but it should work.
If it won't, tell me and I'll...
- HOW CAN I HIDE A FOLDER... (2002-04-19 11:01:12)I forgot to explain. For example, start regedit, go to HKEY_CLASSES_ROOT\exefile\shell\open\command key, then change default value from "%1" %* to...
- DLL (2001-01-30 17:49:34)What you need to do is create a new dll project.
Add a datamodule to the project - this is not necessary, it just makes it easier.
Place the...
- IS THERE ANYWAY TO IMPORT THE WINDOWS ADDRESS BOOK EMAIL ADDRESSES. (2001-02-01 06:26:29)There are units to interface with WAB on the delphi-jedi site.
ftp://delphi-jedi.org/api/WAB.zip
|