home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Expert 29
/
Pce29cd.iso
/
RUNIMAGE
/
DELPHI40
/
DEMOS
/
TEECHART
/
UDEMUTIL.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-06-16
|
382b
|
24 lines
unit udemutil;
interface
Uses Classes,Graphics,Dialogs;
Function EditColor(AOwner:TComponent; AColor:TColor):TColor;
implementation
Function EditColor(AOwner:TComponent; AColor:TColor):TColor;
Begin
With TColorDialog.Create(AOwner) do
try
Color:=AColor;
if Execute then AColor:=Color;
finally
Free;
end;
result:=AColor;
end;
end.