Deciding how much RAM, Hard Drive space for a working environment!

Rad Studio Delphi Development
Deciding to either increase computer memory or hard drive space should be based on need and affordability. An HDD (Hard Disk Drive) uses spinning physical disks and is cheap for large storage. An SSD (Solid State Drive) uses flash memory, has no moving parts, and is much faster and more durable but costs more per gigabyte. Key Differences Speed: SSDs boot up and load apps in seconds; HDDs are much slower because their disks must spin. Price: HDDs cost less per terabyte, making them great for massive budget storage. SSDs cost more per gigabyte. Durability: SSDs survive drops and bumps easily because they lack moving parts. HDDs can break if moved while spinning. Noise: SSDs run completely silent. HDDs make clicking or whirring noises. Memory on the other hand is…
Read More

Using SATA Wire 3.0 to clone drives

Hardware Reviews
Recently Baron Software was using Apricorn SATA Wire 3.0 to clone drives in multiple machines. SATA Wire is an amazing piece of software. It comes with a cable which connects the SSD to the USB port 3.0. It is also compatible with a USB 2.0 port. An average person who has a little computer knowledge can clone any computer drive to the SSD drive with ease. Apricorn sells the SATA Wire kit for about $30. The cable and software is reusable. Simple steps to clone. Step 1: Install the software. There is an option to get the latest software from Apricorn web site. Step 2: Insert the one end of the cable into the SSD and insert other end into the USB port. Step 3: Start the software and select…
Read More

Gotchas when using Delphi Update

Rad Studio Delphi Development, Software development Concepts
Sometimes when you are programming using Embarcadero Delphi you will come up with a few Gotchas. These are not bugs but more as a pain. Initially you create an application in a debug mode while you are testing the code. You have a icon for the application making it look professional and just go to the release state. The icon may or may be what you expected. Your debug application has the correct icon but your release doesn't. Pretty strange but Windows keeps an icon cache. The simple thing would be to rename your executable and suddenly it looks good. You wonder why Windows would do that ? It is Windows and you have to live with that. Click on this link to see what else you can do to…
Read More

Terminating an Application when using Delphi

Rad Studio Delphi Development, Software development Concepts
Sometimes there are reasons to terminate an application due to unforeseeable issues and there has been a lot of talk how to handle this event. Let's go over a simple application and break down what needs to be done. Go to the code The initial code opens up a splash screen, displays it and finally releases it after a few moments. Splashscreen.Show; Splashscreen.Update; Sleep(2000); Splashscreen.Free; Application.Initialize; The application defaults are set with the title and the help file as well as creating the data module along with the login screen. Application.DefaultFont.Name := 'Arial'; Application.MainFormOnTaskBar := True; Application.Title := 'Application Name'; Application.HelpFile := ExtractFilePath(Application.ExeName) + 'Help.CHM'; Application.CreateForm(TDM, DM); Application.CreateForm(TfrmLogin, frmLogin); The application at this point will open up the login screen allowing the user to enter their information. The license is…
Read More

TrackPro Roadmap for 2019 to 2020

Rad Studio Delphi Development
The future of TrackPro is bright! Since Baron Software has acquired TrackPro the improvements have been moving along. So without delay for the current users of TrackPro the roadmap for 2019 to 2020 details what is on the horizon. TrackPro was born Developed by Al Weisenborn in 1998. TrackPro has evolved over time with the purpose of tracking instruments. TrackPro is a software solution that allows you to track and manage the status of recurrent activities such as calibrations, maintenance, and reminders. Improvements The coming improvements will increase the productivity. Some of the scheduled updates will be a SQL database version. Allowing large companies to have the necessary robust performance they need. Small companies can still use the current database and do not need to convert. Basically there will be…
Read More