P pihome Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-20 #2 Image.Picture.LoadFromFile(FileName);
G gb2312 Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-20 #3 var bit :Tbitmap; begin bit := Tbitmap.create; bit.loadfromfile('1.bmp'); //add your code. bit.free; end;
var bit :Tbitmap; begin bit := Tbitmap.create; bit.loadfromfile('1.bmp'); //add your code. bit.free; end;
H huazai Unregistered / Unconfirmed GUEST, unregistred user! 2003-04-21 #4 pihome没错不过对于jpg图片要在前面uses jpeg;
A antic_ant Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-04 #6 the LoadBitmap function loads the specified bitmap resource from a module's executable file. HBITMAP LoadBitmap( HINSTANCE hInstance, // handle of application instance LPCTSTR lpBitmapName // address of bitmap resource name );
the LoadBitmap function loads the specified bitmap resource from a module's executable file. HBITMAP LoadBitmap( HINSTANCE hInstance, // handle of application instance LPCTSTR lpBitmapName // address of bitmap resource name );
D darling_crm Unregistered / Unconfirmed GUEST, unregistred user! 2003-08-02 #8 使用TImage,则支持的类型全解决,又简单!OK! To me! Thank you!