
Delphi Programming
Get flash to fully experience Pearltrees
Video Tutorials by Alister Christie (Codegearguru)
Delphi Tutorial: Running an external application w ShellExecute
Page: 1 2 3 4 5 6 ... Next » (9 pages)
Delphi software at Download Typhoon, free software downloads, Development/Delphi
A Dynamic Link library, or DLL, is a collection of routines (small programs) that can be called by applications and by other DLLs. Like units, DLLs contain sharable code or resources, they provide the ability for multiple applications to share a single copy of a routine they have in common.
Creating and Using DLLs from Delphi
Delphi programming articles and tutorials
uses ShellApi; function CopyDir( const fromDir, toDir: string ): Boolean; var fos: TSHFileOpStruct; begin ZeroMemory(@fos, SizeOf(fos)); with fos do begin wFunc := FO_COPY; fFlags := FOF_FILESONLY; pFrom := PChar(fromDir + #0); pTo := PChar(toDir) end ; Result := (0 = ShFileOperation(fos)); end ;
copy / move / delete whole directory?
1 - Introduction Who's Lexi ? Lexi is the name of the sample "document editor" used by the Gang of Four, Gof for short, as the introductory example to design patterns.
Felix Colibri- Lexi, or the Quest for the Mythical Editor
25 Mar Most Recent Tweets from Embarcadero
RAD Application Development Software | Delphi Programming Community
Delphi offers an Open Tools API, to allow programmers to extent the functionality of the Delphi IDE itself.

