|
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 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.
|
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.
|
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;
|
|
Loading and calling DLLs at runtime by James Mistry Language: Delphi
I have seen a few methods of calling DLLs at runtime that have required the programmer to know the name of the DLL and function signature (arguments) before compilation, but this is no good if you want to call a function you know nothing about. For some reason the topic is very poorly documented by Microsoft so, armed with some old C++ code and a couple of beers I set out to make a function that would call an export from a DLL with absolutely no information required at design time. ... (see entry for full description)
|
Introduction to Design Patterns in Delphi by Found on the World Wide Web Language: Delphi
'This article was written by James Heyworth, author of the ABC for Delphi component library published by Objective Software Technology Pty Ltd.' ABC for Delphi is a complete integrated solution for creating distinctive user interfaces with has over 200 components encompassing interface design, data presentation and application support. Copyright © 1996, Objective Software Technology Pty Limited. This paper may be freely distributed in its entirety, providing the source is acknowledg ... (see entry for full description)
|
A more professional approach to file reading / writing by Olfert Bakker Language: Delphi
I recieved a question about a more professional approach to file access, so I published the answer here. This article is not too usefull for people who have little experience, as I am assuming that you know AT LEAST the basics of Delphi 5+ in this article.
|
The SystemParametersInfo function by Emiel Hollander Language: Delphi
The Windows API function SystemParametersInfo can be used to find out things about the system. The parameters that should be passed to this function depend on the action that should be taken. I will only discuss the actions that get information from the system here. You can also set certain settings using the SystemParametersInfo function. For more info, see the Win32 Programmer's Reference.
|
|