Posted by
Eng.Ahmed AlSadi
Sep
16
Delphi – WordPress Hi If want to add new comment to wordpress post , you can do it programmatically in delphi using (TIdHTTP, TStringList) , please don’t use this delphi code to make spam comments or spam auto commenter :
Posted by
Eng.Ahmed AlSadi
Jan
7
Sometime you want to put a confirm message when the user decided to delete some thing, the purpose of this message is to verify if the user is sure he want to delete, or the action taken by accident.
Posted by
Eng.Ahmed AlSadi
May
15
Answer: To run Delphi Application as Administrator in Windows 7 or Windows Vista, There is two ways to do that
Posted by
Eng.Ahmed AlSadi
May
2
Yes no messagebox in Delphi, how to show yes no message in delphi? we will return to previous example, function FileExists in delphi that takes the file name as parameter, then it return a boolean result
Posted by
Eng.Ahmed AlSadi
May
2
How check if file exists in delphi?, it is so easy in delphi, there is a function FileExists in delphi that takes the file name as parameter, then it return a boolean result, if the file exists ‘True’, else it returns ‘False’
Posted by
Eng.Ahmed AlSadi
Apr
23
We will show how to set mouse position (Cursor Position) to a specific point (X,Y) programmatically in delphi, some times you need to move the mouse to a position you want with coordinates of X and Y, to that, write only the following function that is built in delphi
Posted by
Eng.Ahmed AlSadi
Apr
23
We will show how to add images to DropDownlist (Combo box) in delphi, The first thing go to style property of your DropDownlist (Combo box) and change it to “lbOwnerDrawVariable” , this is to Draw in list box
Posted by
Eng.Ahmed AlSadi
Apr
23
How to make a form in front of all other forms, this so easy in delphi, just go to the form properties tool bar and choose the property “FormStyle” you will find it “fsNormal” as default
Posted by
Eng.Ahmed AlSadi
Apr
22
We will show how to add images to listbox in delphi, The first thing go to style property of your listbox and change it to “lbOwnerDrawVariable” , this is to Draw in list box, suppose we pot a Listbox names ‘lst1′, Add now Image List and name it ‘il1′ , go to the event “onMeasureItem” [...]
Posted by
Eng.Ahmed AlSadi
Apr
16
Delphi TrayIcon example, Some times you want your program to be minimized to system tray beside clock , here I will give you an example to do that using TrayIcon control