Delete a service on windows
This is how to delete a service on windows that has not been automatically removed by a software uninstall you need to edit the registry: Start the registry editor (regedit.exe)…
Create Checkmark Character in Notepad
To create the checkmark character in notepad, use the following keystroke combination: ALT+251 (the “251”should be keyed in via the 10-key pad on your keyboard. If you don’t have a…
Configure Symantec antivirus to run Ammmy
Ammmy is a known application that provides remote connection to computers for support reasons. Symantec has rated this application as malware and does not all allow it to be downloaded…
Improve the performance of your obsolete workstation
You have an obsolete workstation or laptop with low memory, small hard drive, running Windows XP or Windows 7 and you just want to run light applications like opening a…
Create Excel File with Delphi
This is how to Create Excel File with Delphi Add a button to Form1 and create OnClick Event Replace the contents of the code window for Unit1 with the following:…
Find the Path of desktop for the current user
This is the source code in Delphi to find the Path of desktop for the current user. The path is stored to FBuf variable Var Allocator: IMalloc; SpecialDir: PItemIdList; FBuf:…
Recommendations for Web Application Framework in Delphi
There has been some activity in the Web Application Framework area for Delphi. There are many new projects around, and I would love to see an overview description of their…
Upgrade memory to Toshiba Satellite c850-f0155
Use this part to upgrade memory to a Toshiba Satellite c850-f0155
How to find serial number of any software
This is a smart trick to find serial number of any software 1. Go to Google 2. Then type Software Name 94FBR Replace Software Name with the name of software…
How to enter bios on a toshiba satellite c850-f0155
This is how to enter bios on a toshiba satellite c850-f0155 to install Windows 7. Shut down the machine. Be sure that it isn’t in hibernation state or sleep mode.…
Reset Windows 8 and Windows 8.1 Installation
You may want to try a Windows refresh or a factory reset if your computer is unable to boot into Windows. Use the following steps to to launch Windows Automatic…
Delphi navigate to windows folders and subfolders to search files
This is a very smart source code to navigate to windows folders, starting from a root folder that you declare. Navigate(GetCurrentDir); procedure Navigate(Folder: String); var SearchRec: TSearchRec; begin FindFirst(Folder +…
Delphi forms change input language to default automatically
There is a bug appeared after upgrade from D2006 to D2010. When switching forms, the input language changes to default automatically. This is indeed very annoying for users uses with…
Block downloading windows 10
Microsoft released KB3035583 update that forces the downloading of windows 10 installation files. This may cause problems to business networks when multiple machines attempts to download the 5GB installation files.…
Delphi 2010 – How to add item to TButtonGroup
Here is the code. bg1: TButtonGroup bg1.Items.Add; bg1.Items.Caption:=’Test’;