How to Send F5 to TC from my program (see inside)
Moderators: Hacker, petermad, Stefan2, white
MVV,
in the same site, I found some little differences, but the := can always replace the = assignment. With slight syntax differences:
CopyOfVar := Var ; Unlike its counterpart in the previous
section, percent signs are not used with the := operator.
Preferred also because it (:=) supports an expression syntax nearly identical to that in many other languages.
in the same site, I found some little differences, but the := can always replace the = assignment. With slight syntax differences:
CopyOfVar = %Var% ; With the = operator, percent signs are required to retrieve a variable's contents.My comment:
in AHK %var% means the value of the var.
Without % it is a litteral string.
CopyOfVar := Var ; Unlike its counterpart in the previous
section, percent signs are not used with the := operator.
Preferred also because it (:=) supports an expression syntax nearly identical to that in many other languages.
eitang,

The adding works like this:
FileDateList = %FileDateList%%TimeStamp%
NewContent = OldContent plus NewValue
Updated list of all the dates = Current list of all the dates plus the date of the newly added file
HTH
Roman
Honestly, I don't remember anymore, it was a very long time ago.Which version of Delphi was your las one ?

Actually, it's the list of the file dates, no reason to care about the file names.The line where you fill up the list:is totally opaque to me... I presume that FileDateList is the name of the list (containing files*.* in the currently treated folder).Code: Select all
FileDateList = %FileDateList%%TimeStamp%`n
I don't understant how the = sign adds items ???
The adding works like this:
Code: Select all
FileDateList = %FileDateList% %TimeStamp% `n
NewContent = OldContent plus NewValue plus `n
Updated list of all the dates = Current list of all the dates plus the date of the newly added file plus `n
NewContent = OldContent plus NewValue
Updated list of all the dates = Current list of all the dates plus the date of the newly added file
HTH
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.