|
MasterString for Delphi by Patrick B.^ Language: Delphi
MasterString is a unit which contains string algorithms I translated from C++ to Object Pascal. They are common string algorthms, that are very usefull in string manipulation. Includes findstr (InStr$), leftcopy(Left$), rightcopy(Right$),midcopy (Mid$), and more
|
A String Tokenizer Similar To strtok() in C++ by Ty Language: Delphi
The following procedure acts similar to strtok in C++. Call it once with your string (S), and then everytime you call it from there on out, you can break your string apart with tokens! Included is a function StrMid() and an overload for StrMid that simulate the Mid() function in Visual Basic.
|
Better moving form by Mark van Renswoude Language: Delphi
While looking at somebody else's code, I noticed he was doing all sorts of stuff with the MouseDown and MouseMove events. Here's a better way, it captures the WM_NCHITTEST message which Windows sends to make Windows think the user is clicking on the titlebar, thus moving the form...
|
|
User Input Text Editor by Wayne Barron aka: Carrzkiss Language: Delphi
Updated on May 06, 2005
This was made with Delphi 6.02 Professional
And will work with Delphi 5 not sure about any version below. Give it a try with Versions below 5 and email me please.
For Beginners to Intermediate
This is an intense tutorial on how to create a text editor. Thought that I add something to this sight, instead of just always taken from it. This tutorial is very detailed on what needs to be done, and all source codes are highlighted. With a grayed background.
I am v ... (see entry for full description)
|
Windows Security Documentation by John M. Hall Language: Delphi
This document provides information about the Windows security system and what restrictions you can use to limit its functionality.
|
Split Function in Delphi by Nick Siderakis Language: Delphi
Hey this function just emulates the Visual Basic function that we know and love “split”!!! You use it the same way you would have in vb.
avar := split('string to break up',' ',2);
That will return avar as “to” that’s it, have fun and please vote!!
|
using trayicons by Lrd.Sandman Language: Delphi
Explains how to use the trayicon and switching icons/animating.
|
CheckBox in DBGrid by Tief Language: Delphi
This article shows you how to put a checkbox in a dbgrid. If the column is of boolean type, then a checkbox will appear. Great Look and very easy;
|
Hiding Processes by Exercia Language: Delphi
The object of this short tutorial is to demonstrate how processes can be hidden from the windows, its taskbar, and its task manager. It also contains my code to hide from the task manager on 9x machines without crashing when run on NT, or XP.
|
Grab the current URL from IE by Bryan Hammond Language: Delphi
This code will show you how to find the Internet Explorer browser window, then grab the current URL out of the IE address bar. Perfect for learning simple win32 api functions in delphi.
|
|
|