情報処理基礎演習5

閲覧数1,303
ダウンロード数0
履歴確認
  • 1
  • 2
  • 3
  • 4

  • ページ数 : 4ページ
  • 会員550円 | 非会員660円

資料紹介

資料の原本内容 ( この資料を購入すると、テキストデータがみえます。 )

第 5 回レポート

情報処理基礎演習
unit Unit3;
interface
uses

Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
{$APPTYPE CO...

コメント0件

コメント追加

コメントを書込むには会員登録するか、すでに会員の方はログインしてください。