You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
463 B
Plaintext
27 lines
463 B
Plaintext
unit u_sys_print_down_view;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, BusinessSkinForm, ExtCtrls, bsSkinCtrls;
|
|
|
|
type
|
|
Tfrm_sys_print_down_view = class(TForm)
|
|
bsBusinessSkinForm1: TbsBusinessSkinForm;
|
|
Image1: TImage;
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
frm_sys_print_down_view: Tfrm_sys_print_down_view;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
end.
|