CANoe/CANalyzer as a COM Server

Size: px
Start display at page:

Download "CANoe/CANalyzer as a COM Server"

Transcription

1 Restrictions Abstract Table of Contents 1 2 CANoe/CANalyzer as a COM Server Version 1.2 Application Note AN-AND Public Document This application note is a general introduction to the COM server functionality of CANoe and CANalyzer using Microsoft Visual Basic examples COM (Component Object Model) COM CANoe/CANalyzer Microsoft Visual BASIC COM (CANoe ) CANoe/CANalyzer CAPL CAN Microsoft Visual Basic COM Copyright Vector CANtech, Inc. Contact Information: or

2 CANoe/CANalyzer as a COM Server CANoe CANalyzer CAN LINMOST FlexRay CANalyzer CANoe CANoe CANoe/CANalyzer COM COM Microsoft Visual Basic CANoe/CANalyzer COM 1.2 COM (Component Object Model) COM Microsoft Application Note AN-AND

3 CANoe/CANalyzer as a COM Server 1.3 COM CANoe/CANalyzer CANoe/CANalyzer 3.0 COM COM CANoe/CANalyzer / COM CANoe/CANalyzer CANoe/CANalyzer CANoe/CANalyzer COM Microsoft Windows Script VBScript Jscript Microsoft Windows 98Windows NTWindows 2000 Microsoft Excel Microsoft Word Microsoft Visual BasicMicrosoft Visual C++ Borland Delphi 2 Microsoft Visual BASIC COM 2.1 Microsoft Visual Basic Microsoft Windows Rapid Application Development (RAD) COM Microsoft Visual Basic CANoe/CANalyzer COM CANoe/CANalyzer COM COM 3 COM 1) CANController.Baudrate 2) Measurement.Start 3) Application.OnQuit COM COM COM CANoe CANalyzer Application Note AN-AND

4 CANoe/CANalyzer as a COM Server 1 CANalyzer Type Library Microsoft Visual Basic COM Microsoft Visual Basic CANalyzer ( CANoe) Microsoft Visual Basic CANalyzer/CANoe Type Library Microsoft Visual Basic COM CANalyzer/CANoe COM Visual Basic COM Application Dim gcanapp As CANalyzer.Application COM Application Microsoft Visual Basic Set gcanapp = New Application CANalyzer CANalyzer COM CANoe/CANalyzer COM COM Application Open() gcanapp.open ("C:\Program Files\CANalyzer\Demo_CL\motbus.cfg") CAPL (CAN Application Programming Language CANoe/CANalyzer ) CAPL Application Note AN-AND

5 CANoe/CANalyzer as a COM Server COM CAPL Compile() CAPL Application gcanapp CAPL gcanapp.capl.compile Measurement / CAPL Measurement Application gcanapp Measurement Measurement Start() Stop() gcanapp.measurement.start COM Application Quit() CANalyzer CANalyzer Measurement Running CANalyzer If gcanapp.measurement.running Then stop the CANalyzer measurement gcanapp.measurement.stop quit the CANalyzer application gcanapp.quit 2.3 CANalyzer CANdb CANdb.DBC CANdb CANalyzer CAN CAN 8 CAN 1 CANdb Application Note AN-AND

6 CANoe/CANalyzer as a COM Server 2 CANdb++CAN 2 CANdb++ Database Editor CANdb Window CAN EngineData Window CANdb CAN EngineData ID 64 (hex) 4 4 EngSpeed 16 (2 ) EngineData CAN 0 1 CANdb EngSpeed CANdb CAN CANdb CAN CAN CANoe/CANalyzer CANdb COM CANdb Visual Basic Signal Signal Dim gengspeedsignal As CANalyzer.Signal Bus GetSignal() CAN gengspeedsignal CANalyzer/CANoe CANdb Bus Application gcanapp Bus Set gengspeedsignal = gcanapp.bus.getsignal(1, "EngineData", "EngSpeed") Application Note AN-AND

7 CANoe/CANalyzer as a COM Server GetSignal() 3 gengspeedsignal Signal Value lblengspeeddisplaycontrol.caption = gengspeedsignal.value COM 2.7 CAN COM CAPL Visual Basic CAPL CAPL CAN 2.4 (CANoe ) CANoe CAN CAN CAN CAN ( ) CANoe COM Application Note AN-AND

8 CANoe/CANalyzer as a COM Server 3 CANdb++ CANdb 3 CANdb++ Database Editor CANdb GUI (Graphical User Interface) CANoe GUI ( ) CANdb GUI CAPL (CAN Access Programming Language) 4 GUI 4 GUI 0 Env_Switch0 Env_Switch0 0 1 CAPL COM Microsoft Visual Basic GUI COM CAN CAN Visual Basic EnvironmentVariable Signal Dim gswitch0envvar As CANoe.EnvironmentVariable Application Note AN-AND

9 CANoe/CANalyzer as a COM Server Environment GetVariable() gswitch0envvar CANoe CANdb Environment Application gcanapp Environment Set gswitch0envvar = gcanapp.environment.getvariable("env_switch0") GetVariable() 1 CANdb gswitch0envvar EnvironmentVariable Value gswitch0envvar.value = CANoe/CANalyzer COM CANalyzer/CANoe Measurement OnStart CANalyzer/CANoe COM CANalyzer/CANoe COM Visual Basic COM COM 2.2 Application Dim gcanapp As CANalyzer.Application Visual Basic WithEvents Dim WithEvents gcanapp As CANalyzer.Application COM Visual Basic Visual Basic <object variable name>_<event name>() Application OnQuit Private Sub gcanapp_onquit() create application specific OnQuit event handler here.. End Sub Visual Basic CANalyzer COM 2.6 CAPL CAPL CANalyzer/CANoe CAPL CAN CAN CAPL COM COM Microsoft Visual Basic CAPL COM CAPL CANalyzer/CANoe CAPL 5 CAPL CAPL Application Note AN-AND

