1 シミュレーションとは何か?

Size: px
Start display at page:

Download "1 シミュレーションとは何か?"

Transcription

1 Delphi P.1/16 Delphi Delphi Object Pascal Delphi Delphi Delphi (Borland) Windows Turbo Pascal Pascal Delphi Turbo Pascal Windows Pascal FORTRAN BASIC Java Algol Algol Pascal Pascal Pascal Pascal Delphi Turbo Pascal Pascal Windows Object Pascal Object Delphi Windows Delphi Delphi Delphi 8 Delphi for the Microsoft.NET Framework Delphi 8.NET Delphi Delphi 8 Delphi 7 Delphi 8 Delphi 7 Delphi 7 Delphi 8 Pascal Delphi Pascal Pascal Pascal program ; x

2 Delphi P.2/16 var x begin end. Pascal program chap8_1; var x : integer; begin x := 10; writeln('x=', x); x := x * 2; writeln('x*2=',x:2); readln; end. Pascal Pascal Pascal Pascal Delphi Delphi Pascal dpr Delphi Delphi Windows Delphi Windows Delphi Pascal

3 Delphi P.3/16 Pascal Turbo Pascal Pascal.pas Delphi Delphi Delphi Delphi 8 VCL Delphi 7 Windows memo edit Delphi

4 Delphi P.4/16 PaintBox Delphi 7 chap8_1 Delphi memo Standard Tmemo memo memo1 memo1 memo1 memo1 lines memo1 Tbutton button Delphi 8

5 Delphi P.5/16 buttun1 button2 Caption button1 Start button2 End Start End Start Start procedure TForm1.Button1Click(Sender: TObject); Delphi x s begin s form1.memo1.lines.add(s) Button1Click Start End End begin close; chap8_1 Delphi (chap8_2) Start memo End Delphi Windows Delphi memo TMediaPlayer Delphi chap09_2

6 Delphi P.6/16 Delphi Delphi Delphi Windows Delphi IDE Rad(Rapid Application Development) chap8_2 2-Way Tool Delphi Delphi Delphi 8.dpr (.pas) Delphi 8.bdsproj chap8_2 (chap8_2.dpr) Pascal begin end. uses chap8_2a.pas program chap8_2; {% DelphiDotNetAssemblyCompiler 'c: borland common files borland shared bds sha

7 Delphi P.7/16 red assemblies 2.0 Borland.Vcl.dll'} uses System.Reflection, System.Runtime.CompilerServices, SysUtils, Forms, chap8_2a in 'chap8_2a.pas' {Form1}; {$ R *.res} [STAThread] begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end. Pascal.pas Delphi Pascal.pas (chap8_2a.pas) unit chap8_2a; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, Borland.Vcl.StdCtrls, System.ComponentModel; type

8 Delphi P.8/16 TForm1 = class(tform) Memo1: TMemo; Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); private { Private } public { Public } var Form1: TForm1; implementation {$ R *.nfm} procedure TForm1.Button1Click(Sender: TObject); var x : integer; s : string[10] ; begin x:= 10; s := 'x =' + IntToStr(x); form1.memo1.lines.add( s); x := x * 2; s := 'x*2 =' + IntToStr(x); form1.memo1.lines.add(s) procedure TForm1.Button2Click(Sender: TObject); begin close end. unit unit ;

9 Delphi P.9/16 (.pas) interface implementation uses Delphi type TForm1 = class(tform) Memo1 Button1 Button2 procedure private public var Form1 a = 10 const a = 10; implementation end. {$R *.nfm} TForm1 TForm1. TForm1. TForm1. Delphi Object Pascal Delphi

10 Delphi P.10/16 Delphi Caption Color Delphi Button1 Button2 TButton Caption Button1 Caption Start Button2 Caption End type Form1 (TForm1) TForm1 TForm TForm1 Memo Button TForm1 TForm1 Form1 TForm1 Form1 Delphi form1.memo1.lines.add memo Form1 Memo1 lines add lines TString TString add add add Canvas Canvas Delphi chap8_2 (OnClick) Pascal Pascal begin end. Delphi FormCreate FormCreate Delphi FormCreate (OnCreate) 3 Form1 Button1Click Button2Click Start Button1Click End Button2Click

11 Delphi P.11/16 Sender Sender TObject Delphi PowerPoint (char.ppt) char.ppt Enter Enter + Esc char.ppt Enter (Timer) Delphi Delphi Delphi chap8_3 chap8_ chap8_3a.pas TTimer Timer1 OnKeyDown Timer1Timer FormCreate unit chap8_3a; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,

12 Delphi P.12/16 Dialogs, ExtCtrls; type TForm1 = class(tform) Timer1: TTimer; procedure OnKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); procedure Timer1Timer(Sender: TObject); procedure FormCreate(Sender: TObject); private { Private } public { Public } const pre_order = ' ';// var Form1 : TForm1; istep : byte;// istm : byte;// n_present : byte;// implementation {$ R *.dfm} procedure TForm1.OnKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);// begin if Key = VK_ESCAPE then close;{esc } if (Key = VK_RETURN) and (istep = 0) then{enter } begin timer1.enabled := true; Form1.Canvas.Rectangle(L eft, Top, Width, Height); procedure TForm1.Timer1Timer(Sender: TObject);// const

13 Delphi P.13/16 var s_focus : string[6] = ' ';// s_blank : string[6] = ' ';// s_stimuli : array[1..3] of string[6] = (' ',' ',' '); s_ending : array[1..2] of string[26] = (' ',' '); p_ord : byte;// s_id : byte;// begin timer1.enabled := false; istep := istep + 1;// if istep mod 3 = 1 then istm := istm + 1;// p_ord :=(istep-1) mod 3; if istm <= n_present then begin s_id := StrToInt(copy(pre_order,iStm,1)); with Canvas do begin Rectangle(0, 0, Width, Height); case p_ord of 0: TextOut(350, 300, s_blank); 1: TextOut(350, 300, s_focus); 2: TextOut(350, 300, s_stimuli[s_id]); { of case } {of with Canvas } { of if istm <= } if istm > n_present then with Canvas do begin if p_ord = 1 then begin Rectangle(0, 0, Width, Height); Font.Size := 28; TextOut(300, 350, s_ending[1]); TextOut(300, 450, s_ending[2]); end else TextOut(350, 300, s_blank); {of with Canvas } if (istm <= n_present) or ( p_ord = 0) then timer1.enabled := true; procedure TForm1.FormCreate(Sender: TObject);//

