Jump to content

Markus Kinzler

Moderators
  • Content Count

    559
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Markus Kinzler

  1. Markus Kinzler

    General DB access question -- paging query results

    You need a control with a "virual" mode, loading data as needed. In your case you may have a look on VirtualTreeView.
  2. Markus Kinzler

    10.3 and Internal Server Error

    The base ide ist part of the installer itself. Addition of platforms should be possible when problem of the download server(s) are solved.
  3. Markus Kinzler

    Advice on starting to work with databases

    He does this already. But he uses a Textfile for storage.
  4. Markus Kinzler

    Advice on starting to work with databases

    Then multible users can access the db at the same time. But I wouldn't call this real muti user. Especially when using a "simulated" multi user system. A DBMS server offers more than just the possibillity to access a db simultaneously. The overhead for the ORM depends on the ORM also.
  5. Markus Kinzler

    Advice on starting to work with databases

    SQLite is great for single user or on mobile devices. But I prefer FireBird, because it's more powerful an scalable (embedded for single user; Server for multiuser; database file is interchangable). Is this the project you talking about? Look at the MARS samples. You will also find examples for database access.
  6. Markus Kinzler

    Advice on starting to work with databases

    http://ibphoenix.com/ http://docwiki.embarcadero.com/RADStudio/Tokyo/en/Connect_to_Firebird_(FireDAC) Besides the dbms specific syntax (shouldn't be too much) there're basics about rdbms might be good to know about.
  7. Markus Kinzler

    Advice on starting to work with databases

    No overkill but MySQL isn't only "free" for OS projects. MSSQL express or FireBird seem to be the better solutions in my opinion.
  8. Markus Kinzler

    Microsoft Team Foundation System and Delphi

    There is a interoperable bridge to GIT https://github.com/git-tfs/git-tfs
  9. Markus Kinzler

    Advice on starting to work with databases

    Do you want advise in choosing a DBMS or are your question about database design?
  10. Markus Kinzler

    Is there a Delphi library that does AMQP 1.0?

    https://www.habarisoft.com/habari_activemq.html
  11. Download and have a look on it.
  12. Markus Kinzler

    http://community.idera.com/ login woes

    Lucky guy. It seems setting up a forum is a very complex task.
  13. Markus Kinzler

    Custom Managed Records Coming in Delphi 10.3

    @Rudy Velthuis I think you misunderstood me. My concern are only about the automatic invocation.
  14. Markus Kinzler

    Custom Managed Records Coming in Delphi 10.3

    On one side EMBT removes "automatic" management for classes (ARC) on the other hand they introduce automatisms for "static" types. It might be dangerous. Is there a way to off switch this (useful) feature?
  15. Markus Kinzler

    New in 10.3: IDE UI Improvements in the Main Window

    Hope Rio is bulletproof then 🤩
  16. Markus Kinzler

    New in 10.3: IDE UI Improvements in the Main Window

    The ide of RadStudio 10.x is much more stable than XE7.
  17. Markus Kinzler

    How to get exact Control ClientWidth and ClientHeight

    I would evaluate the CanResize event.
  18. Markus Kinzler

    Extracting SQL from Delphi code and DFMs

    Also possible when using other libraries like UniDAC.
  19. Markus Kinzler

    How to know that a file is not used by another program?

    That solves not the problem. The graphic file is generated by the external program. The file exists with start of the process. If the finishing cannot be signaled by the external program the name doesn't matter.
  20. Markus Kinzler

    How to know that a file is not used by another program?

    If the external program is written by himself then the task can be done with a "lockfile" or with ipc. If not the check for exclusive access in an interval is the next best solution.
  21. Markus Kinzler

    Detailed logging (for debugging)

    Have a look at this tool: https://github.com/grijjy/GrijjyCloudLogger
  22. The number of members is still rising. The start of the Forum was at november october 26th. We cannot expect that the registering rate being high constantly. More important is the number of new topics and posts. Sven asked for a statitics of new users. That was the reason I made this excel chart. When all basics of this forum are done, where be a more meaningful statistic.
  23. Markus Kinzler

    Compiler Defines for FireMonkey and VCL in inc files.

    The use of a specific library/framework is different than the compilation for different cpus or platforms. Then same compiler is used regardless if it's a vcl or a fmx project. You can even mix up both inside a program. With onboard means Vcl is only available in win32 and win64, but with CrossVCL it can also be used for macOS and Linux targets.
×