10 CANoe/CANalyzer as a COM Server 5 CAPL COM CAPL CAPLFunction CAPL CAPL CAPL GetFunction() GetFunction() CAPL CAPL Measurement OnInit Measurement Visual Basic WithEvents Application Note AN-AND

11 CANoe/CANalyzer as a COM Server CAPL CAPL CAPLFunction Call() CANalyzer objects Dim WithEvents gcanapp As CANalyzer.Application Dim WithEvents gcanmeasurement As CANalyzer.Measurement Dim gwritetextfunction As CANalyzer.CAPLFunction Initialization of CANalyzer objects Set gcanapp = New Application Set gcanmeasurement = gcanapp.measurement Measurement OnInit event handler Private Sub gcanmeasurement_oninit() assign CAPL function Set gwritetextfunction = gcanapp.capl.getfunction("writetext") End Sub Call WriteText() CAPL function gwritetextfunction.call CAPL CAPL 10 CAPL Microsoft Visual Basic CAPL CAPL long byte (1 ) int(eger) (2 ) long (4 ) Microsoft Visual Basic Microsoft Visual Basic CAPL CANalyzer objects Dim WithEvents gcanapp As CANalyzer.Application Dim WithEvents gcanmeasurement As CANalyzer.Measurement Dim gmultiplyfunction As CANalyzer.CAPLFunction Dim gmultiplyresult As Integer Initialization of CANalyzer objects Set gcanapp = New Application Set gcanmeasurement = gcanapp.measurement Measurement OnInit event handler Private Sub gcanmeasurement_oninit() assign CAPL function Set gmultiplyfunction = gcanapp.capl.getfunction("multiply") End Sub multiply two values and get the result in the CAPL function s return value gmultiplyresult = gmultiplyfunction.call (4, 5) Application Note AN-AND

12 CANoe/CANalyzer as a COM Server Figure 6 CAPL Multiply() CAPL integer COM CANalyzer CAPL P Block CANalyzer CAPL CANalyzer 7 ( ) Application Note AN-AND

13 CANoe/CANalyzer as a COM Server 7 CANalyzer 2.7 CAN COM CAN CAPL output() CAPL output() CAN CAPL CAPL COM CAPL CAN CAPL ( 2.6 ) CANalyzer CAPL output() CANalyzer (7 ) CAPL COM CAPL CANalyzer CAPL CANalyzer CAPL CAN CAN Window CAN CAN CAPL CANalyzer COM CAPL output() CAPL COM CAPL output() CAN CAPL output() CAN Application Note AN-AND

14 CANoe/CANalyzer as a COM Server CANalyzer COM CAN CAPL COM CANalyzer CAN Microsoft Visual Basic CANalyzer CAN COM CAPL SendMsg() CAPL TxTimer_1ms 1 CAPL CAN COM CAPL CAPL (8 ) 8 CANalyzer CAN 3 Microsoft Visual Basic COM Microsoft Visual Basic COM CANalyzer Motbus.cfg CANalyzer Application Note AN-AND

15 CANoe/CANalyzer as a COM Server 9 Application Note AN-AND

16 CANoe/CANalyzer as a COM Server 3.2 GLOBALS: objects: Dim WithEvents gcanapp As CANalyzer.Application Dim WithEvents gcanmeasurement As CANalyzer.Measurement signals: Dim gengspeedsignal As CANalyzer.Signal Dim gcarspeedsignal As CANalyzer.Signal Dim gengtempsignal As CANalyzer.Signal Dim gengstatussignal As CANalyzer.Signal CAPL functions Dim gsendgearfunction As CANalyzer.CAPLFunction CAN Channel 1 Dim gcanchannel1 As CANalyzer.CANController indicator flags Dim gconnected As Boolean Dim gmotbus As Boolean NAME: CanConnect DESCRIPTION: Initializes CANalyzer object variables and sets some indication flags used in the application Private Sub CanConnect() init new CANalyzer application Set gcanapp = New Application init measurement object Set gcanmeasurement = gcanapp.measurement init CAN channel variable of bustype CAN (=1) and CAN channel 1 Set gcanchannel1 = gcanapp.configuration.generalsetup.controllersetup(1, 1) indicate that the connection has been made gconnected = True check if MotBus.cfg configuration is loaded If (gcanapp.configuration.name = "motbus") Then gmotbus = True Else gmotbus = False End Sub *** end of CanConnect *** NAME: UpdateMotBusSignals DESCRIPTION: Read the signals values from the CAN messages and displays these values on the form Private Sub UpdateMotBusSignals() If (gmotbus = True) Then prgenginespeed.value = gengspeedsignal.value lblenginespeedval.caption = gengspeedsignal.value prgvehiclespeed.value = gcarspeedsignal.value lblvehiclespeedval.caption = gcarspeedsignal.value lblenginetemperatureval.caption = gengtempsignal.value If (gengstatussignal.value) Then lblenginestatusval.caption = "Idle" Else lblenginestatusval.caption = "Running" Application Note AN-AND

17 CANoe/CANalyzer as a COM Server End Sub *** end of UpdateMotBusSignals *** NAME: GetCANChannelParameters DESCRIPTION: Read the CAN channel parameters using the COM server and displays it using labels. Private Sub GetCANChannelParameters() lblbaudratevalue = gcanchannel1.baudrate lblbtr0value = gcanchannel1.btr0 lblbtr1value = gcanchannel1.btr1 lblsamplesvalue = gcanchannel1.samples End Sub *** end of GetCANChannelParameters *** NAME: ResetDisplayControls DESCRIPTION: Resets all the controls related to the MotBus signals Private Sub ResetDisplayControls() prgenginespeed.value = 0 lblenginespeedval.caption = "" prgvehiclespeed.value = 0 lblvehiclespeedval.caption = "" lblenginetemperatureval.caption = "" lblenginestatusval.caption = "" lblbaudratevalue = "" lblbtr0value = "" lblbtr1value = "" lblsamplesvalue = "" End Sub *** end of ResetDisplayControls *** NAME: btndbdialog_click DESCRIPTION: Opens CANalyzer database dialog Private Sub btndbdialog_click() gcanapp.ui.opendbdialog End Sub *** end of btndbdialog_click *** NAME: btnopenconfig_click DESCRIPTION: Opens the configuration as specified in the textbox and compiles the CAPL code. It also stops all running measurements Private Sub btnopenconfig_click() If (gconnected = False) Then make the connection CanConnect If (gcanapp.measurement.running) Then stop the CANalyzer measurement gcanapp.measurement.stop load an existing CANalyzer configuration gcanapp.open (txtconfiglocation.text) Application Note AN-AND

