Delphi - объектно-ориентированный язык программирования, разработанный компанией Borland в 1995 году. Он основан на языке программирования Pascal, но имеет более расширенные возможности и добавлены новые функции.
Delphi является интегрированной средой разработки (IDE), которая позволяет разрабатывать программное обеспечение для различных платформ, включая Windows, macOS, Android и iOS. Delphi достигает многоплатформенности с помощью...
{ Create and edit a new text file in your project directory, eg: newres.txt In the file, write: MY_BMP_RES BITMAP "bmpname.bmp" and save the file. Open a dos shell and go to your directory, type this command: brcc32.exe newres.txt this will create a resource file called newres.res with your bitmap. } unitUnit1; implementation
{$R *.DFM} {$R newres.res} // add this line! procedure
TForm1.FormCreate(Sender: TObject); var
MyBmp: TBitmap; begin
MyBmp := TBitmap.Create; try
MyBmp.LoadFromResourceName(HInstance, 'MY_BMP_RES'); // Do something.... finally
MyBmp.Free; end
; end
;