14 Delphi P.14/16 begin Left := -5; Top := -5;// Width := 1036; Height := 778;// with Canvas do begin//canvas Brush.Color := clblack;// Rectangle(Left, Top, Width, Height); // Pen.Color := clwhite;// Font.Size := 36; Font.Style := [fsbold];// TextOut(100, 350, 'Enter ');// Font.Size := 96;// istep := 0; istm := 0;// n_present := Length(pre_order);// pre_order with timer1 do begin { } enabled := false;// interval := 1200;// { of with timer1 }// end. FormCreate Left Top Width Length Left Form1.Left Form1 Form1. with Canvas do begin Canvas Canvas Brush.Color Canvas.Brush.Color with Canvas do Canvas. 1.2 FormCreate Enter OnKeyDown Enter istep OnKeyDown Enter OnKeyDownPress

15 Delphi P.15/ Timer1Timer istep istm istep 0 2 p_ord istm pre_order if i_ord case if Enter istep Esc close chap8_3 Form1 BorderStyle bsnone Caption Windows FormStyle fsstayontop Font OnCreate FormCreate begin TForm1 OnKeyDown OnKeyDown OnKeyDown Timer OnTimer Timer1Timer chap8_3 FormCreate OnPaint FormCreate chap8_3 Delphi chap8_3 Delphi

16 Delphi P.16/16 chap8_4 (illusory correlation) chap8_5 chap8_4 Delphi Delphi Pascal Delphi Pascal Pascal Delphi Delphi

L N P Y F C T V W Z I X Pentomino Form Name Caption Position FormMain podesktopcenter

L N P Y F C T V W Z I X Pentomino Form Name Caption Position FormMain podesktopcenter 1. 1 1 1.1 5 12 60 3 20 4 15 5 12 6 10 12 L N P Y F C T V W Z I X 1.1.1 1.2 Pentomino 1.2.1 Form Name Caption Position FormMain podesktopcenter 1.2.2 unit PentominoU; interface uses Windows, Messages,

More information

B Simon (Trump ) SimonU.pas SimonP.dpr Name FormSimon Caption Position podesktopcenter uses Windows, Messages, SysUtils,

B Simon (Trump ) SimonU.pas SimonP.dpr Name FormSimon Caption Position podesktopcenter uses Windows, Messages, SysUtils, B 132 20 1 1 20.1 20.1.1 1 52 10 1 2 3... 7 8 8 8 20.1.2 1 5 6 7 3 20.1.3 1 3 8 20.1.4 13 20.1.5 4 1 (solitaire) B 133 20.2 20.2.1 Simon (Trump ) SimonU.pas SimonP.dpr 20.2.2 Name FormSimon Caption Position

More information

Microsoft PowerPoint - DELPHI�礔.ppt

Microsoft PowerPoint - DELPHIå�ºç¤”.ppt Delphi コンポーネントの基礎 Delphi の基本のさわり プログラム関連のファイルの説明 コンポーネント関連のファイルの説明 プロパティエディタ関連のファイルの説明 クラスのアクセス権の説明 クラスツリーの抜粋とファイル拡張子の説明 ちょっと作りましたコンポーネント 簡単便利なコンポーネントの実演説明 ( トラブルなければ ) 文責 寺口隆 Delphi のファイルと構文 ( プログラム ).dproj

More information

初 めての ios アプリケーション iphone Form TLabel TButton. 図. コントロールの 配 置 Button OnClick Button. 00

初 めての ios アプリケーション iphone Form TLabel TButton. 図. コントロールの 配 置 Button OnClick Button. 00 - RAD Studio で Hello world を 作 る - RAD Studio Hello world - RAD Studio Hello world RAD Studio RAD Studio FireMonkey. 図. プロジェクトの 新 規 作 成 メニュー. 図. アプリケーションの 種 類 選 択 ダイアログ 99 初 めての ios アプリケーション iphone Form

More information

25th Developer Camp

25th Developer Camp C2 Delphi/iOS テクニカルセッション 株式会社シリアルゲームズ取締役細川淳 Delphi ios アプリ開発講座 はじめに - 自己紹介 株式会社シリアルゲームズ クライアント サーバー型アプリケーションをワンストップで提供しています サーバサイドアプリケーション エンターテインメント系アプリケーション ちなみに ios / Android の技術者募集中です そこで主にクライアント OS

More information

fiš„v3.dvi

fiš„v3.dvi (2001) 49 2 261 275 Web 1 1 2001 2 21 2001 4 26 Windows OS Web Windows OS, DELPHI, 1. Windows OS. DELPHI Web DELPHI ALGOL PASCAL VISUAL BASIC C++ JAVA DELPHI Windows OS Linux OS KyLix Mac OS (ver 10) JAVA

More information

