whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

35 Visitors Online


 
...use system icons?
Autor: Simon Grossenbacher
Homepage: http://www.swissdelphicenter.ch
[ Print tip ]  

Tip Rating (5):  
     


{
possible constants:

- IDI_APPLICATION
- IDI_ASTERISK
- IDI_EXCLAMATION
- IDI_HAND
- IDI_QUESTION
}

//Icons
procedure TForm1.Button1Click(Sender: TObject);
var
  
icon: TIcon;
begin
  
icon := TIcon.Create;
  try
    
icon.Handle := LoadIcon(0, IDI_HAND);
    Canvas.Draw(30, 100, icon);
  finally
    
icon.Free
  end;
end;



{
possible constants:

- OBM_BTNCORNERS
- OBM_BTSIZE
- OBM_CHECK
- OBM_CHECKBOXES
- OBM_CLOSE
- OBM_COMBO
- OBM_DNARROW
- OBM_DNARROWD
- OBM_DNARROWI
- OBM_LFARROW
- OBM_LFARROWD
- OBM_LFARROWI
- OBM_MNARROW
- OBM_REDUCE
- OBM_RESTORE
- OBM_REDUCED
- OBM_SIZE
- OBM_UPARROW
- OBM_ZOOM

}

//Bitmaps
procedure TForm1.Button2Click(Sender: TObject);
var
  
bitmap: TBitmap;
begin
  
bitmap := TBitmap.Create;
  try
    
bitmap.Handle := LoadBitmap(0, makeintresource(OBM_RESTORE));
    Canvas.Draw(100, 100, bitmap);
  finally
    
bitmap.Free
  end;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners