|
APR Dialogs 1.3.1 is available!
New version of APR Dialogs is available!
You can create your own custom Win32 common dialogs. With no RC files, no Res editors. Use your Delphi forms as bottom, top ,left and/or right extended parts of the dialogs. Now supported: Open/Save, BrowseForFolder, Print, Color, OpenTable (similar to DBD), Database (based on BrowseForFolder).
Available with source code: PageSetup, Font, Find, Replace, About dialogs.
Common features: design-time preview, customizable dialog startup position, custom dialog items captions.
Open/Save features: native and/or customizable PlacesBar support, powerful customization of the file list view, customizable ToolBar, etc.
New features:
- TApOpenDialog with new Recent tab (recent files list);
- Component reference in the WinHelp format.
Related Discussions - RESTRICTING USERS OF AN APPLICATION IN A NETWORK SITUATION (2001-01-10 00:56:12)This would be a simple solution.
program OnlyOneOpen;
uses
Forms, SysUtils, classes, windows, dialogs,
uSingleRun in 'uSingleRun.pas'...
- MESSAGE DIALOGS... (2001-01-10 12:21:18)Here goes a trick from Borland
http://www.borland.com/devsupport/delphi/downloads/index.html
To translate the Delphi 3.0 VCL messages, you need...
- PASSING FUNCTIONS AS PARAMETERS (2001-01-11 11:29:41)This code was posted by Glynn Owen on the newsgroup.
Newsgroup: borland.public.delphi.objectpascal
unit Unit1;
interface
uses...
- HOW DO I GET THE IP ADDRESS OF A COMPUTER? (2001-01-15 19:33:16)unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Winsock;
type...
- HOW CAN I FIND THAT NOTEPAD IS CLOSED OR NOT ? (2001-01-22 09:49:40)I'm happy for you, but I hope you're aware that you are actually doing a mistake which can be source of bug :)
- DELPHI COMPONENT (2001-01-21 15:55:08)Hey!
All i can suggest you is a piece of code (really confusing one) but I think that will do the job. Well... here it is... a long one but...
- TEXTFILES (2001-01-24 08:04:29)See this newsgroup post by Peter Below. {Note: Change the
type of bytesToread from Word to Integer. It was originally
written for D1}...
- QUICKTIME 4 EFFECT AND SOME OTHER MUSIC PROGRAMS EFFECT... (2001-01-26 11:23:28)Could you be talking about something like this:
(*
** 8/1/96 - Created by calix@together.net
** Inspired by Brendan V. Delumpa
**
** TRollup...
- NET SEND (2001-01-26 23:17:39)Hey Mr. Baseball,
Thank you man for being so explanative and modifying the code to improve it. Thanks to Rubens too, he tested the code and so on....
- HOW TO DECLARE A GLOBAL VARIABLE (2001-01-26 10:11:36)in another form you can't use e.g. edit1.text:=myvariable
you must use edit1.text:=alpha.myvariable
Please e-mail me if u have any more...
|