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

How not to conduct support and sales!

News Items, Rad Studio Delphi Development, Software Events, Software Releases
During the summer months businesses tend to have smaller staffs due to vacations or working less hours to enjoy themselves. All businesses need to provide their staff with time off to prepare mentally and physically for the upcoming projects. Hopefully this not how to conduct support and sales. That being said it is understandable that companies may not get back to you within a timely fashion. Support team that does not know. Our first story starts with a support call. There was an issue that led to a component not working correctly. The email went to the support team with the issue described. What came back from the support team was strange. Apparently the person who wrote the software component was on a two week vacation. So the support staff…
Read More