0
001china
Unregistered / Unconfirmed
GUEST, unregistred user!
我的设想是要在supeedbutton控件上画上用ExtractAssociatedIcon函数提取的一个图标文件。
具体代码如下:
procedure TForm1.SpeedButton1Click(Sender: TObject);
var
xcon:Ticon;
IconIndex : word;
begin
xcon.Create ;
xcon.Handle:=ExtractAssociatedIcon(HInstance,pchar('C:/01.txt'),IconIndex);
with speedbutton1.Glyph do
width:=xcon.Width ;
height:=xcon.Height ;
canvas.Draw (0,0,xcon);
end;
编译时提示xcon可能是非法变量。运行后出错。请各位高手多多帮忙。
具体代码如下:
procedure TForm1.SpeedButton1Click(Sender: TObject);
var
xcon:Ticon;
IconIndex : word;
begin
xcon.Create ;
xcon.Handle:=ExtractAssociatedIcon(HInstance,pchar('C:/01.txt'),IconIndex);
with speedbutton1.Glyph do
width:=xcon.Width ;
height:=xcon.Height ;
canvas.Draw (0,0,xcon);
end;
编译时提示xcon可能是非法变量。运行后出错。请各位高手多多帮忙。