Delphi Programming

TwitterFacebook
Get flash to fully experience Pearltrees
Video Tutorials by Alister Christie (Codegearguru)

http://www.festra.com/eng/mtut01.htm Launching an external program and waiting until it is terminated is quite another story...

Delphi Tutorial: Running an external application w ShellExecute

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. http://delphi.about.com/od/windowsshellapi/a/dll_basics.htm

Creating and Using DLLs from Delphi

http://www.delphidabbler.com/articles DelphiDabbler.com Open source software, Delphi components, Tutorials & more. » Sitemap

Delphi programming articles and tutorials

AggPas - About

http://www.crossgl.com/aggpas/ Latest news, 1 October 2009
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 ; http://www.swissdelphicenter.ch/en/showcode.php?id=152

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

http://www.felix-colibri.com/papers/design_patterns/the_lexi_editor/the_lexi_editor.html
DelphiSpeedUp is an IDE plugin for Delphi and C++Builder.

DelphiSpeedUp 2.8 | Andy’s Blog and Tools

http://andy.jgknet.de/blog/ide-tools/delphispeedup/
Delphi offers an Open Tools API, to allow programmers to extent the functionality of the Delphi IDE itself.

Dr.Bob's Delphi Clinic: Delphi Property and Component Editors