-
Content Count
564 -
Joined
-
Last visited
-
Days Won
8
Everything posted by Markus Kinzler
-
The basics of the HighDPi support origines from @Uwe Raabe. But his silution wasn't implemented in full range. https://www.delphipraxis.net/196643-high-dpi-patches-delphi-von-uwe-raabe.html https://www.delphipraxis.net/1419242-post4.html
-
mORMot running on Delphi 10.3 Rio
Markus Kinzler replied to Arnaud Bouchez's topic in Delphi Third-Party
If using UniDAC, IBX, ... it even run on remote servers.- 13 replies
-
- mormot
- delphi10.3
-
(and 4 more)
Tagged with:
-
mORMot running on Delphi 10.3 Rio
Markus Kinzler replied to Arnaud Bouchez's topic in Delphi Third-Party
This features are missing in Pro, too. That was the fact Thomas wanted to tell you. You can access the DBMS locally but not on a "external" server (other than the machine the program is running).- 13 replies
-
- mormot
- delphi10.3
-
(and 4 more)
Tagged with:
-
Installed Rio 2 times. This error seems a issue.
-
General DB access question -- paging query results
Markus Kinzler replied to David Schwartz's topic in Databases
In this case it was just a double post. I removed it. @David Schwartz you can report a post and ask someone of the team to remove it. I will remove this post tomorrow, too. -
General DB access question -- paging query results
Markus Kinzler replied to David Schwartz's topic in Databases
You need a control with a "virual" mode, loading data as needed. In your case you may have a look on VirtualTreeView. -
10.3 and Internal Server Error
Markus Kinzler replied to John Kouraklis's topic in Delphi IDE and APIs
The base ide ist part of the installer itself. Addition of platforms should be possible when problem of the download server(s) are solved. -
He does this already. But he uses a Textfile for storage.
-
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.
-
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.
-
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.
-
No overkill but MySQL isn't only "free" for OS projects. MSSQL express or FireBird seem to be the better solutions in my opinion.
-
Microsoft Team Foundation System and Delphi
Markus Kinzler replied to Andrea Magni's topic in Delphi IDE and APIs
There is a interoperable bridge to GIT https://github.com/git-tfs/git-tfs -
Do you want advise in choosing a DBMS or are your question about database design?
-
Is there a Delphi library that does AMQP 1.0?
Markus Kinzler replied to jeroenp's topic in Network, Cloud and Web
https://www.habarisoft.com/habari_activemq.html -
Fake TSpeedButton based on TBitBtn updated again
Markus Kinzler replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
Download and have a look on it. -
Lucky guy. It seems setting up a forum is a very complex task.
-
Custom Managed Records Coming in Delphi 10.3
Markus Kinzler replied to Marco Cantu's topic in RTL and Delphi Object Pascal
@Rudy Velthuis I think you misunderstood me. My concern are only about the automatic invocation. -
Custom Managed Records Coming in Delphi 10.3
Markus Kinzler replied to Marco Cantu's topic in RTL and Delphi Object Pascal
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? -
New in 10.3: IDE UI Improvements in the Main Window
Markus Kinzler replied to Mohammed Nasman's topic in Delphi IDE and APIs
Hope Rio is bulletproof then 🤩 -
New in 10.3: IDE UI Improvements in the Main Window
Markus Kinzler replied to Mohammed Nasman's topic in Delphi IDE and APIs
The ide of RadStudio 10.x is much more stable than XE7. -
How to get exact Control ClientWidth and ClientHeight
Markus Kinzler replied to Andry's topic in VCL
I would evaluate the CanResize event. -
Also possible when using other libraries like UniDAC.
-
Is there already a statistic about the new registrations?
Markus Kinzler replied to sh17's topic in Community Management
-
How to know that a file is not used by another program?
Markus Kinzler replied to Juan C.Cilleruelo's topic in Cross-platform
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.