Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TForm1.Button1Click(Sender: TObject);
var
h : THandle;
Icon : HIcon;
begin
h := LoadLibrary('icontable.dll');
try
if h <> 0 then
begin
Icon := LoadIcon(h, 'Icon1');
DrawIcon(Canvas.Handle, 10, 10, Icon);
end
else
begin
ShowMessage('Load Resource DLL FAILED!');
end;
finally
FreeLibrary(h);
end;
end;
Extract icons from any .exe file and save as .ico files.
Lets say you have a BitBtn placed on a form, and that button has an Icon loaded on it, and you can't view it in ResHacker... How would you go by to get the image to show in a TImage in another application?