B 90 Canvas.Pen.Width := PenWidth; NewData; (* FormCreate (*********************** ******************* procedure TFormSorting.DrawOne(No : TDat

B 90 Canvas.Pen.Width := PenWidth; NewData; (* FormCreate (*********************** ******************* procedure TFormSorting.DrawOne(No : TDat B 89 14 14.1 14.1.1 SortingU SortingP 14.1.2 Form Name FormSorting Caption Position podesktopcenter 14.1.3 14.1.4 const NoMax = 400; DataMax = 600; PenWidth = 2; type TDataNo = 0..NoMax; TData = array

More information

<リスト1> AD コンバータへのデータの出力例 NEC PC98 用 mov al,22h // CLK -> 1, CS -> 0, DI -> 0 out 32h,al // シリアル ポートにデータ出力 PC/AT 互換機用 mov al,00h // CLK -> 1 mov dx,3fb

<リスト1> AD コンバータへのデータの出力例 NEC PC98 用 mov al,22h // CLK -> 1, CS -> 0, DI -> 0 out 32h,al // シリアル ポートにデータ出力 PC/AT 互換機用 mov al,00h // CLK -> 1 mov dx,3fb AD コンバータへのデータの出力例 NEC PC98 用 mov al,22h // CLK -> 1, CS -> 0, DI -> 0 out 32h,al // シリアル ポートにデータ出力 PC/AT 互換機用 mov al,00h // CLK -> 1 mov dx,3fbh out dx al // シリアル ポートにデータ出力 mov al,03h // CS -> 0,

More information

Java, Delphi, C++Builderユーザのためのメモリリーク, ボトルネックの検出手順

Java, Delphi, C++Builderユーザのためのメモリリーク, ボトルネックの検出手順 チュートリアルセッション #2 Java, Delphi, C++Builder ユーザのためのメモリリーク, ボトルネックの検出手順 講師紹介 高橋智宏 1973 年生まれ 京都大学法学部卒 エバンジェリスト兼コンサルタント兼トレーナー 学生の時購入したTurboC++2ndからの熱狂的なボーランドファン 参加しているメーリングリストやコミュニティ JBuilder ML,C++Builder ML,Delphi

More information

Embarcadero Developer Camp

Embarcadero Developer Camp 17 Th Developer Camp T5 Delphi テクニカルセッション Delphi 言語 再 入門ビギナーからエキスパートまで! 意外と知らない言語機能や落とし穴 株式会社シリアルゲームズ取締役細川淳 1 17 Th Developer Camp 1 Delphi ソースの構造 2 Delphi ソースの構造 プロジェクトファイル (.dpr) ユニット (.pas) リソースファイル

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

xl 1 program Othello6; 2 {$APPTYPE CONSOLE} 3 uses SysUtils; 4 5 type 6 TMasuNo = 0..99; // 7 TYouso = (Soto,Kara,Kuro,Siro); // 8 TBan = array [TMasu

xl 1 program Othello6; 2 {$APPTYPE CONSOLE} 3 uses SysUtils; 4 5 type 6 TMasuNo = 0..99; // 7 TYouso = (Soto,Kara,Kuro,Siro); // 8 TBan = array [TMasu xl 1 program Othello6; 2 {$APPTYPE CONSOLE 3 uses SysUtils; 4 5 type 6 TMasuNo = 0..99; // 7 TYouso = (Soto,Kara,Kuro,Siro); // 8 TBan = array [TMasuNo] of TYouso; // 10 10 9 TPlayer = Kuro..Siro; // 10

More information

CodeGear Developer Camp

CodeGear Developer Camp T2 Delphi チュートリアルセッション Delphiはじめて奮戦記 で学ぶ Delphiチュートリアル 株式会社フルネスコーチング事業部マネージャー田原孝 1 アジェンダ 株式会社フルネスについて Delphiプログラミングの基本 演習 : 計算機のテンキーを作る 演習 : 計算機の四則演算ボタンを作る 練習問題 まとめ 2 株式会社フルネスについて 事業内容 ハンズオン教育サービス コーチングサービス

More information

Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS Pascal

Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS Pascal Pascal Pascal Pascal Free Pascal CPad for Pascal Microsoft Windows OS 2010 10 1 Pascal 2 1.1.......................... 2 1.2.................. 2 1.3........................ 3 2 4 2.1................................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション セッション No.3 Delphi/400 技術セッション 実践!iOS / Android ネイティブ機能開発 ~ バーコード読み取り 署名 オフライン処理 ~ 株式会社ミガロ. RAD 事業部技術支援課吉原泰介 アジェンダ 1. スマートデバイスのネイティブ機能 2.Delphi/400 ネイティブ機能の開発テクニック 2-1. カメラを使ったバーコード読み取り機能 2-2. タッチ操作を使った画面署名機能

More information

開発者が知りたい実践プログラミングテクニック! ~明日から使えるテクニック集~

開発者が知りたい実践プログラミングテクニック! ~明日から使えるテクニック集~ セッション No.4 Delphi/400 技術セッション 開発者が知りたい実践プログラミングテクニック! ~ 明日から使えるテクニック集 ~ 株式会社ミガロ. システム事業部システム 2 課辻野健 アジェンダ Delphi/400 技術セッション 1. ユーザビリティの向上 1-1. 同時に複数画面を起動する方法 1-2. グリッド操作時の自動フォーカス制御方法 2. 開発効率 保守性の向上 2-1.

More information

untitled

untitled ST0001-1- -2- -3- -4- BorderStyle ControlBox, MinButton, MaxButton True False True False Top Left Height,Width Caption Icon True/False -5- Basic Command1 Click MsgBox " " Command1 Click Command1 Click

More information

Microsoft PowerPoint - visualprogram.ppt

Microsoft PowerPoint - visualprogram.ppt ビジュアルプログラミングとは Borland Delphi 6 でビジュアルプログラミング フォーム等を使うプログラム フォーム等の配置はマウス操作で行う 振る舞い ( ボタンを押したときの振る舞いなど ) をプログラムで書く フォームの例 ) フォーム 概要 TMemo コンポーネント ( 出力用 ) TButton コンポーネント ( 出力用 ) 例題 1. ボタンを押すと, メッセージを表示するプログラム

More information

Microsoft PowerPoint - はじめてのDataSnapアプリケーション_

Microsoft PowerPoint - はじめてのDataSnapアプリケーション_ 第 27 回エンバカデロ デベロッパーキャンプ A2 Delphi/C++Builder テクニカルセッション はじめての DataSnap 2013 年 X 月 X 日 田中芳起 Ver.1.0.0 1 http://www.avsoft.jp DataSnap の概要 多層型のデータベースアプリケーションを構築するためのフレームワーク Delphi3 で実装された技術で Delphi5 までは

More information

ステップアップ! モバイルアプリケーション開発

ステップアップ! モバイルアプリケーション開発 セッション No.3 Delphi/400 技術セッション ステップアップ! モバイルアプリケーション開発 株式会社ミガロ. RAD 事業部技術支援課吉原泰介 はじめに モバイル機器の企業利用は数年前に比べると格段に増え すでに 7 割近くの企業で導入が進んでいます 同時にモバイルアプリケーションの需要 自社開発も増加しており Delphi/400 テクニカルサポートでもお問い合わせが増えてきました

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション A5 Delphi テクニカルセッションクロスプラットフォーム開発で役立つ Delphi 新機能活用ポイント 第 34 回エンバカデロ デベロッパーキャンプ 株式会社シリアルゲームズ App Div 3 マネージャー取締役細川淳 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します はじめに 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します アジェンダ

More information

BASICとVisual Basic

BASICとVisual Basic Visual Basic BASIC Visual Basic BASICBeginner's All purpose Symbolic Instruction Code Visual Basic Windows BASIC BASIC Visual Basic Visual Basic End Sub .Visual Basic Visual Basic VB 1-1.Visual Basic

More information

知って得する!現役ヘルプデスクが答えるDelphiテクニカルエッセンス 9.0

知って得する!現役ヘルプデスクが答えるDelphiテクニカルエッセンス 9.0 セッション No.3 知って得する! 現役ヘルプデスクが答える Delphi テクニカルエッセンス 9.0 株式会社ミガロ. RAD 事業部技術支援課 吉原泰介 アジェンダ お客様より年間 1,000 件以上お問合せ頂いているテクニカルサポートからの技術フィードバック! Q1. PageControl 応用テクニック Q2. DLL モジュールの開発手法 Q1. PageControl 応用テクニック

More information

第10回 コーディングと統合(WWW用).PDF

第10回 コーディングと統合(WWW用).PDF 10 January 8, 2004 algorithm algorithm algorithm (unit testing) (integrated testing) (acceptance testing) Big-Bang (incremental development) (goto goto DO 50 I=1,COUNT IF (ERROR1) GO TO 60 IF (ERROR2)

More information

橡挿入法の実践

橡挿入法の実践 PAGE:1 7JFC1121 PAGE:2 7JFC1121 PAGE:3 7JFC1121 Kadai_1.pas program input_file;{7jfc1121 19 20 { type item = record id : integer; math : integer; english : integer; var wfile data flag id_no filename :

More information

25th Developer Camp

25th Developer Camp C1 Delphi/iOS チュートリアルセッション エンバカデロ テクノロジーズエヴァンジェリスト高橋智宏 アジェンダ OS X 側の準備 Windows 側の準備 画面の作り方 ( メインフォームとサブフォームム ) デバッグの基礎 ( ログの出力と確認 ) デバイスの回転に対応するには? iphone, ipad への対応方法 アプリのローカライズ手順 Delphi 言語の変更点 ( モバイル向け

More information

t1

t1 T1 Delphi/C++ テクニカルセッション VCL ユーザーのための FireMonkey 入門 株式会社シリアルゲームズアプリケーション第 3 開発部取締役細川淳 アジェンダ はじめに 画像付きエディットを作る アニメーションを見る まとめ 2 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します はじめに 3 本文書の一部または全部の転載を禁止します 本文書の著作権は

More information

橡ソート手順比較

橡ソート手順比較 PAGE:1 [Page] 20 1 20 20 QuickSort 21 QuickSort 21 21 22 QuickSort 22 QuickSort 22 23 0 23 QuickSort 23 QuickSort 24 Order 25 25 26 26 7 26 QuickSort 27 PAGE:2 PAGE:3 program sort; { { type item = record

More information

Windows Web Windows Windows WinSock

Windows Web Windows Windows WinSock Windows kaneko@ipl.t.u-tokyo.ac.jp tutimura@mist.t.u-tokyo.ac.jp 2002 12 4 8 Windows Web Windows Windows WinSock UNIX Microsoft Windows Windows Windows Windows Windows.NET Windows 95 DOS Win3.1(Win16API)

More information

情報科学概論 第1回資料

情報科学概論 第1回資料 1. Excel (C) Hiroshi Pen Fujimori 1 2. (Excel) 2.1 Excel : 2.2Excel Excel (C) Hiroshi Pen Fujimori 2 256 (IV) :C (C 65536 B4 :2 (2 A3 Excel (C) Hiroshi Pen Fujimori 3 Tips: (1) B3 (2) (*1) (3) (4)Word

More information

Embarcadero Developer Camp

Embarcadero Developer Camp 第 33 回エンバカデロ デベロッパーキャンプ A1 Delphi/C++ テクニカルセッション 旧 Delphi アプリケーション移 の実際例 実例から学ぶ改修のポイント 2016 年 12 月 9 日田中芳起 1 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します Copyright 2016, Yoshiki Tanaka All rights reserved.

More information

新バージョンDelphi/400 XE7ご紹介 - マルチデバイスデザイナ機能で開発効率アップ! -

新バージョンDelphi/400 XE7ご紹介 - マルチデバイスデザイナ機能で開発効率アップ! - セッション No.2 新バージョン Delphi/400 XE7 ご紹介 - マルチデバイスデザイナ機能で開発効率アップ! - 株式会社ミガロ. RAD 事業部技術支援課吉原泰介 アジェンダ 1. マルチデバイス開発とは 2. 新バージョン Delphi/400 XE7 2-1.FireUI によるマルチデバイス開発機能 2-2. アップテザリングによるアプリ連携機能 3. まとめ 1. マルチデバイス開発とは

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B

1. A0 A B A0 A : A1,...,A5 B : B1,...,B 1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 3. 4. 5. A0 A B f : A B 4 (i) f (ii) f (iii) C 2 g, h: C A f g = f h g = h (iv) C 2 g, h: B C g f = h f g = h 4 (1) (i) (iii) (2) (iii) (i) (3) (ii) (iv) (4)

More information

Delphi/400 テクニック公開 Windows7に最適化した アプリ開発・運用テクニック

Delphi/400 テクニック公開 Windows7に最適化した アプリ開発・運用テクニック セッション No.4 Delphi/400 テクニック公開 Windows7 に最適化した アプリ開発 運用テクニック 株式会社ミガロ. システム事業部プロジェクト推進室尾崎浩司 アジェンダ 1. はじめに 2. Windows7 は ここが変わった! 3. Windows7 に対応させる開発ノウハウ 4. Windows7 対応版 Delphi/400 versionxe を使用するメリット 5.

More information

21st Embarcadero Developse Camp W5

21st Embarcadero Developse Camp W5 第 21 回エンバカデロ デベロッパーキャンプ [W5] ワークショップ FireMonkey アプリケーション構築実習 目次 1. 概要説明 1-1. FireMonkey とは 2. 2D のピザアプリケーション 2-1. 最初のピザアプリケーション演習 1. 2D のピザアプリケーションの作成 2-2. 効果とスタイルの使用演習 2. 効果の適用演習 3. スタイルの適用 2-3. アニメーションの使用演習

More information

dynabookガイド

dynabookガイド 1 2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 SHIFT SHIFT 27 28 SHIFT SHIFT 29 30 31 32 D Y N A B O O K BACKSPACE DEL 33 34 35 36 37 38 39 40 ENTER SHIFT SHIFT 41 42 43 44 FN F8 FN

More information

Windows開発者のためのFireMonkeyモバイル開発入門

Windows開発者のためのFireMonkeyモバイル開発入門 A1 Delphi チュートリアルセッション Windows 開発者のための FireMonkey モバイル開発入門 エンバカデロ テクノロジーズエヴァンジェリスト高橋智宏 2 アジェンダ Delphi + FireMonkey の仕組み 各種コンポーネント, スタイル, プロジェクトマネージャ ios アプリの開発 準備するもの 実機に転送 Android アプリの開発 準備するもの 実機に転送

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

f5

f5 F5 Delphi/C++ テクニカルセッション RAD Studio で始めるモバイル開発 ~ コンポーネントで簡単入門! 勘所も押さえよう 株式会社シリアルゲームズ取締役細川淳 アジェンダ はじめに はじめての FireMonkey で作るアプリケーション ios アプリの作法 Android アプリの作法 共通の作法 まとめ 2 はじめに 3 Delphi / C++Builder このセッションの対象

More information

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー

Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバー Visual Studio2008 C# で JAN13 バーコードイメージを作成 xbase 言語をご利用の現場でバーコードの出力が必要なことが多々あります xbase 言語製品によっては 標準でバーコード描画機能が付加されているものもあるようで す C# では バーコードフォントを利用したりバーコード OCX や バーコード対応レ ポートツールが豊富にありますので それほど困ることは無いと思われます

More information

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略   

LogisticaTRUCKServer-Ⅱ距離計算サーバ/Active-Xコントロール/クライアント 概略       - LogisticaTRUCKServer-Ⅱ(SQLServer 版 ) 距離計算サーハ API.NET DLL WindowsForm サンフ ルフ ロク ラム - 1 - LogisticaTRUCKServer-Ⅱ 距離計算サーハ.NET DLL WindowsForm VisualBasic での利用方法 LogisticaTRUCKServer-Ⅱ 距離計算.NET DLLのサンプルプログラムの参照サンフ

More information

2005 D Pascal CASL ( ) Pascal C 3. A A Pascal TA TA TA

2005 D Pascal CASL ( ) Pascal C 3. A A Pascal TA TA TA 2005 D 1 1.1 1.2 Pascal CASL ( ) Pascal 1. 2005 10 13 2006 1 19 12 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA TA TA sdate@ist.osaka-u.ac.jp nakamoto@image.med.osaka-u.ac.jp h-kido@ist.osaka-u.ac.jp m-nakata@ist.osaka-u.ac.jp

More information

FPGA TU0135 (v1.0) FPGA Desktop NanoBoard FPGA CUSTOM_INSTRUMENT FPGA GUI ( ) IO GUI IO DelphiScript Desktop NanoBoard NB2DSK01 FPGA Desktop

FPGA TU0135 (v1.0) FPGA Desktop NanoBoard FPGA CUSTOM_INSTRUMENT FPGA GUI ( ) IO GUI IO DelphiScript Desktop NanoBoard NB2DSK01 FPGA Desktop TU0135 (v1.0) 2008 5 17 Desktop NanoBoard FPGA CUSTOM_INSTRUMENT GUI ( ) IO GUI IO DelphiScript Desktop NanoBoard NB2DSK01 Desktop NanoBoard 8 DIP LED DAUGHTER BD TEST/RESET DIP ( ) DAUGHTER BD TEST/RESET

More information

Microsoft Word 練習問題の解答.doc

Microsoft Word 練習問題の解答.doc 演習問題解答 練習 1.1 Label1.Text = Val(Label1.Text) + 2 練習 1.2 コントロールの追加 Private Sub Button2_Click( 省略 ) Handles Button2.Click Label1.Text = Val(Label1.Text) - 2 練習 2.1 TextBox3.Text = Val(TextBox1.Text) * Val(TextBox2.Text)

More information

1.dll の配置場所配布時はプログラムの実行フォルダーへ配置 2. 開発環境での使用 プロジェクトのプロパティーで [USBPIO.dll] を参照追加してください 開発環境 dll ファイルの場所 VB.Net Express Edition 境プロジェクトのフォルダ \bin\release VB.Netebugビルドの場合プロジェクトのフォルダ \bin\debug VB.Net Releaseビルドの場合プロジェクトのフォルダ

More information

コンピュータ概論

コンピュータ概論 5.1 VBA VBA Check Point 1. 2. 5.1.1 ( bug : ) (debug) On Error On Error On Error GoTo line < line > 5.1.1 < line > Cells(i, j) i, j 5.1.1 MsgBox Err.Description Err1: GoTo 0 74 Visual Basic VBA VBA Project

More information

開発者が知りたい実践プログラミングテクニック!

開発者が知りたい実践プログラミングテクニック! セッション No.4 Delphi/400 テクニカルセッション開発者が知りたい実践プログラミングテクニック! 株式会社ミガロ. RAD 事業部技術支援課吉原泰介 Delphi/400 テクニカルサポートより現場で役立つ実践プログラムテクニックをご紹介 サポートには月 100 件弱 年間 1000 件以上のお問合せ Delphi/400 問合せ内容比率 コンホ ーネント 2% サート ハ ーティ 12%

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 5 3. 4. 5. A0 (1) A, B A B f K K A ϕ 1, ϕ 2 f ϕ 1 = f ϕ 2 ϕ 1 = ϕ 2 (2) N A 1, A 2, A 3,... N A n X N n X N, A n N n=1 1 A1 d (d 2) A (, k A k = O), A O. f

More information

TOEIC

TOEIC TOEIC 1 1 3 1.1.............................................. 3 1.2 C#........................................... 3 2 Visual Studio.NET Windows 5 2.1....................................... 5 2.2..........................................

More information

テクニカルセミナーベストセレクション

テクニカルセミナーベストセレクション セッション No.1 テクニカルセミナーベストセレクション 株式会社ミガロ. RAD 事業部技術支援課吉原泰介 第 20 回 Delphi/400 テクニカルセミナー アジェンダ テクニカルセミナー 10 年の歩み テクニカルセミナー厳選テクニック まとめ 第 20 回 Delphi/400 テクニカルセミナー テクニカルセミナー10年の歩み Delphi/400をはじめとするミガロ.製品をお使 いの皆様へ

More information

3 4 6 10 11 14 16 19

3 4 6 10 11 14 16 19 PowerPoint2007 3 4 6 10 11 14 16 19 PowerPoint PowerPoint PowerPoint 1 PowerPoint 1 1 2 3 4 5 2 [ ] 3 4 8 1 2 3 5 2 6 1 7 8 Office PowerPoint 2007 9 10 2 3 11 6 12 Ctrl 2 Shift 2 5 2 Shift 5 2 Delete 13

More information

2

2 1 2 10 14 945 3000 2012 3 10 4 5 6 7 8 9 10 11 12 2011 11 21 12301430 (1215 ) 13 6 27 17 () ( ) ( ) (112360) 2 (1157) (119099) ((11861231) )( ) (11641205) 3 (1277) 3 4 (1558) (1639)() 12 (1699)( ) 7 (1722)

More information

2009 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA

2009 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA 2009 D 1 1.1 1.2 Pascal CASL II ( ) Pascal 1. 2009 10 15 2010 1 29 16 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA enshud@image.med.osaka-u.ac.jp TA enshu-d@image.med.osaka-u.ac.jp nakamoto@image.med.osaka-u.ac.jp

More information

2011 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA enshu-

2011 D Pascal CASL II ( ) Pascal C 3. A A Pascal TA TA enshu- 2011 D 1 1.1 1.2 Pascal CASL II ( ) Pascal 1. 2011 10 6 2011 2 9 15 2. C 3. A A 2 1 2 Pascal 1.3 1. 2. TA enshud@fenrir.ics.es.osaka-u.ac.jp TA enshu-d@fenrir.ics.es.osaka-u.ac.jp higo@ist.osaka-u.ac.jp

More information

28th Embarcadero Developer Camp

28th Embarcadero Developer Camp A4 C++ テクニカルセッション Visual C++ ユーザーもバッチリ! C++Builder によるマルチデバイス開発 (ver007) 株式会社 NTT データビジネスブレインズシニア スペシャリスト伊賀敏樹 1 はじめに 2 はじめに 発表内容については私自身の見解であり 必ずしも所属企業および所属組織における立場 戦略 意見を代表するものではありません 3 はじめに アジェンダ 自己紹介

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

ios 12, Android 9 時代の 今からでも始められるモバイル開発入門 第 36 回エンバカデロ デベロッパーキャンプ 株式会社シリアルゲームズ取締役 / AppDiv3 マネージャー細川淳 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します

ios 12, Android 9 時代の 今からでも始められるモバイル開発入門 第 36 回エンバカデロ デベロッパーキャンプ 株式会社シリアルゲームズ取締役 / AppDiv3 マネージャー細川淳 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します ios 12, Android 9 時代の 今からでも始められるモバイル開発入門 第 36 回エンバカデロ デベロッパーキャンプ 株式会社シリアルゲームズ取締役 / AppDiv3 マネージャー細川淳 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します アジェンダ 最近のモバイル事情 Delphi 10.3 Rio について Delphi 10.3 Rio によるモバイル開発

More information

@(h) Select.vb ver 1.1 ( 07.09.15 ) @(h) Select.vb ver 1.0 ( 07.09.13 ) @(s) Option Explicit Private Structure SYMBOLINFO Dim SyDataType As String Dim

@(h) Select.vb ver 1.1 ( 07.09.15 ) @(h) Select.vb ver 1.0 ( 07.09.13 ) @(s) Option Explicit Private Structure SYMBOLINFO Dim SyDataType As String Dim A HotDocument A HotDocument A HotDocument A HotDocument A HotDocument A HotDocument A HotDocument A HotDocument @(h) Select.vb ver 1.1 ( 07.09.15 ) @(h) Select.vb ver 1.0 ( 07.09.13 ) @(s) Option Explicit

More information

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++

More information

*.....J.....S.q..2013B_....

*.....J.....S.q..2013B_.... 1 1 2 2 3 3 4 4 5 6 5 7 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

More information

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1

(Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 (Basic Theory of Information Processing) Fortran Fortan Fortan Fortan 1 17 Fortran Formular Tranlator Lapack Fortran FORTRAN, FORTRAN66, FORTRAN77, FORTRAN90, FORTRAN95 17.1 A Z ( ) 0 9, _, =, +, -, *,

More information

Public Class Class4SingleCall Inherits MarshalByRefObject Public Sub New() End Sub Public Function OneProc(ByVal The As A SC) As A SC Dim The As New A SC The.answer = The.index * 2 + 1000 Return The End

More information

Delphi/400開発ノウハウお教えします 「メニュー」開発のテクニック

Delphi/400開発ノウハウお教えします 「メニュー」開発のテクニック セッション No.2 Delphi/400 開発ノウハウお教えします メニュー 開発のテクニック 株式会社ミガロ. システム事業部プロジェクト推進室 小杉智昭 アジェンダ メニュー の種類と基本的な作成方法 メニュー 開発テクニックのご紹介 1メンテナンス性を考慮したメニュー押下制御 2ツリー形式で動的に作成するメニュー 3 使い勝手を向上させるメニュー アプリケーション開発スタイルに応じた メニュー

More information

untitled

untitled Fortran90 ( ) 17 12 29 1 Fortran90 Fortran90 FORTRAN77 Fortran90 1 Fortran90 module 1.1 Windows Windows UNIX Cygwin (http://www.cygwin.com) C\: Install Cygwin f77 emacs latex ps2eps dvips Fortran90 Intel

More information

Embarcadero Developer Camp

Embarcadero Developer Camp A4 Delphi テクニカルセッション 開発効率を飛躍的に高めるコンポーネント自作テクニック ( 株 ) シリアルゲームズ細川淳 コンポーネントとは? コンポーネントとは コンポーネントとは プログラムに使える部品 1 つの機能を表した再利用可能なプログラム 単体ではなく 他のプログラムやコンポーネントと組み合わせて使う 例えば TMemo を TForm に乗せて使うなど Delphi では特にデザイナでドロップできる物を指す

More information

10th Developer Camp - B5

10th Developer Camp - B5 B5 PHP テクニカルセッション Delphi for PHP で作るリッチコンテンツブログ エンバカデロ テクノロジーズエヴァンジェリスト高橋智宏 アジェンダ コンポーネントをフル活用しよう お馴染み データモジュール Blog データの表示用ページ Blog データの登録用ページ 2 コンポーネントをフル活用しよう 開発環境の進歩と退化 80 年代の IDE が登場エディタ + コマンドライン型の開発から脱却

More information

橡WINAPLI.PDF

橡WINAPLI.PDF Windows Visual Basic 2.0 8 7 29 8 2 Windows 1. Windows 1 1.1. Windows 1 1.2. 1 2. Visual Basic 2 2.1. VisualBasic 2 2.2. Visual Basic 2 2.2.1. 2 2.2.2. 2 2.2.3. 2 2.2.4. 2 2.2.5. 2 2.3. Visual Basic 3

More information

45 VBA Fortran, Pascal, C Windows OS Excel VBA Visual Basic Excel VBA VBA Visual Basic For Application Microsoft Office Office Excel VBA VBA Excel Acc

45 VBA Fortran, Pascal, C Windows OS Excel VBA Visual Basic Excel VBA VBA Visual Basic For Application Microsoft Office Office Excel VBA VBA Excel Acc \n Title 文 系 学 生 のための VBA プログラミング 教 育 についての 考 察 Author(s) 五 月 女, 仁 子 ; Soutome, Hiroko Citation 商 経 論 叢, 46(1): 45-60 Date 2010-10-31 Type Departmental Bulletin Paper Rights publisher KANAGAWA University

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - SPREAD Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

netcdf

netcdf 1. Anetcdf.rb netcdf C ruby open new create NetCDF C filename String NetCDF NetCDF_open mode r r, w share false true or false open open netcdf filename String NetCDF NetCDF_create noclobber false true

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

2 1 Web Java Android Java 1.2 6) Java Java 7) 6) Java Java (Swing, JavaFX) (JDBC) 7) OS 1.3 Java Java

2 1 Web Java Android Java 1.2 6) Java Java 7) 6) Java Java (Swing, JavaFX) (JDBC) 7) OS 1.3 Java Java 1 Java Java 1.1 Java 1) 2) 3) Java OS Java 1.3 4) Java Web Start Web / 5) Java C C++ Java JSP(Java Server Pages) 1) OS 2) 3) 4) Java Write Once, Run Anywhere 5) Java Web Java 2 1 Web Java Android Java