18 CANoe/CANalyzer as a COM Server compile CAPL code of the CANalyzer configuration if any available gcanapp.capl.compile check if MotBus.cfg configuration is loaded If (gcanapp.configuration.name = "motbus") Then gmotbus = True Else gmotbus = False enable database dialog button btndbdialog.enabled = True End Sub *** end of btnopenconfig_click *** NAME: btnstartmeasurement_click DESCRIPTION: Start the measurement if no measurements are running, otherwise it stops the measurement Private Sub btnstartmeasurement_click() If (btnstartmeasurement.caption = "Start Measurement") Then If (gconnected = False) Then make the connection CanConnect start a CANalyzer measurement gcanapp.measurement.start Else stop a CANalyzer measurement gcanapp.measurement.stop End Sub *** end of btnstartmeasurement_click*** NAME: gcanmeasurement_onstart (event handler) DESCRIPTION: Disables the open configuration button and changes the caption of the measurement button Private Sub gcanmeasurement_onstart() disable open configuration functionality btnopenconfig.enabled = False change the caption of the button btnstartmeasurement.caption = "Stop Measurement" display CAN channel parameters GetCANChannelParameters enable the timer tmrsignals.enabled = True End Sub *** end of gcanmeasurement_onstart *** NAME: gcanmeasurement_onstop (event handler) DESCRIPTION: Enables the open configuration button and changes the caption of the measurement button Private Sub gcanmeasurement_onstop() disable the timer tmrsignals.enabled = False enable open configuration functionality btnopenconfig.enabled = True change the caption of the button btnstartmeasurement.caption = "Start Measurement" update controls on form ResetDisplayControls Application Note AN-AND

19 CANoe/CANalyzer as a COM Server End Sub *** end of gcanmeasurement_onstop *** NAME: gcanapp_onquit (event handler) DESCRIPTION: Sets a flag to indicate that the connection with the COM server is no longer there Private Sub gcanapp_onquit() indicate that MotBus.cfg is not loaded gmotbus = False disnable the timer tmrsignals.enabled = False indicate that the connection is no longer there gconnected = False reset signals Set gengspeedsignal = Nothing Set gcarspeedsignal = Nothing Set gengtempsignal = Nothing Set gengstatussignal = Nothing reset CANalyzer object globals Set gcanapp = Nothing Set gcanmeasurement = Nothing Set gcanchannel1 = Nothing End Sub *** end of gcanapp_onquit *** NAME: gcanmeasurement_oninit (event handler) DESCRIPTION: Initializes the measurement signals of the MotBus.cfg configuration if this one is loaded Private Sub gcanmeasurement_oninit() If (gmotbus = True) Then assign signals Set gengspeedsignal = gcanapp.bus.getsignal(1, "EngineData", "EngSpeed") Set gcarspeedsignal = gcanapp.bus.getsignal(1, "ABSdata", "CarSpeed") Set gengtempsignal = gcanapp.bus.getsignal(1, "EngineData", "EngTemp") Set gengstatussignal = gcanapp.bus.getsignal(1, "EngineData", "IdleRunning") assign CAPL function Set gsendgearfunction = gcanapp.capl.getfunction("sendgear") End Sub *** end of gcanmeasurement_oninit *** NAME: tmrsignals_timer (event handler) DESCRIPTION: On timer event that occurs every 100ms if a measurement is running. If the MotBus.cfg con- figuration is active, the signals on the form are updated Private Sub tmrsignals_timer() If (gmotbus = True) Then UpdateMotBusSignals End Sub *** end of tmrsignals_timer *** Application Note AN-AND

20 CANoe/CANalyzer as a COM Server 4 Vector Informatik GmbH Ingersheimer Straße Stuttgart Germany Tel.: Fax: info@vector-informatik.de Vector France SAS 168 Boulevard Camélinat Malakoff France Tel: +33 (0) Fax: +33 (0) information@vector-france.fr Vector CANtech, Inc Orchard Hill Pl., Ste 550 Novi, MI Tel: (248) Fax: (248) info@vector-cantech.com Vector Japan Co. Ltd. Seafort Square Center Bld. 18F , Higashi-shinagawa, Shinagawa-ku Tokyo, , Japan Tel:+81 03(5769)6970 Fax: (5769) info@vector-japan.co.jp VecScan AB Lindholmspiren 5 SE Göteborg Sweden Tel: +46 (0) Fax: +46 (0) info@vecscan.com Application Note AN-AND

For_Beginners_CAPL.indd

For_Beginners_CAPL.indd CAPL Vector Japan Co., Ltd. 目次 1 CAPL 03 2 CAPL 03 3 CAPL 03 4 CAPL 04 4.1 CAPL 4.2 CAPL 4.3 07 5 CAPL 08 5.1 CANoe 5.2 CANalyzer 6 CAPL 10 7 CAPL 11 7.1 CAPL 7.2 CAPL 7.3 CAPL 7.4 CAPL 16 7.5 18 8 CAPL

More information

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for

Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for Introduction Purpose This training course demonstrates the use of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that use microcontrollers (MCUs)

More information

Compatibility list: vTESTstudio/CANoe

Compatibility list: vTESTstudio/CANoe 1.0 および 1.1 で作成されたテストユニットは テスト内で使用されるコマンドに関わらず 必ず下記の最小バージョン以降の CANoe にて実行してください vteststudio 2.0 以上で作成されたテストユニット ( 新機能を使用していない場合 ) は それぞれに応じた最小バージョン以降の CANoe にて実行してください 下記の表にて 各バージョンに対応する要件をご確認ください vteststudio

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

More information

C FGIH C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C

C FGIH C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C TUDSR5SET TUDSR5 C 7 8 9 ch DIGITAL CS TUNER C C C C S-A C FGIH C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C C

More information

CANalyzer Vector Japan Co., Ltd.

CANalyzer Vector Japan Co., Ltd. CANalyzer CANalyzer 9.0 2014-2017 Vector Japan Co., Ltd. 目次 03 1 CANalyzer 03 CANalyzer 3 04 CANalyzer 06 2 07 07 1. 07 2. D-Sub9 08 3. 09 4. 10 5. Vector Hardware Config 10 6. 14 3 15 15 15 1. ECU 15

More information

Ver.1 1/17/2003 2

Ver.1 1/17/2003 2 Ver.1 1/17/2003 1 Ver.1 1/17/2003 2 Ver.1 1/17/2003 3 Ver.1 1/17/2003 4 Ver.1 1/17/2003 5 Ver.1 1/17/2003 6 Ver.1 1/17/2003 MALTAB M GUI figure >> guide GUI GUI OK 7 Ver.1 1/17/2003 8 Ver.1 1/17/2003 Callback

More information

はじめてのCANoe

はじめてのCANoe CANoe CANoe 11.0 Vector Japan Co., Ltd. 目次 03 1 CANoe 03 CANoe 3 04 CANoe 05 2 06 06 1. 06 2. D-Sub9 07 3. 08 4. 09 5. Vector Hardware Config 10 6. 13 7. 14 3 15 15 15 1. ECU 15 2. 15 3. 17 4. 17 5. 18

More information

9399-TOOLSGRJA

9399-TOOLSGRJA Getting Results with RSTools DECEMBER 1998 \ \\\\ \\\\ \\ \\ Private Sub Command1_Click() If RSWheel5.HandleDown = False Then RSWheel5.HandleDown = True Else RSWheel5.HandleDown = False

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

2 3

2 3 * This device can only be used inside Japan in areas that are covered by subscription cable TV services. Because of differences in broadcast formats and power supply voltages, it cannot be used in overseas

More information

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr Eclipse 1,a) 1,b) 1,c) ( IDE) IDE Graphical User Interface( GUI) GUI GUI IDE View Eclipse Development of Eclipse Plug-in to present an Object Diagram to Debug Environment Kubota Yoshihiko 1,a) Yamazaki

More information

BS・110度CSデジタルハイビジョンチューナー P-TU1000JS取扱説明書

BS・110度CSデジタルハイビジョンチューナー P-TU1000JS取扱説明書 C S0 CS Digital Hi-Vision Tuner C C C C S0-0A TQZW99 0 C C C C 4 5 6 7 8 9 C C C C C C C C C C C C C C C C C C C C C C C 0 FGIH C 0 FGIH C C C FGIH FG IH FGIH I H FGIH FGIH 0 C C # $ IH F G 0 # $ # $

More information

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool

Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool Introduction Purpose This training course describes the configuration and session features of the High-performance Embedded Workshop (HEW), a key tool for developing software for embedded systems that

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid 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

untitled

untitled FutureNet Microsoft Corporation Microsoft Windows Windows 95 Windows 98 Windows NT4.0 Windows 2000, Windows XP, Microsoft Internet Exproler (1) (2) (3) COM. (4) (5) ii ... 1 1.1... 1 1.2... 3 1.3... 6...

More information

VE-GP32DL_DW_ZA

VE-GP32DL_DW_ZA VE-GP32DL VE-GP32DW 1 2 3 4 5 6 1 2 3 4 1 1 2 3 2 3 1 1 2 2 2006 Copyrights VisionInc. @. _ & $ % + = ^ @. _ & $ % + = ^ D11 D12 D21

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

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

HARK Designer Documentation 0.5.0 HARK support team 2013 08 13 Contents 1 3 2 5 2.1.......................................... 5 2.2.............................................. 5 2.3 1: HARK Designer.................................

More information

*Ł\”ƒ‚ä(DCH800)

*Ł\”ƒ‚ä(DCH800) B B B B B B B B B C * This device can only be used inside Japan in areas that are covered by subscription cable TV services. Because of differences in broadcast formats and power supply voltages, it cannot

More information

JJ-90

JJ-90 Table 1 Message types added to ITU-T Recommendation Q.763 Message type Abbreviation Reference Code Comments Charge information CHG 4-30/JT-Q763 11111110 The description of a Charge information message

More information

Microsoft Word - Win-Outlook.docx

Microsoft Word - Win-Outlook.docx Microsoft Office Outlook での設定方法 (IMAP および POP 編 ) How to set up with Microsoft Office Outlook (IMAP and POP) 0. 事前に https://office365.iii.kyushu-u.ac.jp/login からサインインし 以下の手順で自分の基本アドレスをメモしておいてください Sign

More information

AN 100: ISPを使用するためのガイドライン

AN 100: ISPを使用するためのガイドライン ISP AN 100: In-System Programmability Guidelines 1998 8 ver.1.01 Application Note 100 ISP Altera Corporation Page 1 A-AN-100-01.01/J VCCINT VCCINT VCCINT Page 2 Altera Corporation IEEE Std. 1149.1 TCK

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

ID 3) 9 4) 5) ID 2 ID 2 ID 2 Bluetooth ID 2 SRCid1 DSTid2 2 id1 id2 ID SRC DST SRC 2 2 ID 2 2 QR 6) 8) 6) QR QR QR QR

