DelphiRAD Studio

How To Create Real-Time Applications With SignalR On Windows

History on Client-Server Apps When the original web first came into widespread public use things were reasonably basic. Webpages were effectively specialized documents, like a library. Users clicked on links to articles they found interesting. Somewhere, perhaps on another side of the world, another computer or server was the destination for that click or as we came to call it: the request. The…
Read more
C++DelphiRAD Studio

9 Signs You Should Invest in Automation

In today’s economy, efficiency, speed, and productivity are key to prolonged success. However, many businesses still waste precious time and resources running manual processes that can be automated. Knowing when it’s time to automate specific manual processes can be…
CodeDelphiTech Partner

What Are The Mistakes We Made In Creating Delphi Objects?

Practically every developer, even a newcomer in programming, can create and destroy objects correctly. A classic construction that is used in the majority of programs looks the following way: MyObject:= TMyClass.Create(); try {some code…} finally MyObject.Free; end; Yet, some time ago, there were a lot of discussions where to place object creation: before an exception handler or within…
Read more
DelphiIDENews

New in RAD Studio 11: High DPI IDE and Form Designing!

There is a very exciting improvement in Delphi, C++Builder and RAD Studio 11.0 Alexandria: the IDE now fully supports high DPI scaling on high-resolution screens. This means that if you use Windows and have a 4K or similar high-res display, the IDE will render crisply and clearly on your screen. In fact, if you have two screens with different scales, you can have different IDE windows on those…
Read more
CodeDelphiRAD Studio

How To Deploy Your Apps From RAD Studio To Docker

Docker helps you to simplify and automate the deployment process for your applications effectively. It enables you to package your software in a way that is predictable and consistent. As a result, it has grown in popularity among development teams all over the world. This post will go over the specifics of deploying your application from IDE Software to Docker. Let’s get started. What is…
Read more