Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: fll
  • Order by date
  1. fll

    How to reduce the speed of downloading of files?

    How to reduce the speed of downloading of files when I use a connection FTP with a module of the type TNMFTP? thanks in advance. Laurent. ;-)
  2. fll

    Windows API

    Do you have ask this on tek-tips windows forum Laurent. ;-)
  3. fll

    Add a line in a text file

    Thanks Laurent. ;-)
  4. fll

    Add a line in a text file

    How to add a line in the end of a text file? I tried var tt:text; l:string; begin ... assignfile(tt,'text.txt'); reset(tt); while not eof (tt) do readln (tt,l) ... writeln(tt,'blablabla'); ... Closefile(tt); ... end; Thanks in advance... Laurent. ;-)
  5. fll

    Problem with Tpowersock?

    Dear All ! We are developping an automatic downloading application in Delphi V Professional. Our System is a "Dual" system, with a "Master" Node and a "Slave" Node. It is absolutely necessary to known which Node is master just before the download to be sure to...
  6. fll

    Problems with the "Power Sock" object from the group FastNet

    There is no other solution with the classic components of Delphi 5 ??? Laurent. ;-)
  7. fll

    Problems with the "Power Sock" object from the group FastNet

    Indy is for TCP/IP protocol. FTP is an other protocol!? Laurent. ;-)
  8. fll

    Problems with the "Power Sock" object from the group FastNet

    how can i do this? Laurent. ;-)
  9. fll

    Problems with the "Power Sock" object from the group FastNet

    indy components does'nt exists in Delphi V. The connection, we used, is a FTP connection. Laurent. ;-)
  10. fll

    How to know if there is an Active connection FTP?

    Dear All ! We are developping an automatic downloading application in Delphi V Professional. Our System is a "Dual" system, with a "Master" Node and a "Slave" Node. It is absolutely necessary to known which Node is master just before the download to be sure to...
  11. fll

    Problems with the "Power Sock" object from the group FastNet

    Dear All ! We are developping an automatic downloading application in Delphi V Professional. Our System is a "Dual" system, with a "Master" Node and a "Slave" Node. It is absolutely necessary to known which Node is master just before the download to be sure to...
  12. fll

    How to discover if the connection with a server is active ?

    I have a system which is to connect with a server via an application which turns constantly. This application is to connect either to the server A, or to the B. How then I to know to which one of 2 it is connected via another program written in Delphi? Laurent. ;-)
  13. fll

    convert string to array of char

    try var a:string; b:array [1..24] of char; i:word; ... for i:=1 to 24 do b[i]:=a[i] Laurent. ;-)
  14. fll

    how to make a sound without soundcard?

    beep006 doesn't work. ftp://ftp.microsoft.com/Softlib/MSLFILES/SPEAK.EXE doesn't work too. Laurent ;-)
  15. fll

    how to make a sound without soundcard?

    I tryed to make a sound with the beep procedure but it doesn't make without soundcard. How can i make a sound? laurent ;-)
  16. fll

    How to import a database from one to an other PC?

    I copy the db file but it doesn't work. I don't have Delphi on the other PC. Laurent ;-)
  17. fll

    How to import a database from one to an other PC?

    I have a paradox database on my PC. I want to export this one to an other PC? Laurent ;-)
  18. fll

    Date functions in Delphi

    If one makes(does) the difference between 2 dates, one obtains a result of the real type which represents the day number among that this. If this result is multiplied by 24*60*60, we obtain the difference in second. var date1,date2:tdatetime; sec:float; begin ...
  19. fll

    How to create a table of database in Delphi?

    I want to create a table and to insert data there. How to do? Laurent ;-)

Part and Inventory Search

Back
Top