ID 3) 9 4) 5) ID 2 ID 2 ID 2 Bluetooth ID 2 SRCid1 DSTid2 2 id1 id2 ID SRC DST SRC 2 2 ID 2 2 QR 6) 8) 6) QR QR QR QR Vol. 51 No. 11 2081 2088 (Nov. 2010) 2 1 1 1 which appended specific characters to the information such as identification to avoid parity check errors, before QR Code encoding with the structured append

More information

HIS-CCBASEver2

HIS-CCBASEver2 Information Access Interface in the Immersive Virtual World Tetsuro Ogi, *1*2*3 Koji Yamamoto, *3*4 Tadashi Yamanouchi *3 and Michitaka Hirose *2 Abstract - In this study, in order to access database server

More information

Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of

Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of Introduction Purpose The course describes library configuration and usage in the High Performance Embedded Workshop (HEW), which speeds development of software for embedded systems. Objectives Learn the

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

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

Microsoft Word - Meta70_Preferences.doc

Microsoft Word - Meta70_Preferences.doc Image Windows Preferences Edit, Preferences MetaMorph, MetaVue Image Windows Preferences Edit, Preferences Image Windows Preferences 1. Windows Image Placement: Acquire Overlay at Top Left Corner: 1 Acquire

More information

J K L

J K L pp. ISSN Excel VBA Applications of Excel VBA in Psychology 3 Application for Speech Recognition Software Hiroyuki HISAMOTO Abstract When psychological experiments are run using computers, most reactions

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

RX600 & RX200シリーズ アプリケーションノート RX用仮想EEPROM

RX600 & RX200シリーズ アプリケーションノート RX用仮想EEPROM R01AN0724JU0170 Rev.1.70 MCU EEPROM RX MCU 1 RX MCU EEPROM VEE VEE API MCU MCU API RX621 RX62N RX62T RX62G RX630 RX631 RX63N RX63T RX210 R01AN0724JU0170 Rev.1.70 Page 1 of 33 1.... 3 1.1... 3 1.2... 3

More information

by CASIO W61CA For Those Requiring an English/Chinese Instruction

by CASIO W61CA     For Those Requiring an English/Chinese Instruction by CASIO W61CA http://www.au.kddi.com/torisetsu/index.html http://www.au.kddi.com/manual/index.html For Those Requiring an English/Chinese Instruction Manual English/Chinese Simple Manual can be read on

More information

0 C C C C C C C

0 C C C C C C C C * This device can only be used inside Japan in areas that are covered by subscription cable TV services. ecause of differences in broadcast formats and power supply voltages, it cannot be used in overseas

More information

Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environmen

Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environmen Introduction Purpose This course explains how to use Mapview, a utility program for the Highperformance Embedded Workshop (HEW) development environment for microcontrollers (MCUs) from Renesas Technology

More information

2006 [3] Scratch Squeak PEN [4] PenFlowchart 2 3 PenFlowchart 4 PenFlowchart PEN xdncl PEN [5] PEN xdncl DNCL 1 1 [6] 1 PEN Fig. 1 The PEN

2006 [3] Scratch Squeak PEN [4] PenFlowchart 2 3 PenFlowchart 4 PenFlowchart PEN xdncl PEN [5] PEN xdncl DNCL 1 1 [6] 1 PEN Fig. 1 The PEN PenFlowchart 1,a) 2,b) 3,c) 2015 3 4 2015 5 12, 2015 9 5 PEN & PenFlowchart PEN Evaluation of the Effectiveness of Programming Education with Flowcharts Using PenFlowchart Wataru Nakanishi 1,a) Takeo Tatsumi

More information

Axiom_AIR_49_-_UserGuideJP_-_v1.0

Axiom_AIR_49_-_UserGuideJP_-_v1.0 [ WEB ] [ MAIL ] USB MIDI IN MIDI OUT R L R L VOL 3 2 4 5 1 4 8 5 7 3 3 2 2 1 6 B D A C E G F F F F F F 1 2 3 4 5 6 7 8 Appendix MIDI Mode: Messages and Sub-Parameters Modulation Wheel, Fader,

More information

VB.NETコーディング標準

VB.NETコーディング標準 (C) Copyright 2002 Java ( ) VB.NET C# AS-IS extremeprogramming-jp@objectclub.esm.co.jp bata@gold.ocn.ne.jp Copyright (c) 2000,2001 Eiwa System Management, Inc. Object Club Kenji Hiranabe02/09/26 Copyright

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

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori

Table 1. Assumed performance of a water electrol ysis plant. Fig. 1. Structure of a proposed power generation system utilizing waste heat from factori Proposal and Characteristics Evaluation of a Power Generation System Utilizing Waste Heat from Factories for Load Leveling Pyong Sik Pak, Member, Takashi Arima, Non-member (Osaka University) In this paper,

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

ASP.NET 2.0 Provider Model 概要

ASP.NET 2.0 Provider Model 概要 ASP.NET 2.0 Provider Model 概要 Agenda ASP.NET 2.0 Provider Model とは カスタムプロバイダの実装 まとめ ASP.NET 2.0 Provider Model とは ASP.NET 2.0 のインフラストラクチャ データストアへのアクセスをアプリケーションロジックから分離 データストアの変更に柔軟に対応 Strategy パターン デザインパターンによる意識の共通化

More information

P (32LX10)

P (32LX10) D D D D D D C Matsushita Electric Industrial Co., Ltd. D D D 2 04 D 08 D 10 D A A A A 16 D 17 D 18 D A 19 D A A A A 26 417 1825 2641 D A A A A 35 D 36 D A A 38 D 41 D 42 D 51 D 52 D 54 D 56 D A A 64 D

More information

VE-GD21DL_DW_ZB

VE-GD21DL_DW_ZB V E-G D21D L V E-G D21D W 1 2 3 4 1 2 1 2 1 2 2 1 2 3 1 2 3 1 2 3 1 4 4 2 3 5 5 1 2 3 4 1 2 3 1 2 3 4 1 2 3 2006 Copyrights VisionInc. @. _ & $ % + = ^ 2011

