Install Intraweb XIV components with DELPHI XE6
After installing and activating Intraweb XIV on DELPHI XE6 you need to do one more step to activate controls and components. From main menu go Component –> Install Packages click…
K-Smart, IT Business Solutions
Find ideas to implement your IT enviroment
After installing and activating Intraweb XIV on DELPHI XE6 you need to do one more step to activate controls and components. From main menu go Component –> Install Packages click…
When you perform a fresh DELPHI XE6 installation some packages aren’t enabled for usage. One important package that is missing includes the TClientSocket and TServerSocket components. You will need to…
Nowadays it is a must to encrypt the communication of your web site with the users and especially in cases that users send data with personal information. The encryption takes…
Delphi provides standard commands to round and truncate decimal numbers. For Example: Round(12.75) = 13 Trunc(12.75) = 12 Int(12.75) = 12 Frac(12.75) = 0.75 What about if we want to…
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: unit…
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;…
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…
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 …
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…
Here is the code. bg1: TButtonGroup bg1.Items.Add; bg1.Items[bg1.Items.Count-1].Caption:=’Test’;
Display the count of the number of rows for a particular table in Rave Repot Solution 1: This can be done quite easily using a CalcText component by setting the…