end;
6. 把tcolor转换为rgb值
procedure tform1.button1click(sender: tobject);
var
color: tcolor;
r, g, b: integer;
begin
color := clblack;
r := color and $ff;
g := (color and $ff00) shr 8;
b := (color and $ff0000) shr 16;
showmessage(inttostr(r));
showmessage(inttostr(g));
showmessage(inttostr(b));
end;
7. 浏览计算机对话框
uses shlobj;
function browseforcomputer(const winhandle : thandle; const title : string) : string;
var
browseinfo: tbrowseinfo;
idroot: pitemidlist;