More information

0 C C C C C C

0 C C C C C C C TU-HD50 TUNER TU - HD50 0 TU-HD50 C C C C S00-06C D D D 0 C C C C 4 5 6 7 8 9 C C C C C C C C C C C C C C C C C C C C C C TUNER TU - HD50 FGIH 0 C C C 0 FGIH C C C C C C FGIH FG IH FGIH I H FGIH FGIH

More information

Chapter 1 1-1 2

Chapter 1 1-1 2 Chapter 1 1-1 2 create table ( date, weather ); create table ( date, ); 1 weather, 2 weather, 3 weather, : : 31 weather -- 1 -- 2 -- 3 -- 31 create table ( date, ); weather[] -- 3 Chapter 1 weather[] create

More information

VE-SV03DL VE-SV03DW Ni-MH Ni-MH Ni-MH 1 2 3 1 2 Ni-MH 3 4 5 I H 3 IH IH IH IH 2 0 4 6 6 1 2 3 # 6 6 4 I H I H I H I H I H I H I H NTT Ni-MH Ni-MH Ni-MH Ω 0570-087-087

More information

B 5 (2) VBA R / B 5 ( ) / 34

B 5 (2) VBA R / B 5 ( ) / 34 B 5 (2) VBAR / B 5 (2014 11 17 ) / 34 VBA VBA (Visual Basic for Applications) Visual Basic VBAVisual Basic Visual BasicC B 5 (2014 11 17 ) 1 / 34 VBA 2 Excel.xlsm 01 Sub test() 02 Dim tmp As Double 03

More information

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows

Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker IT Service Management V11.0L10 IT Service Management - Centric Manager Windows Systemwalker IT Service Management Systemwalker Centric Manager IT Service

More information

入学検定料支払方法の案内 1. 入学検定料支払い用ページにアクセス ポータルの入学検定料支払いフォームから 入学検定料支払い用 URL の ここをクリック / Click here をクリックしてください クリックを行うと 入学検定料支払い用のページが新たに開かれます ( 検定料支払い用ページは ポ

入学検定料支払方法の案内 1. 入学検定料支払い用ページにアクセス ポータルの入学検定料支払いフォームから 入学検定料支払い用 URL の ここをクリック / Click here をクリックしてください クリックを行うと 入学検定料支払い用のページが新たに開かれます ( 検定料支払い用ページは ポ Keio Academy of New York Admissions Portal 入学検定料支払方法の案内 < 日本語 :P1 ~ 7> Page1 入学検定料支払方法の案内 1. 入学検定料支払い用ページにアクセス ポータルの入学検定料支払いフォームから 入学検定料支払い用 URL の ここをクリック / Click here をクリックしてください クリックを行うと

More information

取説_KX-PW38CL_PW48CL

取説_KX-PW38CL_PW48CL KX-PW38CL KX-PW48CL See pages 260 and 261 for English Guide. 2 3 1 2 NTT NTT Ni-Cd Ni-Cd 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 0 6 1 2 3

More information

- 1 -

- 1 - - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - 1 2 1-16 - 2 3 4 5 6 7-17 - 1 2 1 2 3 4-18 - 1 2 3 4 1 2-19 - 1 2 3 1 2-20 - 3 4 5 6 7 1-21 - 1 2 3 4-22

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp

SCM (v0201) ( ) SCM 2 SCM 3 SCM SCM 2.1 SCM SCM SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp SCM (v0201) ( ) 14 4 20 1 SCM 2 SCM 3 SCM 4 5 2 SCM 2.1 SCM SCM 2 1 2 SCM (1) MS-DOS (2) Microsoft(R) Windows 95 (C)Copyright Microsoft Corp 1981-1996. 1 (3) C:\WINDOWS>cd.. C:\>cd scm C:\SCM> C:\SCM>

More information

GP05取説.indb

GP05取説.indb E -G V P 05D L V E -G P 05D W Ni-MH + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 2 + 3 + 4 + 5 + 6 1 2 3 4 5 6 + + + 1 + + + + + + + + + + + + + + + + + + 1 A B C + D + E

More information

橡実践Oracle Objects for OLE

橡実践Oracle Objects for OLE THE Database FOR Network Computing 2 1. 2 1-1. PL/SQL 2 1-2. 9 1-3. PL/SQL 11 2. 14 3. 16 3-1. NUMBER 16 3-2. CHAR/VARCHAR2 18 3-3. DATE 18 4. 23 4-1. 23 4-2. / 24 26 1. COPYTOCLIPBOARD 26 III. 28 1.

More information

C C C - J TH-D TH-D TH-D C C C C C - J TH-D TH-D TH-D C - J TH-D TH-D TH-D C C C C

C C C - J TH-D TH-D TH-D C C C C C - J TH-D TH-D TH-D C - J TH-D TH-D TH-D C C C C C Matsushita Electric Industrial Co., Ltd. - J TH-D TH-D TH-D C C C C - J TH-D TH-D TH-D C C C C C - J TH-D TH-D TH-D C - J TH-D TH-D TH-D C C C C - J FGIH FGIH FG IH FGIH F G FGIH - J c c c c c c C C

More information

ベース0516.indd

ベース0516.indd QlikView QlikView 2012 2 qlikview.com Business Discovery QlikTech QlikView QlikView QlikView QlikView 1 QlikView Server QlikTech QlikView Scaling Up vs. Scaling Out in a QlikView Environment 2 QlikView

More information

74 No.3 0999500 999500 ACCESS

74 No.3 0999500 999500 ACCESS Mar.2003 73 ACCESS ACCESS EXCEL EXCEL 74 No.3 0999500 999500 ACCESS Mar.2003 75 76 No.3 Mar.2003 77 temp EXCEL EXCEL No.3 78 seikika.txt Mar.2003 79 EXCEL Personal.xls Visual Basic Editor VBA Project(PERSONAL.XLS)

More information

1 138

1 138 5 1 2 3 4 5 6 7 8 1 138 BIOS Setup Utility MainAdvancedSecurityPowerExit Setup Warning Item Specific Help Setting items on this menu to incorrect values may cause your system to malfunction. Select 'Yes'

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

29 jjencode JavaScript

29 jjencode JavaScript Kochi University of Technology Aca Title jjencode で難読化された JavaScript の検知 Author(s) 中村, 弘亮 Citation Date of 2018-03 issue URL http://hdl.handle.net/10173/1975 Rights Text version author Kochi, JAPAN http://kutarr.lib.kochi-tech.ac.jp/dspa

More information

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev

More information

Vol. 42 No. SIG 8(TOD 10) July HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Spe

Vol. 42 No. SIG 8(TOD 10) July HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Spe Vol. 42 No. SIG 8(TOD 10) July 2001 1 2 3 4 HTML 100 Development of Authoring and Delivery System for Synchronized Contents and Experiment on High Speed Networks Yutaka Kidawara, 1 Tomoaki Kawaguchi, 2

More information

大学論集第42号本文.indb

大学論集第42号本文.indb 42 2010 2011 3 279 295 COSO 281 COSO 1990 1 internal control 1 19962007, Internal Control Integrated Framework COSO COSO 282 42 2 2) the Committee of Sponsoring Organizations of the Treadway committee

More information

JAJP.qxd

JAJP.qxd Agilent E6601A Application Note ...2 E6601A...3...4...5...8 E6601A PC...17...17 GSM...18 1Windows XP Agilent E6601A E6601A E6601A Visual Studio.NET 2 E6601A Agilent E6601A 1Windows XP Professional Windows

More information

陶 磁 器 デ ー タ ベ ー ス ソ リ ュ ー シ ョ ン 図1 中世 陶 磁 器 デ ー タベ ー ス 109 A Database Solution for Ceramic Data OGINO Shigeharu Abstract This paper describes various aspects of the development of a database

More information

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

More information

Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual Window System Social Networking

Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual Window System Social Networking 23 An attribute expression of the virtual window system communicators 1120265 2012 3 1 Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual Window System Virtual

More information

CAC

CAC VOL.24NO.1 61 IMS Transaction 3270 DataBase Transaction OS/370 IMS Traditional Transaction Web Browser Transaction Internet WWW AP IIS APache WebLogic Websphere DataBase Oracle DB2 SQL Server Web Browser

More information

TOPLON PRIO操作手順

TOPLON PRIO操作手順 TOPLON PRIO 2004/05/24 I/O LON WAGO TOPLON PRIO 1. 1) PCC-10 S/W 2) PC 3) PCC-10 4) Windows Lon WorksR Plug n Play Apply OK 5) Visio LonMaker LonPoint 6) TOPLON PRIO 2. IO-PRO SYM TOPLON-PRIO SNVT NVI

