Delphi 10.4 Sydney is a specific version of Delphi released in May 2020.
Questions tagged [delphi-10.4-sydney]
363 questions
-3
votes
3 answers
Why is FileAge returning unexpected values?
So i have a 'downloads' folder where i put everything i download in my day by day work. You know we always automate everything, so I'm trying to build a simply app to run everyday to delete files older than 30 days, as i have to do this manually…

delphirules
- 6,443
- 17
- 59
- 108
-3
votes
2 answers
How do I link a TEdit with another TEdit?
I'm working on a small Delphi project. I'm trying to link an TEdit with another TEdit.
When the user types his username and password and logs in, the username should show up in the next Form. I've created a TEdit on the next Form, but I don't know…

Franklin
- 1
- 1
-6
votes
3 answers
Extract string-token objects from string?
Does Delphi (10.4) have a string-tokenizer that extracts string-token-objects from a string in a similar way as below?
MyPhrase := 'I have a simple word and a complex Word: A lot of WORDS.';
MyTokens := MyTokenize(MyPhrase, 'word');
for i := 0 to…

user1580348
- 5,721
- 4
- 43
- 105