re2bmp.dpr

来自「很多 delphi 精彩小例子。供大家参考。」· DPR 代码 · 共 25 行

DPR
25
字号
// By Peter Beyersdorf, Hannover 1997 - Freeware! - Enjoy! - Use at own risk!
//
// for Delphi 2
//
// Demonstrates, how the contents of the client-area of a control can be turned
// into a bitmap. Control must be completly visible. This is an answer to a
// question posted in CompuServe's German language 'Borland GmbH'-Forum.
//
// Email: beyersdorf@compuserve.com
// WWW: http://members.aol.com/beyersdorf/index.html

program RE2BMP;

uses
  Forms,
  RE2BMPF in 'RE2BMPF.pas' {Form1};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?