More information

untitled

untitled ISO 26262 : 2011(E) Functional safety nal 2 Managem ment of functio safety 3 Con ncept phase Annex B Examples for evaluating a safety culture Annex C (informative) Aim of the confirmation measures 8 Functional

More information

A Study on Arifields and City Planning in the Capital Region of Japan by Naotoshi HIDAKA, Keita TEZUKA, Tsuneaki FUKUI Osamu SHINOHARA and Koichi AMANC, Abstract: Airports play very important role in the

More information

137. Tenancy specific information (a) Amount of deposit paid. (insert amount of deposit paid; in the case of a joint tenancy it should be the total am

137. Tenancy specific information (a) Amount of deposit paid. (insert amount of deposit paid; in the case of a joint tenancy it should be the total am 13Fast Fair Secure PRESCRIBED INFORMATION RELATING TO TENANCY DEPOSITS* The Letting Protection Service Northern Ireland NOTE: The landlord must supply the tenant with the Prescribed Information regarding

More information

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2

HA8000-bdシリーズ RAID設定ガイド HA8000-bd/BD10X2 HB102050A0-4 制限 補足 Esc Enter Esc Enter Esc Enter Main Advanced Server Security Boot Exit A SATA Configuration SATA Controller(s) SATA Mode Selection [Enabled] [RAID] Determines how

More information

;y ;y ;; yy ;y;; yy y;y;y;y ;y; ;; yy ; y Portable CD player Operating Instructions RQT5364-S

;y ;y ;; yy ;y;; yy y;y;y;y ;y; ;; yy ; y Portable CD player Operating Instructions RQT5364-S ;y ;y ;; yy ;y;; yy y;y;y;y ;y; ;; yy ; y Portable CD player Operating Instructions -S + - + - 1 3 K 2 - + H K Ni-Cd A.SHOCK S-XBS HOLD HOLD HOLD HOLD ( 1; 1; 6 VOLUME 5 4 1; A.SHOCK S-XBS RANDOM NOR

More information

MOTIF XF 取扱説明書

MOTIF XF 取扱説明書 MUSIC PRODUCTION SYNTHESIZER JA 2 (7)-1 1/3 3 (7)-1 2/3 4 (7)-1 3/3 5 http://www.adobe.com/jp/products/reader/ 6 NOTE http://japan.steinberg.net/ http://japan.steinberg.net/ 7 8 9 A-1 B-1 C0 D0 E0 F0 G0

More information

1,a) 1,b) TUBSTAP TUBSTAP Offering New Benchmark Maps for Turn Based Strategy Game Tomihiro Kimura 1,a) Kokolo Ikeda 1,b) Abstract: Tsume-shogi and Ts

