Archive for the ‘Delphi Tutorial’ Category

Get The Current Directory

Thursday, February 15th, 2007

Get the current directory.

(more…)

Get Program Directory

Thursday, February 15th, 2007

Get program directory.

(more…)

Convert JPG to BMP

Thursday, February 15th, 2007

With this procedure below you can convert JPT to BMP.

(more…)

Convert BMP to JPG

Thursday, February 15th, 2007

With this procedure below you can convert BMP to JPG.

(more…)

Preventing deleting record in a DBGrid

Thursday, February 15th, 2007

Put code snippet bellow on the OnKeyDown event of the DBGrid.

(more…)

Minimize all windows

Thursday, February 15th, 2007

You can minimize all windows with this code snippets.

(more…)

Hide the window caption

Thursday, February 15th, 2007

If you want to prevent the user to move a window you have to hide the caption. This is done by changing the window attributes in the FormCreate event. Its also possible to set the property BorderStyle to ‘bsNone’, but than the window has no frame at all.
(more…)

Close all the open Internet Explorer windows

Thursday, February 15th, 2007

Use this to close all open Internet Explorer windows.

(more…)

Split String 1

Thursday, February 15th, 2007

If you want to split string from TStringList you can use this little code.
(more…)

How to make transparent DBGrid

Monday, February 12th, 2007

With the following code we can make transparent DBGrid.

(more…)