-
Content Count
2013 -
Joined
-
Last visited
-
Days Won
26
Attila Kovacs last won the day on August 31 2024
Attila Kovacs had the most liked content!
Community Reputation
646 ExcellentTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
function declarations without ; at the end
Attila Kovacs replied to Günther Schoch's topic in RTL and Delphi Object Pascal
Ok, this explains why ;;;;'s are just fine. -
function declarations without ; at the end
Attila Kovacs replied to Günther Schoch's topic in RTL and Delphi Object Pascal
so it should yield an error if there is a semicolon for nothing Would you mind filing an error report? 😉 -
function declarations without ; at the end
Attila Kovacs replied to Günther Schoch's topic in RTL and Delphi Object Pascal
(On a side note, you also don't need a semicolon if the next word is "end". If it's known, just ignore me.) -
SQL Server Express is ano brainer, even InnoSetup can handle its installation automatically without user interaction. When you outgrow SQL Server Express, you can upgrade to a more powerful SQL Server edition such as Standard or Enterprise, or migrate your data to a scalable cloud-based database solution like Azure SQL Database. Avoid exotic DBMSs that introduce you to a labyrinth of their own dialects, from which there is no turning back.
-
About the compiler (not) finding the DFM files
Attila Kovacs replied to GabrielMoraru's topic in Delphi IDE and APIs
Why would it recompile if it hasn't changed? Do you mean when building the app? Why would you build the app so often? Yeah, compiling them into binary DFMs would be more elegant 😄 I don't know how many DFMs a library can have, but it's not typical.- 16 replies
-
It might also be worth considering a shift from forums to blogging platforms.
-
Multiline strings seem to be handled correctly. How about ignoring specific parts of the code? Is there a directive for that? There is. Looks great! // pasfmt off
-
Yes, there is no manual certificate validation implemented. I have added the same as you everywhere where dwSSPIFlags is used. // cert val if ManualCredValidation then dwSSPIFlags := dwSSPIFlags + ISC_REQ_MANUAL_CRED_VALIDATION; //
-
New Book Delphi Quality-Driven Development
Attila Kovacs replied to Dalija Prasnikar's topic in Tips / Blogs / Tutorials / Videos
. -
New Book Delphi Quality-Driven Development
Attila Kovacs replied to Dalija Prasnikar's topic in Tips / Blogs / Tutorials / Videos
.pending. -
I sent you a PM with an unofficial fix. Let me know if it works with TLS 1.3.
-
Does anyone know a delphi component that can play videos from a stream
Attila Kovacs replied to ToddFrankson's topic in VCL
?!? How can you change the title? -
How do I close a modal form without ModalResult being set to mrCancel ?
Attila Kovacs replied to dormky's topic in VCL
If the "flag" were internal, how would I know its value in the OnCloseQuery() event? -
How do I close a modal form without ModalResult being set to mrCancel ?
Attila Kovacs replied to dormky's topic in VCL
What would you have chosen instead? -
You are calling your OnShow method, it's not the property, the property is invisible because you have overriden it. Learn the basics of OOP.