More information

manua6.PDF

manua6.PDF Object Pascal A6-1 A6-2 Delphi (X1,Y1) (X2,Y2) (X1,Y1) (X2,Y2) With 1 2 (0,0) 1 2 1 A6-3 A6-4 A6-5 (X1,Y1) (X2,Y2) claqua clblue clblack cldkgray clfuchsia clgray clgreen cllime clltgray clmaroon clnavy

More information

1. A0 A B A0 A : A1,...,A5 B : B1,...,B

1. A0 A B A0 A : A1,...,A5 B : B1,...,B 1. A0 A B A0 A : A1,...,A5 B : B1,...,B12 2. 3. 4. 5. A0 A, B Z Z m, n Z m n m, n A m, n B m=n (1) A, B (2) A B = A B = Z/ π : Z Z/ (3) A B Z/ (4) Z/ A, B (5) f : Z Z f(n) = n f = g π g : Z/ Z A, B (6)

More information

Visio-.v...[..1.vsd

Visio-.v...[..1.vsd Delphi Application への WinRunner の適用手法の検討 オブジェクト認識の仕組み オブジェクトの分類 Add-in の種類と概要 Add-in 適用パターンの比較 コスト業務フロー 表紙 Script GUI MAP Application #### TSL(Test Script Language) #### # New Name set_window ("New Name");

More information

ルーレットプログラム

ルーレットプログラム ルーレットプログラム VB 2005 4 プログラムの概要 カジノの代表的なゲーム ルーレット を作成する 先ず GO! ボタンをクリックすると ルーレット盤上をボールが回転し 一定時間経過すると ボールが止まり 出目を表示するプログラムを作成する 出目を 1~16 大小 偶数奇数の内から予想して 予め設定した持ち点の範囲内で賭け点を決め 賭け点と出目に依り 1 点賭けの場合は 16 倍 其他は 2

More information

2004.11.29 4 Communication1 program communication1(input, output); procedure double; r1, r2: real; r2 := 2 * r1; double; end. Communication1 program communication1(input, output); procedure double; r1,

More information

A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3,

A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 40 2 1. 2 2. 52 3. A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 4. 13 5. 6. 7. 8. 9. 13 10. 11. 12. 1 VC++ VC++ Visual C++ Professional 2010 Visual C++ 2010 express Windows whist 2 OK] 3 Form1 size 800, 500

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 開発者が知りたい実践プログラミングテクニック! ~ 明日から使えるテクニック集 ~ 尾崎浩司 ( おざきこうじ ) 多くの開発者から聞く共通の悩み アプリケーションのレスポンスを改善したい 処理に時間がかかると 画面の応答がなくなってしまう プロジェクトを効率よくメンテナンスしたい 画面や機能が多くなってくると プロジェクトの管理が煩雑になる プログラムの入れ替えをシンプルに行いたい 都度ユーザーにプログラムの置き換えを依頼しないといけない

More information

K227 Java 2

K227 Java 2 1 K227 Java 2 3 4 5 6 Java 7 class Sample1 { public static void main (String args[]) { System.out.println( Java! ); } } 8 > javac Sample1.java 9 10 > java Sample1 Java 11 12 13 http://java.sun.com/j2se/1.5.0/ja/download.html

More information

22nd Embarcadero Developer Camp G6

22nd Embarcadero Developer Camp G6 17 Th Developer Camp ライトニングトーク WMI を もっと使おう! 株式会社シリアルゲームズ 取締役細川淳 1 WMI? WMI とは Windows Management Instrumentation の略 Windows Driver Model の拡張の一種 Windows が管理する情報へのインターフェース 例えば CPU の情報であったり 物理ハードディスクの情報などなどが取れます

More information

3軸加速度センサーモジュール MM-2860 書込み済みマイコンプログラム通信コマンド概要

3軸加速度センサーモジュール MM-2860 書込み済みマイコンプログラム通信コマンド概要 アプリケーションノートミニマイコン評価カード CT-298 3 軸加速度センサーモジュール MM-2860 書込み済みマイコンプログラム通信コマンド概要 1. 概要 CT-298 DIP SF9S08C 3 MM-2860 HC9S08QG8-XYZ2_v1.1 PC PC PC HC9S08QG8-XYZ2_v1.1 CodeWorrior http://www.freescale.co.jp/products/8bit/9s08qg.html

More information

ex01.dvi

ex01.dvi ,. 0. 0.0. C () /******************************* * $Id: ex_0_0.c,v.2 2006-04-0 3:37:00+09 naito Exp $ * * 0. 0.0 *******************************/ #include int main(int argc, char **argv) { double

More information

21st Embarcadero Developer Camp

21st Embarcadero Developer Camp 17 Th Developer Camp T2 テクニカルセッション 実践!Delphi デバッグテクニック 株式会社シリアルゲームズ 取締役細川淳 1 17 Th Developer Camp 1 IDE 統合デバッガ 2 Delphi の IDE 統合デバッガ IDE 統合デバッガについて 表示 デバッグ で表示される項目ごとに見ていきます 3 17 Th Developer Camp 1 ブレークポイント一覧

More information

CodeGear Developer Camp

CodeGear Developer Camp T2 Delphi テクニカルセッション 知って得する! 現役ヘルプデスクが答える Delphi テクニカルエッセンス 株式会社ミガロ RAD 事業部技術支援課顧客サポート吉原泰介 1 アジェンダ ミガロについて 問合せ分析 よくある問合せQ&A Q1 Excel 出力パフォーマンスを改善したい Q2 DBGrid でこんなことがしたい! Q3 Edit で右寄せ表示できますか? Q4 クライアント端末の情報を取得したい!

More information

17th Embarcadero Developer Camp

17th Embarcadero Developer Camp 17 Th Developer Camp B3 Delphi/C++ テクニカルセッション Windows サービスアプリケーションの作成と連携アプリケーションへの応用 株式会社シリアルゲームズ取締役 細川淳 1 17 Th Developer Camp 1 Windows サービスについて 2 Windows サービスとは ログインせずに動作できます ユーザーは LOCAL_SERVICE など特別なユーザーとして実行されます

More information

チャレンジ!dbExpress接続

チャレンジ!dbExpress接続 セッション No.2 BDE 接続との違いから応用プログラムの作成まで チャレンジ!dbExpress 接続 株式会社ミガロ. システム事業部システム 3 課 小杉智昭 100% IBM i Company 本文書の一部または全部の転載を禁止します 本文書の著作権は 著作者に帰属します 1 アジェンダ dbexpress 接続とは? なぜ dbexpress 接続なのか BDE 接続との違い 実践テクニックあれこれ

More information

ブロック パニック

ブロック パニック ブロックパニック VB 2005 9 プログラムの概要 壁が迫り来る不思議な空間のオリジナルゲーム ブロックパニック を作成する スタートボタンをクリックし上下左右の矢印キーで白猿を移動させる スペースキーを押すと 向いて居る方向の壁が後退する 左右の壁が合わさると ゲームは終了する 一般的に 実用プログラムに比較するとゲームプログラムは 高度なテクニックを要求される事が多い 此処では ゲームプログラムを作成する事に依り

More information

VB 資料 電脳梁山泊烏賊塾 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るの

VB 資料 電脳梁山泊烏賊塾 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るの 音声認識 System.Speech の利用 System.Speech に依るディクテーション ( 音声を文字列化 ).NetFramework3.0 以上 (Visual Studio 2010 以降 ) では 標準で System.Speech が用意されて居るので 此れを利用して音声認識を行うサンプルを紹介する 下記の様な Windows フォームアプリケーションを作成する エディタを起動すると

More information

橡vb_kikai0.PDF

橡vb_kikai0.PDF Visual Basic OS Windows Visual Basic GPIBRS232C A/D Visual Basic Windows Visual Basic Visual Basic Visual Basic Visual Basic Windows GUI( ) OS Visual Basic Form Form 1 Visual Basic Microsoft Visual Basic

More information