FixInsight for Rad Studio Delphi review

Rad Studio Delphi Development, Software development Concepts, Software Releases
The FixInsight software tool assists Delphi developers in finding possible coding defects that can affect the released product and this can be caught during the development process.   You can review the warnings as well as coding conventions that are part of the release.  Baron Software highly recommends the product for Delphi developers, we found that it is quick to point out various things we did not think about as well as potential issues.  You can view the product at FixInsight. The latest updated is available providing a few new rules and it was quick to install to allow work to continue.   The software is flexible for a few entries by simply opening FixInsight, right click on a option and you can modify what is allowed. It is simple to understand and…
Read More

Android SQLite Essentials Book Review

Book Reviews
  I recently had the pleasure of reading Android SQLite Essentials by Vikash Kumar Karn / Sunny Kumar Aditya. The book details about using SQLite with your android and some tips about accessing the database from multiple applets on your android device. The book is rather small about a little over 90 pages which I do not understand how Amazon comes up with 127 pages unless they are counting certain sections twice.  The chapters are simple concepts that anyone can understand and within an hour you can have a pretty good idea on what to expect as well as how to use SQLite. The chapters are listed below, you can complete the book within an hour and get developing.   The source code is available from their web site and…
Read More

Stopping a Delphi application from having too many instances.

Rad Studio Delphi Development
Every single developer wishes to have their client start up only a single instance of their application.   This reduces the amount of possible application issues if the code makes a database connection or does some sort of processing that takes away the machine resources.   The following code snippet will help Delphi programmers to keep the process count down to a single instance.  This was coded using Rad Studio XE8 Delphi and is used in many of my applications. The code will be embedded in the project's source because it has to occur prior to the application creating the main form. Click on the menu Project / View Source or using the project manager, you can right click and upon getting the pop-up, you can select view source as…
Read More