1,a) 1,b) TUBSTAP TUBSTAP Offering New Benchmark Maps for Turn Based Strategy Game Tomihiro Kimura 1,a) Kokolo Ikeda 1,b) Abstract: Tsume-shogi and Ts JAIST Reposi https://dspace.j Title ターン制戦略ゲームにおけるベンチマークマップの提 案 Author(s) 木村, 富宏 ; 池田, 心 Citation ゲームプログラミングワークショップ 2016 論文集, 2016: 36-43 Issue Date 2016-10-28 Type Conference Paper Text version author

More information

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MT65H vibratorstamp EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192 06

More information

卒業論文2.dvi

卒業論文2.dvi 15 GUI A study on the system to transfer a GUI sub-picture to the enlarging viewer for operational support 1040270 2004 2 27 GUI PC PC GUI Graphical User Interface PC GUI GUI PC GUI PC PC GUI i Abstract

More information

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MVB-85 rullvibrator EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192 06

More information

fx-9860G Manager PLUS_J

fx-9860G Manager PLUS_J fx-9860g J fx-9860g Manager PLUS http://edu.casio.jp k 1 k III 2 3 1. 2. 4 3. 4. 5 1. 2. 3. 4. 5. 1. 6 7 k 8 k 9 k 10 k 11 k k k 12 k k k 1 2 3 4 5 6 1 2 3 4 5 6 13 k 1 2 3 1 2 3 1 2 3 1 2 3 14 k a j.+-(),m1

More information

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MVC-50 vibratorplatta EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se 1,0 192

More information

実施していただく前に

実施していただく前に SiteProtector 2.0 Service Pack 5 Service Pack 6 2006 4 7 1.... 2 Event Collector Service Pack 1.13... 3 2. SiteProtector Core SP6... 4 3. Console... 10 4. Service Pack 6... 11 5. 1 Deployment Manager...

More information

/ , ,908 4,196 2, ,842 38, / / 2 33 /

/ , ,908 4,196 2, ,842 38, / / 2 33 / MathWorks Automotive Conference 2014 ( ) ECU 0.1. 1 /30 1949 12 16 1,874 4 959 2 4,908 4,196 2,993 139,842 38,581 62 26 35 56 / 6 185 13 4 3 11 / 2 33 / 2014 3 31 0.1. 2 /30 ETC 0.2. 3 /30 1. 1. 2. 2.

More information

D0050.PDF

D0050.PDF Excel VBA 6 3 3 1 Excel BLOCKGAME.xls Excel 1 OK 2 StepA D B1 B4 C1 C2 StepA StepA Excel Workbook Open StepD BLOCKGAME.xls VBEditor ThisWorkbook 3 1 1 2 2 3 5 UserForm1 4 6 UsorForm2 StepB 3 StepC StepD

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

5980_2666JA.qxd

5980_2666JA.qxd Agilent Application Note 1408-13 2 3 http://na.tm.agilent.com/pna/dcomsecurity.html 4 5 6 \\\ 7 8 9 10 11 C:\Program Files\Agilent\Network Analyzer\Automation \\ \\ http://na.tm.agilent.com/pna/ DCOMSecurity.html

More information

評論・社会科学 84号(よこ)(P)/3.金子

評論・社会科学 84号(よこ)(P)/3.金子 1 1 1 23 2 3 3 4 3 5 CP 1 CP 3 1 1 6 2 CP OS Windows Mac Mac Windows SafariWindows Internet Explorer 3 1 1 CP 2 2. 1 1CP MacProMacOS 10.4.7. 9177 J/A 20 2 Epson GT X 900 Canon ip 4300 Fujifilm FinePix

More information

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

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

More information

PFQX2227_ZA

PFQX2227_ZA V E -G P 05D B Ni-MH 1 2 3 4 5 6 1 2 3 4 5 6 A B C D E F 1 2 A B C 1 2 3 2 0 7 9 4 6 6 4 7 9 1 2 3 # 6 6 2 D11 D12 D21 D22 19 # # # # Ni-MH Ω Ω

More information

4.1 % 7.5 %

4.1 % 7.5 % 2018 (412837) 4.1 % 7.5 % Abstract Recently, various methods for improving computial performance have been proposed. One of these various methods is Multi-core. Multi-core can execute processes in parallel

More information

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part

How to read the marks and remarks used in this parts book. Section 1 : Explanation of Code Use In MRK Column OO : Interchangeable between the new part Reservdelskatalog MIKASA MCD-L14 asfalt- och betongsåg EPOX Maskin AB Postadress Besöksadress Telefon Fax e-post Hemsida Version Box 6060 Landsvägen 1 08-754 71 60 08-754 81 00 info@epox.se www.epox.se

More information

Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []: An optional company name []: Using con

Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []: An optional company name []: Using con IIS で SSL(https) を設定する方法 Copyright (C) 2008 NonSoft. All Rights Reserved. IIS でセキュアサーバを構築する方法として OpenSSL を使用した方法を実際の手順に沿って記述します 1. はじめに IIS で SSL(https) を設定する方法を以下の手順で記述します (1) 必要ソフトのダウンロード / インストールする

More information

7,, i

7,, i 23 Research of the authentication method on the two dimensional code 1145111 2012 2 13 7,, i Abstract Research of the authentication method on the two dimensional code Karita Koichiro Recently, the two

More information

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6)

DPA,, ShareLog 3) 4) 2.2 Strino Strino STRain-based user Interface with tacticle of elastic Natural ObjectsStrino 1 Strino ) PC Log-Log (2007 6) 1 2 1 3 Experimental Evaluation of Convenient Strain Measurement Using a Magnet for Digital Public Art Junghyun Kim, 1 Makoto Iida, 2 Takeshi Naemura 1 and Hiroyuki Ota 3 We present a basic technology

More information

Title 社 会 化 教 育 における 公 民 的 資 質 : 法 教 育 における 憲 法 的 価 値 原 理 ( fulltext ) Author(s) 中 平, 一 義 Citation 学 校 教 育 学 研 究 論 集 (21): 113-126 Issue Date 2010-03 URL http://hdl.handle.net/2309/107543 Publisher 東 京

More information