Delphi

Learn to Program in Delphi - Building and Debugging

Author: Pawe Gowacki In the first post we have covered the installation of Delphi Starter. Now it is the high time to start using it! The best way to learn something is to start using it to build something useful, but not too complicated. Today we will start creating a “calculator” application that we will use as a vehicle to learn the basics of programming in Delphi. Understanding the…
Read more
News

Webinar: Cool Apps and Case Studies

Author: Andreas@Mediatech Delphi and C++Builder are regularly used to build amazing software. Many of these are highlighted in the Cool Apps Contestor in our case studies. This webinar takes a look at some cool apps and case studies that highlight unique software and…
C++

Ways you can customize the RAD Studio, Delphi and C++Builder 10 Seattle IDE today

From time to time I get asked how developers can customize their IDE experience. There are many ways to set options that affect the IDE, registry settings you can change and external 3rd party tools you can use. Here are a few ideas about what you can do to take control of the look and feel of the Embarcadero RAD Studio, Delphi and C++Builder 10 Seattle IDE. Use the IDE Tools | Options menu…
Read more
Delphi

Creating an InterBase database on the fly with FireDAC

Recently I have been creating a number of applications using InterBase on iOS and Android using FireDAC components to talk to the database. One route to achieving this is by create the database file and table structure either via iSQL or using IBConsole GUI first before using it in your project. Once you have the database file (which is simple enough to do) you then have to deploy the file along…
Read more
Delphi

Delphi JSON Viewer

Author: Michael K22532 JSON support has been introduced in Delphi 2010 as a part of DBExpress database driver architecture, but of course JSON support is not limited to just database applications. JSON is similar to XML as both are text-based data interchange formats. Delphi…
News

Entity Framework Models and Source Control

Author: Craig Stuntz As you’re probably aware, an Entity Framework model is stored in a single XML file, with the extension EDMX. Developers occasionally ask if this means that two people cannot work on the entity model concurrently. My answer to this is, “It…
Delphi

Building and consuming web services with Delphi 2009

Author: Pawe Gowacki Do you remember that Delphi 6 was the first IDE in the market with Web Services support? This trend continues and Delphi 2009 supports building web service servers and clients:-) In this post I’m going to describe all steps neccessary to build simple web service server and client applications in Delphi 2009. Building “Simple Calculator” web service…
Read more