⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ucd31.pas

📁 通过程序的试算平衡表
💻 PAS
字号:
unit UCD31;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, DosMove, StdCtrls, xpEdit, ExtCtrls, Buttons;

type
  TFmCD31 = class(TForm)
    Label1: TLabel;
    RadioButton1: TRadioButton;
    RadioButton2: TRadioButton;
    BitBtn1: TBitBtn;
    Panel1: TPanel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    xpEdit1: TxpEdit;
    xpEdit2: TxpEdit;
    xpEdit3: TxpEdit;
    xpEdit4: TxpEdit;
    DosMove1: TDosMove;
    Label8: TLabel;
    xpEdit5: TxpEdit;
    xpEdit6: TxpEdit;
    Label9: TLabel;
    Label10: TLabel;
    Label11: TLabel;
    procedure FormCreate(Sender: TObject);
    procedure RadioButton2Click(Sender: TObject);
    procedure RadioButton1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  FmCD31: TFmCD31;

implementation

{$R *.dfm}

procedure TFmCD31.FormCreate(Sender: TObject);
begin
  Height := 150;
end;

procedure TFmCD31.RadioButton2Click(Sender: TObject);
begin
  If RadioButton2.Checked Then
  Begin
    Panel1.Visible := True;
    FmCD31.BitBtn1.Default := False;
    FmCD31.Height := 375;
  End;
end;

procedure TFmCD31.RadioButton1Click(Sender: TObject);
begin
  If RadioButton1.Checked Then
  Begin
    Panel1.Visible := False;
    FmCD31.BitBtn1.Default := True;
    FmCD31.Height := 150;
  End;
end;

end.

⌨️ 快捷键说明

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