Jump to content

Attila Kovacs

Members
  • 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 Excellent

2 Followers

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Attila Kovacs

    function declarations without ; at the end

    Ok, this explains why ;;;;'s are just fine.
  2. Attila Kovacs

    function declarations without ; at the end

    so it should yield an error if there is a semicolon for nothing Would you mind filing an error report? 😉
  3. Attila Kovacs

    function declarations without ; at the end

    (On a side note, you also don't need a semicolon if the next word is "end". If it's known, just ignore me.)
  4. Attila Kovacs

    Alternatives for SQL Anywhere

    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.
  5. Attila Kovacs

    About the compiler (not) finding the DFM files

    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.
  6. Attila Kovacs

    BIG changes

    It might also be worth considering a shift from forums to blogging platforms.
  7. Attila Kovacs

    pasfmt out now!

    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
  8. Attila Kovacs

    Anyone using Clever Components?

    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; //
  9. Attila Kovacs

    Anyone using Clever Components?

    I sent you a PM with an unofficial fix. Let me know if it works with TLS 1.3.
  10. Attila Kovacs

    Does anyone know a delphi component that can play videos from a stream

    ?!? How can you change the title?
  11. If the "flag" were internal, how would I know its value in the OnCloseQuery() event?
  12. What would you have chosen instead?
  13. Attila Kovacs

    Change a forms OnShow Event?

    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.
×