DelphiNewsShowcase

Winners of the Delphi 26th Showcase Challenge

So many great entries for the Delphi 26th Showcase Challenge! There were 170 entries covering a wide range of project types. Everything from games and multimedia to line-of-business and consumer software. Both on VCL on the desktop and FireMonkey on mobile platforms. It is so easy to get wrapped up in our view of what Delphi is useful for, we sometimes miss its amazing flexibility. I recommend…
Read more
C++CodeDelphiIDERAD Studio

Edit Custom Style to change the background color of a FMX TEdit

A Delphi developer asked how do you change the background color of a FMX (FireMonkey) TEdit ? As many know, for a VCL TEdit, you could just set the color property of the TEdit, like this: Edit1.Color := clYellow; Then at Run-Time, after calling Edit1.Color := clYellow, the Edit1 looks like this: But, a FMX TEdit does not have a Color property, so how do you do the same for a FMX TEdit? There are…
Read more
DelphiShowcase

Powerful Torque Tool Controller Is Developed In Delphi

The Torque Tool Controller project catches the results of tightening from a tool controller for future analysis and it is developed in Delphi. According to the developer, “This is my prototype to verify torque / angle traceability connected with tool controller. I have been working with this project with Delphi 7.” The application appears to be running on some specialized equipment and…
Read more
DelphiRAD Studio

Fun With 3D: Apply A Texture To A GPU Shader With Delphi FireMonkey

We have been exploring shader programming in Delphi FireMonkey. In thefirst post, we have learned the fundamentals of computer graphics and prepared the development environment. And created a simple demo application that just renders every pixel using a blue color. So,in the second tutorial, we have applied a custom color to the GPU shader. And made several additions to the main…
Read more