PowerPoint AppleScript

Size: px
Start display at page:

Download "PowerPoint AppleScript"

Transcription

1

2 (URL Web ) Microsoft Excel Entourage PowerPoint Microsoft Corporation Apple Apple Mac Mac OS Apple Inc Microsoft Corporation. All rights reserved.

3 PowerPoint AppleScript PowerPoint AppleScript

4 PowerPoint AppleScript の基本 Microsoft PowerPoint 2008 Visual Basic for Applications (VBA) VBA AppleScript PowerPoint PowerPoint AppleScript VBA ( ) AppleScript Macintosh tell application "Microsoft PowerPoint" activate PowerPoint PowerPoint [ ] activate PowerPoint activate PowerPoint PowerPoint 2004 AppleScript ( PowerPoint Dictionary AppleScript PowerPoint PowerPoint text frame Word AppleScript text range Word 2004 AppleScript ( E2CF6A9DCF33/Word2004AppleScriptRef_J.pdf) Dictionary Drawing Suite text frame PowerPoint Microsoft Word text object text range (Text Suite text range ) PowerPoint 2004 AppleScript do Visual Basic 1 VBA (Microsoft Visual Basic Editor [ ] Dim ) PowerPoint X do Visual Basic PowerPoint 2004 PowerPoint 2008 VBA \ ( ) 4

5 PowerPoint 2004 AppleScript application presentation selection VBA Selection do Visual Basic Selection (Selection.ShapeRange Selection.SlideRange ) do Visual Basic result ( ) AppleScript.Selection プレゼンテーションを作成するまたは開く プレゼンテーションを作成する Visual Basic for Applications (VBA) presentation Application.Presentations.Add AppleScript make new presentation Microsoft PowerPoint make new AppleScript with properties ( ) Presentation Add VBA VBA Presentations.Add WithWindow visible AppleScript visible false ( document window visible true ) hide AppleScript (presentation Dictionary r/o ( ) ) page setup web options slide show settings Microsoft Office " " make new ( ) 5

6 VBA (Slides ) AppleScript VBA AppleScript presentation east asian line break level layout direction (PowerPoint (US) ) AppleScript / DisplayComments Drawing Suite set newpres to make new presentation tell slide 1 of newpres -- code here make new presentation slide 1 tell slide 1 既存のプレゼンテーションを開く AppleScript PowerPoint VBA Open Presentations.Open FileName:="Mac HD:Folder:Filename.ppt" AppleScript Standard Suite open open alias "Mac HD:Folder:Filename.ppt" PowerPoint VBA path AppleScript.ppt VBA ( ) Open Presentation Dim opres As Presentation, oslide As Slide Set opres = Presentations.Open(Mac HD:Folder:Filename.ppt") 6

7 With opres Set oslide =.Slides.Add(2, pplayouttext) AppleScript Microsoft Word Standard Suite open open "Mac HD:Users:yourname:Desktop:Saved Pres.ppt" set thepres to active presentation set theslide to make new slide at end of thepres with properties {layout:slide layout text slide} active presentation ( ) open application try set thepres to presentation "Saved Pres.ppt" on error open "Mac HD:Users:yourname:Desktop:Saved Pres.ppt" set thepres to active presentation end try set theslide to make new slide at end of thepres with properties {layout:slide layout text slide} スライドと図形を使用する スライドを作成するまたは挿入する スライドを作成する Visual Basic for Applications (VBA) Slides Add Layout Index 2 ActivePresentation.Slides.Add Index:=1, Layout:=ppLayoutText 7

8 AppleScript slide / color scheme layout Index AppleScript slide index AppleScript at set newslide to make new slide at active presentation with properties {layout:slide layout text slide} Dictionary Standard Suite make new at 2 new at location reference : the location at which to insert the element ( ) at end of [object] presentation AppleScript at beginning of at end of at before [some element] at after [some element] set newslidea to make new slide at beginning of active presentation with properties {layout:slide layout text slide} set newslideb to make new slide at end of active presentation with properties {layout:slide layout two objects over text} set newslidec to make new slide at before slide 2 of active presentation with properties {layout:slide layout media clip and text} slide 2 slide 2 newslidec at after slide 1 before at slide index Dictionary Microsoft PowerPoint Suite slide layout VBA pplayouttext slide layout text slide 8

9 Dictionary " " slide layout text 3 6 slide VBA AppleScript VBA slide layout pp Long ( ) pplayouttext 2 Microsoft Office Microsoft Visual Basic Editor ppslidelayout Long (2) (pplayouttext) AppleScript (slide 1 slide 2 slide 3 ) slide 3 slide 3 slide 5 VBA Name Slide1 Slide2 AppleScript name ID (VBA SlideID ) (PowerPoint ID ) AppleScript slide ID VBA Slides Collection FindBySlideID SlideID AppleScript AppleScript whose {} get first slide of active presentation whose slide ID is 1257 first element whose... Office every element whose... get every slide of active presentation whose slide ID is > {slide 1 of active presentation} ID 1 every item 1 of (get every slide of active presentation whose slide ID is 1257) --> slide 1 of active presentation 9

10 スライドを挿入する VBA InsertFromFile AppleScript do Visual Basic InsertFromFile ActivePresentation.Slides.InsertFromFile _ "Macintosh HD:Users:Shared:Sales.ppt", 2, 3, 6 do Visual Basic "ActivePresentation.Slides.InsertFromFile _ \"Macintosh HD:Users:Shared:Sales.ppt\", 2, 3, 6" \ ( ) VBA AppleScript Office 2008 スライドまたは図形を選択する Visual Basic for Applications (VBA) Dim osh as Object Set osh = ActivePresentation.Slides(4).Shapes(8) With osh.someproperty = "this".anotherproperty = "that" AppleScript (Dim) ( ) AppleScript ActivePresentation.Slides(4).Shapes(8) shape 8 of slide 4 of active presentation VBA With tell set theshape to shape 8 of slide 4 of active presentation tell theshape set some property to "this" set another property to "that" theshape 18 1 ( ) 1 tell theshape set {some property, another property} to {"this", "that"} 10

11 1 tell of AppleScript slide name VBA shape With ActiveWindow.Selection.SlideRange.Name = "MyName" With ActiveWindow.Selection.ShapeRange.Name = "MyName" VBA SlideRange ShapeRange.Selection.Slides(n) Name 1 AppleScript Microsoft PowerPoint 2004 for Mac AppleScript selection set theindex to slide index of slide of view of active window set selectedslide to slide theindex of active presentation set slideid to slide ID of selectedslide active window view slide slide ID selectedslide slide index ID ( 3 ) ID set theslide to item 1 of (get every slide of active presentation whose slide ID is slideid) do Visual Basic AppleScript 11

12 1 AppleScript GetSelectedShape() ( ) GetSelectedShape() ActiveWindow.Selection.ShapeRange VBA set selectedshape to my GetSelectedShape() set selectedshape to my GetSelectedShape() --calls the handler below -- test only: set thetext to (content of text range of text frame of selectedshape) -- enter rest of script after trying the test and removing the line above to GetSelectedShape() set textfilepath to (path to temporary items as string) & "Shared Text File" activate set theindex to slide index of slide of view of active window set selectedslide to slide theindex of active presentation do Visual Basic "n = ActiveWindow.Selection.ShapeRange.ZOrderPosition 'write n as string to text file, replacing any text there FileNumber = FreeFile Open \"" & textfilepath & "\" For Output As #FileNumber Print #FileNumber, CStr(n) Close #FileNumber " set n to (read alias textfilepath before return) as integer set selectedshape to shape n of selectedslide return selectedshape end GetSelectedShape text box Macintosh ( ) 12

13 AppleScript do Visual Basic ZOrderPosition ZOrderPosition (AppleScript z order position) " " UI z order position 1 n shape index shape n do Visual Basic n n (CStr(n)) Macintosh [Temporary Items] textfilepath textfilepath do Visual Basic Visual Basic FreeFile Print # Close # Mac OS X [Temporary Items] "/var/tmp" Finder 3 4 AppleScript read Standard Addition (Print # ) n shape n of selectedslide Microsoft Office 2004 Office 2008 do Visual Basic スライドと図形の書式を設定する slide shape presentation color [ ] [ ] Dim opres As Presentation Dim osl As Slide Dim osh As Shape Dim colsch As ColorScheme ' Get a reference to the current active presentation Set opres = ActivePresentation 13

14 ' Do something with each slide in the presentation For Each osl In opres.slides ' Set the background color scheme of each slide to a pale aquamarine Set colsch = osl.colorscheme colsch.colors(ppbackground).rgb = RGB(222, 246, 241) ' and do something with each shape on each slide For Each osh In osl.shapes ' move it 36 points (.5 inch) to the right osh.left = osh.left + 36 Next Next AppleScript set opres to active presentation repeat with osl in (get every slide of opres) set color for (color scheme of osl) at background scheme to color {222, 246, 241} repeat with osh in (get every shape of osl) tell osh set left position to (get left position) + 36 end repeat end repeat Dim VBA object string long o s l AppleScript theslide theshape AppleScript color scheme (background scheme color fill scheme color ) get color for set color for at ( ColorScheme.Colors pp VBA ) background scheme VBA RGBColor Red-Green-Blue 3 8 (0 255) RGB Long Microsoft Office AppleScript ( Word Excel PowerPoint ) color 3 (0 255) {222, 246, 241} "Microsoft color " VBA RGB 3 VBA AppleScript 14

15 Apple AppleScript RGB color 3 16 ( ) RGB Word Excel PowerPoint Microsoft Entourage ( color ) Macintosh 3 2 ApplifyMSColor({222, 246, 241}) --> {49284, 60516, 58081} to ApplifyMSColor({r, g, b}) set r to (r ^ 2) as integer set g to (g ^ 2) as integer set b to (b ^ 2) as integer return {r, g, b} end ApplifyMSColor as integer AppleScript ^ reals ( ) E color Entourage PowerPoint (65535 ) div set r to (49285 ^ 0.5) div 1 -->222 as integer Mac OS X 10.4 (Tiger) ^ Mac OS X 10.4 as integer Mac OS X div 1 left position VBA Left Property (left position) get set left position to (get left position) + 36 repeat repeat with somevariable in somelist (somelist) every element of someobject get VBA VBA AppleScript get get can't get [whatever] 15

16 AppleScript repeat set left position of every shape of osl to every element set color for テキストを使用する テキストを選択 追加 変更する Microsoft PowerPoint text frame ( ) Sub AddSomeText() ' work with the currently selected shape With ActiveWindow.Selection.ShapeRange ' the shape's "text container" is the TextFrame With.TextFrame ' unless you specify otherwise,.textrange refers to ' all of the text in the text frame With.TextRange ' add some text.text = "You can add text to shapes" ' or somewhat more compactly With ActiveWindow.Selection.ShapeRange TextFrame.TextRange.Text = "This works too" End Sub ActiveWindow.Selection.ShapeRange AppleScript Microsoft Office 2004 GetSelectedShape() 16

17 --get the selected shape via the handler set selectedshape to my GetSelectedShape() --paste it in below! tell selectedshape tell its text frame --needs 'its'! tell its text range --needs 'its' --unless noted, refers to all --the text in the text frame set content to "You can add text to shapes." --or, more compactly set content of text range of text frame of selectedshape to "This works too!" tell Visual Basic for Applications (VBA) With of tell of text frame text range 2 ( ) tell whose (where its) its 2 text frame its text range 17

18 図形でテキストフレームがサポートされるようにする shape Sub TextCaveats() With ActiveWindow.Selection.ShapeRange On Error Resume Next ' does it have a text frame? If.HasTextFrame Then ' does the text frame have any text? ' see if there's any there ' before trying to alter it If.TextFrame.HasText Then.TextFrame.TextRange.Text = "And here you are, safely" End If End If End Sub AppleScript --get the selected shape via the handler set selectedshape to my GetSelectedShape() --paste it in below! try --to avoid error messages if shape --has no text frame or no text tell selectedshape if has text frame then --does it have one? --if so, does the text frame --have any text? if has text of its text frame then --needs 'its' set content of text range of its text frame to "And here you are safely." end if end if end try 18

19 GetSelectedShape IsSafeToTouch(selectedShape) selectedshape true ( on error false ) --get the selected shape via the handler set selectedshape to my GetSelectedShape() --paste it in below! set check to my IsSafeToTouch(selectedShape) if check then set content of text range of selectedshape's text frame to "Different text depending on context." end if on IsSafeToTouch(selectedShape) try --to avoid error messages if shape has no --text frame or no text tell selectedshape if has text frame then --does it have one? --if so, does the text frame --have any text? if has text of its text frame then --needs 'its' return true else return false end if else return false end if on error return false end try end IsSafeToTouch 19

20 テキストの書式を設定して文字を選択する 図形のテキストの書式を設定する AppleScript Visual Basic For Applications (VBA) Sub TextFormatting() With ActiveWindow.Selection.ShapeRange ' work with all the text in the shape With.TextFrame.TextRange ' Change font formatting With.Font.Name = "Arial".Size = 24 ' make it red.color.rgb = RGB(255, 0, 0).Bold = True ' and so on End Sub AppleScript --get the selected shape via the handler set selectedshape to my GetSelectedShape() -- paste it in! tell text range of text frame of selectedshape tell its font set {font name, font size, font color, bold} to {"Arial", 24, {255, 0, 0}, true} AppleScript font ( 4 ) 1 tell of of font 20

21 図形の文字を選択する UI [ ] [ ] 4 character MsgBox MsgBox 1 2 word 3 RGB Long Sub WorkWithPartOfText() Dim x As Long, g As Long With ActiveWindow.Selection.ShapeRange.TextFrame.TextRange ' access one character at a time For x = 1 To.Characters.Count MsgBox.Characters(x) Next ' make every second character blue ' if x divided by 2 = x mod 2... If x / 2 = x \ 2 Then.Characters(x).Font.Color.RGB = RGB(0, 0, 255) End If ' or a word at a time: g = 0 For x = 1 To.Words.Count MsgBox.Words(x) 'make every word a different shade g = g If g > 255 Then g = 0.Words(x).Font.Color.RGB = RGB(0, g, 100) Next ' or a "run" at a time ' every change in formatting starts a new run ' if the number of runs in a textrange is 1, ' you know that all of the text ' in the range is formatted identically. For x = 1 To.Runs.Count ' For each run, display the text and the Long that ' represents the text's RGB color MsgBox (.Runs(x).Text & " - " &.Runs(x).Font.Color.RGB) Next 21

22 ' or arbitrary selections of text ' 6 characters starting at position 3, for example MsgBox.Characters(3, 6) AppleScript --get the selected shape via the handler set selectedshape to my GetSelectedShape() -- paste it in below! tell text range of text frame of selectedshape repeat with i from 1 to count (characters) display dialog (get content of character i) --make every second character blue if i / 2 = i div 2 then set font color of font of character i to {0, 0, 255} end if end repeat set g to 0 repeat with i from 1 to count words display dialog (get content of word i) --make every word a different shade set g to g if g > 255 then set g to 0 set font color of font of word i to {0, g, 100} end repeat set AppleScript's text item delimiters to {", "} repeat with i from 1 to (count text flows) set therun to text flow i display dialog (get content of therun) & " - {" & font color of font of therun & "}" end repeat set AppleScript's text item delimiters to {""} display dialog (text 3 thru 8 of (get content)) repeat x i x y animation behavior property effect Microsoft PowerPoint Dictionary Expected variable name or property but found application constant or consideration AppleScript 22

23 display dialog text frame " " content get Can't make content of text frame... into a string PowerPoint Unicode Mac OS X 10.3 (Panther) display dialog Unicode as string Unicode get VBA MsgBox AppleScript display dialog character word text flow content display dialog VBA Words(Index) Text TextRange Applescript get word i VBA Character Word Run MsgBox ( Debug.Print) MsgBox display dialog (display dialog Mac OS X 10.4 (Tiger) ) AppleScript VBA (Long) 3 display dialog {0, 200, 100} as string & AppleScript "" {0, 200, 100} ", " 0, 200, 100 {", "} {0, 100, 200} display dialog {""} Macintosh [ ] ({""} {", "} ) 23

24 スライドマスタとドキュメントプロパティ マスタ slide 1 shape Visual Basic for Applications (VBA) Sub AddShapeOnMaster() With ActiveWindow.Selection.SlideRange ' Make a new shape in the slide's Master instead of the slide itself Call.Master.Shapes.AddShape(msoShapeRectangle, 10, 20, 30, 40) End Sub AppleScript --get the selected slide make sure slide pane is active set theindex to slide index of slide of view of active window set selectedslide to slide theindex of active presentation --no 'master' property of slide, get slide master of presentation set themaster to slide master of active presentation make new shape at themaster with properties {auto shape type: autoshape rectangle, left position:10, top:20, width:30, height:40} ( ) slide of view Dictionary VBA.Master slide master presentation slide master ( ) active presentation Microsoft Visual Basic Editor Shape AddShapes AutoShape MsoAutoShapeType 4 (Left Top Width Height) VBA 24

25 Dictionary (Drawing Suite) shape auto shape type ( / ) (long ) Visual Basic Editor MsoAutoShapeType autoshape rectangle shape shape type auto shape type autoshape rectangle make new shape left position top width height Microsoft PowerPoint 2004 for Mac UI " " 3 Microsoft Windows PowerPoint VBA Macintosh PowerPoint VBA AppleScript Macintosh VBA VBA ActivePresentation.ApplyTemplate (FileName) apply template (file name ) ドキュメントプロパティ PowerPoint Microsoft Office Sub ListBuiltInProperties() Dim x As Long On Error Resume Next Debug.Print "BEGIN ====================================" With ActivePresentation.BuiltInDocumentProperties For x = 1 To.Count Debug.Print "Property Number: " & CStr(x) Debug.Print "Property Name: " &.Item(x).Name Debug.Print "Property Value: " &.Item(x).Value Next Debug.Print "END =====================================" End Sub 25

26 AppleScript set thelog to "BEGIN =============================" & return set alldocprops to every document property of active presentation repeat with i from 1 to count alldocprops set thedocprop to item i of alldocprops set thelog to thelog & "Property Number: " & i & return set thelog to thelog & "Property Name: " & name of thedocprop & return set thelog to thelog & "Property Value: " & value of thedocprop & return end repeat set thelog to thelog & "END =========================" & return thelog AppleScript " " document property AppleScript application (30 ) Microsoft Office Suite Office UI VBA Template DocumentProperty With ActivePresentation MsgBox.BuiltInDocumentProperties("Template").Value AppleScript set templatevalue to get value of document property "Template" of active presentation if templatevalue missing value then display dialog templatevalue else display dialog "There is no Template: this presentation is " & "based on a Blank New Presentation" with icon 2 end if template missing value ( ) VBA MsgBox AppleScript 26

27 Template Author / VBA / With ActivePresentation.BuiltInDocumentProperties("Author") = "Your Name Here" ( Office Microsoft Entourage [ ] Author ) AppleScript set value of document property "Author" of active presentation to "Phyllis Harris, Manager" [ ] [ ] [ ] PowerPoint AppleScript のまとめ Visual Basic for Applications (VBA) AppleScript Dictionary PowerPoint Dictionary Microsoft PowerPoint Word Excel 27

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

10 11 12 33.4 1 open / window / I / shall / the? 79.3 2 something / want / drink / I / to. 43.5 3 the way / you / tell / the library / would / to / me

10 11 12 33.4 1 open / window / I / shall / the? 79.3 2 something / want / drink / I / to. 43.5 3 the way / you / tell / the library / would / to / me -1- 10 11 12 33.4 1 open / window / I / shall / the? 79.3 2 something / want / drink / I / to. 43.5 3 the way / you / tell / the library / would / to / me? 28.7 4 Miyazaki / you / will / in / long / stay

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

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

4 How to Print Cards When you want to print Select the cards you would like to print from your WORD LIST. About the WORD LIST To print multiple cards,

4 How to Print Cards When you want to print Select the cards you would like to print from your WORD LIST. About the WORD LIST To print multiple cards, 5 Flash Cards Maker APRICOT Publishing www.apricot-plaza.co.jp 4 How to Print Cards When you want to print Select the cards you would like to print from your WORD LIST. About the WORD LIST To print multiple

More information

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble

25 II :30 16:00 (1),. Do not open this problem booklet until the start of the examination is announced. (2) 3.. Answer the following 3 proble 25 II 25 2 6 13:30 16:00 (1),. Do not open this problem boolet until the start of the examination is announced. (2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.

More information

ProVisionaire Control V3.0セットアップガイド

ProVisionaire Control V3.0セットアップガイド ProVisionaire Control V3 1 Manual Development Group 2018 Yamaha Corporation JA 2 3 4 5 NOTE 6 7 8 9 q w e r t r t y u y q w u e 10 3. NOTE 1. 2. 11 4. NOTE 5. Tips 12 2. 1. 13 3. 4. Tips 14 5. 1. 2. 3.

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

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

189 2015 1 80

189 2015 1 80 189 2015 1 A Design and Implementation of the Digital Annotation Basis on an Image Resource for a Touch Operation TSUDA Mitsuhiro 79 189 2015 1 80 81 189 2015 1 82 83 189 2015 1 84 85 189 2015 1 86 87

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

LiveCode初心者開発入門サンプル

LiveCode初心者開発入門サンプル / About LiveCode 01:... 11 02: Create... 15 set 03:... 21 name title LiveCode 04:... 29 global local width height 05:... 37 Controls Tools Palette Script Editor message handler 06:... 52 RGB 07:... 63

More information

D0020.PDF

D0020.PDF n 3 X n Y n = Z n 17 1995 300 n n 2 3 2 a b c c 2 a 2 b 2 600 2000 322 3 15 2 3 580 3 1 5 4 3 2 1 300 2 1 2 1 1 ExcelVBA 2 VBA 1 VBA 2 API Sleep ExcelVBA 2 100 60 80 50 ExcelVBA API Sleep 3 100 60 (80

More information

10 2000 11 11 48 ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) ( ) CU-SeeMe NetMeeting Phoenix mini SeeMe Integrated Services Digital Network 64kbps 16kbps 128kbps 384kbps

More information

OS Windows Mac OS Windows Mac OS Windows XP Mac OS X OS Windows 95 Mac OS

OS Windows Mac OS Windows Mac OS Windows XP Mac OS X OS Windows 95 Mac OS About use of the Chinese character which is not in a computer Reuse and sharing of data by the large-scale character set and the Macro program HUKUDA Sinobu 1 125000 800 JIS 2 2000 3 1 488 545 2 JIS X

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

はじめに

はじめに 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

ron.dvi

ron.dvi 12 Effect of occlusion and perception of shadow in depth perception caused by moving shadow. 1010361 2001 2 5 (Occlusion), i Abstract Effect of occlusion and perception of shadow in depth perception caused

More information

Microsoft Word - D JP.docx

Microsoft Word - D JP.docx Application Service Gateway Thunder/AX Series vthunder ライセンスキー インストール 手順 1 1.... 3 2. vthunder... 3 3. ACOS... 3 4. ID... 5 5.... 8 6.... 8 61... 8 62 GUI... 10 2 1. 概要 2. vthunder へのアクセス 方法 SSHHTTPSvThunder

More information

syspro-0405.ppt

syspro-0405.ppt 3 4, 5 1 UNIX csh 2.1 bash X Window 2 grep l POSIX * more POSIX 3 UNIX. 4 first.sh #!bin/sh #first.sh #This file looks through all the files in the current #directory for the string yamada, and then prints

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

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

西川町広報誌NETWORKにしかわ2011年1月号

西川町広報誌NETWORKにしかわ2011年1月号 NETWORK 2011 1 No.657 平 成 四 年 四 の 開 校 に 向 け て 家 庭 教 育 を 考 え よ う! Every year around the winter holiday the Japanese custom of cleaning out your office space is performed. Everyone gets together and cleans

More information

I N S T R U M E N T A T I O N & E L E C T R I C A L E Q U I P M E N T Pressure-resistant gasket type retreat method effective bulk compressibility Fro

I N S T R U M E N T A T I O N & E L E C T R I C A L E Q U I P M E N T Pressure-resistant gasket type retreat method effective bulk compressibility Fro Cable Gland This is the s to use for Cable Wiring in the hazardous location. It is much easier to install and maintenance and modification compared with Conduit Wiring with Sealing Fitting. The Standard

More information

24 Depth scaling of binocular stereopsis by observer s own movements

24 Depth scaling of binocular stereopsis by observer s own movements 24 Depth scaling of binocular stereopsis by observer s own movements 1130313 2013 3 1 3D 3D 3D 2 2 i Abstract Depth scaling of binocular stereopsis by observer s own movements It will become more usual

More information

Microsoft Word - j201drills27.doc

Microsoft Word - j201drills27.doc Drill 1: Giving and Receiving (Part 1) [Due date: ] Directions: Describe each picture using the verb of giving and the verb of receiving. E.g.) (1) (2) (3) (4) 1 (5) (6) Drill 2: Giving and Receiving (Part

More information

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir 13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software 37.1 37.1 Nspire Nspire Nspire 37.1: Student Software 13 2 13 Student Software esc

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

Microsoft Word - j201drills27.doc

Microsoft Word - j201drills27.doc Drill 1: Giving and Receiving (Part 1) Directions: Describe each picture using the verb of giving and the verb of receiving. (1) (2) (3) (4) 1 (5) (6) Drill 2: Giving and Receiving (Part 1) Directions:

More information

RR-US470 (RQCA1588).indd

RR-US470 (RQCA1588).indd RR-US470 Panasonic Corporation 2006 2 3 4 http://www.sense.panasonic.co.jp/ 1 2 3 ( ) ZOOM 5 6 7 8 9 10 4 2 1 3 4 2 3 1 3 11 12 1 4 2 5 3 1 2 13 14 q φ φ 1 2 3 4 3 1 2 3 4 2 3 15 16 1 2 3 [/]p/o 17 1 2

More information

Word AppleScript

Word AppleScript (URL Web ) Microsoft Excel Entourage PowerPoint Microsoft Corporation Apple Apple Mac Mac OS Apple Inc. 2008 Microsoft Corporation. All rights reserved. Word AppleScript...4...5...11...16...20...34 3 Word

More information

Webster's New World Dictionary of the American Language, College Edition. N. Y. : The World Publishing Co., 1966. [WNWD) Webster 's Third New International Dictionary of the English Language-Unabridged.

More information

1 VisBAR edu H 2 O.....

1 VisBAR edu H 2 O..... VisBAR edu v1.03 ( ) 25 4 22 1 VisBAR edu 1 1.1....................................................... 1 1.2.................................................. 2 2 3 2.1 H 2 O.........................................

More information

_勉強会_丸山さつき_v3

_勉強会_丸山さつき_v3 CSS 2019/6/21 1 CSS CSS CSS!2 CSS Web!3 CSS HTML CSS CSS!4 CSS!5 !6 Id class id class CSS!7 !8 body 16px p 16px px, rem, em, %!9 !10 body 16px p 16px 1 CSS!11 !12 CSS CSS!13 CSS 4 CSS 1. OOCSS 2. SMACSS

More information

2 : Open Clip Art Library [4] 2 3 4 5 6 2. 2 2. 1 Microsoft Office PowerPoint Web PowerPoint 2 Yahoo! Web [5] SlideShare 2. 1. 1 Yahoo! Web Yahoo! Web

2 : Open Clip Art Library [4] 2 3 4 5 6 2. 2 2. 1 Microsoft Office PowerPoint Web PowerPoint 2 Yahoo! Web [5] SlideShare 2. 1. 1 Yahoo! Web Yahoo! Web DEWS2008 E4-4 606-8501 E-mail: {hsato,oyama,tanaka}@dl.kuis.kyoto-u.ac.jp.. Supporting the Selection of Images Based on Referential Semantics from Surrounding Information of the Image in Presentation Files

More information

0 Speedy & Simple Kenji, Yoshio, and Goro are good at English. They have their ways of learning. Kenji often listens to English songs and tries to remember all the words. Yoshio reads one English book every

More information

0527-PanMark

0527-PanMark Windows Pan-Mark Pan-Mark for Windows User s Guide Version 2.5 Copyright Panduit Corp. 1998, All Rights Reserved COPYRIGHT NOTICE Copyright 1998 Panduit Corp. All rights reserved. No part of this publication

More information

平成29年度英語力調査結果(中学3年生)の概要

平成29年度英語力調査結果(中学3年生)の概要 1 2 3 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 4 5 楽しめるようになりたい 6 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 7 1 そう思う 2 どちらかといえば そう思う 3 どちらかといえば そう思わない 4 そう思わない 8 1 そう思う 2 どちらかといえば そう思う

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

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a

Page 1 of 6 B (The World of Mathematics) November 20, 2006 Final Exam 2006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (10pts) (a Page 1 of 6 B (The World of Mathematics) November 0, 006 Final Exam 006 Division: ID#: Name: 1. p, q, r (Let p, q, r are propositions. ) (a) (Decide whether the following holds by completing the truth

More information

学部ゼミ新規申請方法 (Blackboard 9.1) Seminar Application Method for Undergraduate Seminar Courses ゼミ新規申請は Blackboard で受け付けます! 次セメスターにゼミ履修を希望する学生は 下記マニュアルに従ってゼミ

学部ゼミ新規申請方法 (Blackboard 9.1) Seminar Application Method for Undergraduate Seminar Courses ゼミ新規申請は Blackboard で受け付けます! 次セメスターにゼミ履修を希望する学生は 下記マニュアルに従ってゼミ ゼミ新規申請は Blackboard で受け付けます! 次セメスターにゼミ履修を希望する学生は 下記マニュアルに従ってゼミ新規申請を行ってください 現在 ゼミを履修している場合は 同一ゼミが次セメスター以降も自動登録されます ゼミのキャンセル 変更を希望する場合の手続きは アカデミック オフィス HP を確認してください ( サブゼミはセメスター毎に申請を行う必要があります 自動登録されません )

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

浜松医科大学紀要

浜松医科大学紀要 On the Statistical Bias Found in the Horse Racing Data (1) Akio NODA Mathematics Abstract: The purpose of the present paper is to report what type of statistical bias the author has found in the horse

More information

Read the following text messages. Study the names carefully. 次のメッセージを読みましょう 名前をしっかり覚えましょう Dear Jenny, Iʼm Kim Garcia. Iʼm your new classmate. These ar

Read the following text messages. Study the names carefully. 次のメッセージを読みましょう 名前をしっかり覚えましょう Dear Jenny, Iʼm Kim Garcia. Iʼm your new classmate. These ar LESSON GOAL: Can read a message. メッセージを読めるようになろう Complete the conversation using your own information. あなた自身のことを考えて 会話を完成させましょう 1. A: Whatʼs your name? B:. 2. A: Whatʼs your phone number, (tutor says studentʼs

More information

Microsoft Word - PCM TL-Ed.4.4(特定電気用品適合性検査申込のご案内)

Microsoft Word - PCM TL-Ed.4.4(特定電気用品適合性検査申込のご案内) (2017.04 29 36 234 9 1 1. (1) 3 (2) 9 1 2 2. (1) 9 1 1 2 1 2 (2) 1 2 ( PSE-RE-101/205/306/405 2 PSE-RE-201 PSE-RE-301 PSE-RE-401 PSE-RE-302 PSE-RE-202 PSE-RE-303 PSE-RE-402 PSE-RE-203 PSE-RE-304 PSE-RE-403

More information

作業手順手引き

作業手順手引き Praat Introduction to Praat: Let's take a look at sounds : * WS Dec/01/'14 : ver. 1.1.4 1. Praat STEP 1: STEP 2: STEP 3: STEP 4: STEP 2 Editor STEP 3 Dynamic menu 2 FAQ: Pitch analysis http://goo.gl/r65la

More information

Microsoft Word - KUINS-Air_W10_ docx

Microsoft Word - KUINS-Air_W10_ docx KUINS-Air 無線 LAN への接続 (Windows10) How to connect to Wi-Fi KUINS-Air (Windows10) 2019 年 7 月 KUINS-Air への接続には A ID パスワードを使用した接続 もしくは B クライアント証明書を使用した接続方法の 2 種類があります There are 2 ways to connect to KUINS-Air,

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

展開とプロビジョニングの概念

展開とプロビジョニングの概念 ADOBE CREATIVE SUITE 5 2010 Adobe Systems Incorporated and its licensors. All rights reserved. Adobe Creative Suite Deployment and Provisioning Concepts This guide is licensed for use under the terms of

More information

3 2

3 2 1 2016 January No.747 3 2 CONTENTS 2 5 9 10 16 17 18 19 20 26 27 28 Public relations brochure of Higashikawa 1 2016 January No.747 4 HIGASHIKAWA TOWN NEWS 5 HIGASHIKAWA TOWN NEWS HIGASHIKAWA TOWN NEWS

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

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

5 11 3 1....1 2. 5...4 (1)...5...6...7...17...22 (2)...70...71...72...77...82 (3)...85...86...87...92...97 (4)...101...102...103...112...117 (5)...121...122...123...125...128 1. 10 Web Web WG 5 4 5 ²

More information

1..FEM FEM 3. 4.

1..FEM FEM 3. 4. 008 stress behavior at the joint of stringer to cross beam of the steel railway bridge 1115117 1..FEM FEM 3. 4. ABSTRACT 1. BackgroundPurpose The occurrence of fatigue crack is reported in the joint of

More information

L C -6D Z3 L C -0D Z3 3 4 5 6 7 8 9 10 11 1 13 14 15 16 17 OIL CLINIC BAR 18 19 POWER TIMER SENSOR 0 3 1 3 1 POWER TIMER SENSOR 3 4 1 POWER TIMER SENSOR 5 11 00 6 7 1 3 4 5 8 9 30 1 3 31 1 3 1 011 1

More information

Microsoft Word - Live Meeting Help.docx

Microsoft Word - Live Meeting Help.docx 131011 101919 161719 19191110191914 11191417 101919 1915101919 Microsoft Office Live Meeting 2007 191714191412 1913191919 12 151019121914 19151819171912 17191012151911 17181219 1610121914 19121117 12191517

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

2 3

2 3 RR-XR330 C Matsushita Electric Industrial Co., Ltd.2001 2 3 4 + - 5 6 1 2 3 2 1-3 + + - 22 +- 7 22 8 9 1 2 1 2 1 2 3 12 4 1 2 5 12 1 1 2 3 1 2 1 2 10 11 1 2 $% 1 1 2 34 2 % 3 % 1 2 1 2 3 1 2 12 13 1 2

More information

Technische Beschreibung P82R SMD

Technische Beschreibung P82R SMD P26 halstrup-walcher GmbH http://www.krone.co.jp/ Stegener Straße 10 D-79199 Kirchzarten, Germany 124-0023 2-22-1 TEL:03-3695-5431 FAX:03-3695-5698 E-MAIL:sales-tokyo@krone.co.jp 530-0054 2-2-9F TEL:06-6361-4831

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

elemmay09.pub

elemmay09.pub Elementary Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Activity Bank Number Challenge Time:

More information

コンピュータ概論

コンピュータ概論 4.1 For Check Point 1. For 2. 4.1.1 For (For) For = To Step (Next) 4.1.1 Next 4.1.1 4.1.2 1 i 10 For Next Cells(i,1) Cells(1, 1) Cells(2, 1) Cells(10, 1) 4.1.2 50 1. 2 1 10 3. 0 360 10 sin() 4.1.2 For

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

h23w1.dvi

h23w1.dvi 24 I 24 2 8 10:00 12:30 1),. Do not open this problem booklet until the start of the examination is announced. 2) 3.. Answer the following 3 problems. Use the designated answer sheet for each problem.

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

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

/ SCHEDULE /06/07(Tue) / Basic of Programming /06/09(Thu) / Fundamental structures /06/14(Tue) / Memory Management /06/1

/ SCHEDULE /06/07(Tue) / Basic of Programming /06/09(Thu) / Fundamental structures /06/14(Tue) / Memory Management /06/1 I117 II I117 PROGRAMMING PRACTICE II 2 MEMORY MANAGEMENT 2 Research Center for Advanced Computing Infrastructure (RCACI) / Yasuhiro Ohara yasu@jaist.ac.jp / SCHEDULE 1. 2011/06/07(Tue) / Basic of Programming

More information

1 2 3

1 2 3 INFORMATION FOR THE USER DRILL SELECTION CHART CARBIDE DRILLS NEXUS DRILLS DIAMOND DRILLS VP-GOLD DRILLS TDXL DRILLS EX-GOLD DRILLS V-GOLD DRILLS STEEL FRAME DRILLS HARD DRILLS V-SELECT DRILLS SPECIAL

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

DDR3 SDRAMメモリ・インタフェースのレベリング手法の活用

DDR3 SDRAMメモリ・インタフェースのレベリング手法の活用 WP-01034-1.0/JP DLL (PVT compensation) 90 PLL PVT compensated FPGA fabric 90 Stratix III I/O block Read Dynamic OC T FPGA Write Memory Run Time Configurable Run Time Configurable Set at Compile dq0 dq1

More information

フリーセルプロの使い方

フリーセルプロの使い方 FreeCell Pro 011 2 FreeCell Pro 2002 FCPRO.HLP FreeCell Pro6.4 6.5 FreeCell Pro 1000 http://solitairelaboratory.com/fcpro.html FreeCell Pro 2009 2 3 FreeCell Pro Microsoft FC 0 Windows 3.1 FreeCell Pr

More information

L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? Well,/ you re very serious person/ so/ I think/ your blood type is A. Wow!/ G

L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? Well,/ you re very serious person/ so/ I think/ your blood type is A. Wow!/ G L1 What Can You Blood Type Tell Us? Part 1 Can you guess/ my blood type? 当ててみて / 私の血液型を Well,/ you re very serious person/ so/ I think/ your blood type is A. えーと / あなたはとっても真面目な人 / だから / 私は ~ と思います / あなたの血液型は

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

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf ("%s", str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i

1 # include < stdio.h> 2 # include < string.h> 3 4 int main (){ 5 char str [222]; 6 scanf (%s, str ); 7 int n= strlen ( str ); 8 for ( int i=n -2; i ABC066 / ARC077 writer: nuip 2017 7 1 For International Readers: English editorial starts from page 8. A : ringring a + b b + c a + c a, b, c a + b + c 1 # include < stdio.h> 2 3 int main (){ 4 int a,

More information

Sequencher 4.9 Confidence score Clustal Clustal ClustalW Sequencher ClustalW Windows Macintosh motif confidence Sequencher V4.9 Trim Ends Without Prev

Sequencher 4.9 Confidence score Clustal Clustal ClustalW Sequencher ClustalW Windows Macintosh motif confidence Sequencher V4.9 Trim Ends Without Prev 2009 Gene Codes Corporation Gene Codes Corporation 775 Technology Drive, Ann Arbor, MI 48108 USA 1.800.497.4939 (USA) +1.734.769.7249 (elsewhere) +1.734.769.7074 (fax) www.genecodes.com info@genecodes.com

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

Microsoft Word - PrivateAccess_UM.docx

Microsoft Word - PrivateAccess_UM.docx `````````````````SIRE Page 1 English 3 日本語 7 Page 2 Introduction Welcome to! is a fast, simple way to store and protect critical and sensitive files on any ixpand Wireless Charger. Create a private vault

More information

AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(

AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len( AtCoder Regular Contest 073 Editorial Kohei Morita(yosupo) 29 4 29 A: Shiritori if python3 a, b, c = input().split() if a[len(a)-1] == b[0] and b[len(b)-1] == c[0]: print( YES ) else: print( NO ) 1 B:

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

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-88 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

Wonderful Hello! Hello! Hey, lets get together! At one? At two? At three?...hello! ... If it was thrown away as something unnecessary Farewell, my love! from some window frame or some chest of drawers

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

L3 Japanese (90570) 2008

L3 Japanese (90570) 2008 90570-CDT-08-L3Japanese page 1 of 15 NCEA LEVEL 3: Japanese CD TRANSCRIPT 2008 90570: Listen to and understand complex spoken Japanese in less familiar contexts New Zealand Qualifications Authority: NCEA

More information

SpecimenOTKozGo indd

SpecimenOTKozGo indd TM The Kozuka Gothic TM typeface family is composed of six weights that cover various uses ranging from body text composition to headline compositions. This typeface family is now available in OpenType

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

ドライバインストールガイド

ドライバインストールガイド PRIMERGY Single Port ファイバーチャネルカード (8Gbps) Dual Port ファイバーチャネルカード (8Gbps) (PG-FC205/PG-FC205L) (PG-FC206/PG-FC206L) CA092276-8938-01 ドライバインストールガイド i 目次 1. ドライバのインストール / アンインストール方法... 3 1.1. ドライバのダウンロード

More information

Level 3 Japanese (90570) 2011

Level 3 Japanese (90570) 2011 90570 905700 3SUPERVISOR S Level 3 Japanese, 2011 90570 Listen to and understand complex spoken Japanese in less familiar contexts 2.00 pm riday Friday 1 November 2011 Credits: Six Check that the National

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

ASP英語科目群ALE Active Learning in English No 7. What activity do you think is needed in ALE for students to improve student s English ability? active listening a set of important words before every lecture

More information

1 I EViews View Proc Freeze

1 I EViews View Proc Freeze EViews 2017 9 6 1 I EViews 4 1 5 2 10 3 13 4 16 4.1 View.......................................... 17 4.2 Proc.......................................... 22 4.3 Freeze & Name....................................

More information

Step 1 Feature Extraction Featuer Extraction Feature Extraction Featuer Extraction Image Analysis Start>Programs>Agilent-Life Sciences>Feature Extract

Step 1 Feature Extraction Featuer Extraction Feature Extraction Featuer Extraction Image Analysis Start>Programs>Agilent-Life Sciences>Feature Extract Agilent G2565AA Feature Extraction Step 1 Feature Extraction Step 2 Step 3 Step 4 ( ) Step 5 ( ) Step 6 Step 7 Step 8 Feature Extraction Step 9 Step 10 Feature Extraction Step 11 Feature Extraction Step

More information

Contents Logging in 3-14 Downloading files from e-ijlp 15 Submitting files on e-ijlp Sending messages to instructors Setting up automatic

Contents Logging in 3-14 Downloading files from e-ijlp 15 Submitting files on e-ijlp Sending messages to instructors Setting up automatic e-ijlp(lms) の使い方 How to Use e-ijlp(lms) 学生用 / Guidance for Students (ver. 2.1) 2018.3.26 金沢大学総合日本語プログラム Integrated Japanese Language Program Kanazawa University Contents Logging in 3-14 Downloading files

More information

PBASIC 2.5 PBASIC 2.5 $PBASIC directive PIN type New DEBUG control characters DEBUGIN Line continuation for comma-delimited lists IF THEN ELSE * SELEC

PBASIC 2.5 PBASIC 2.5 $PBASIC directive PIN type New DEBUG control characters DEBUGIN Line continuation for comma-delimited lists IF THEN ELSE * SELEC PBASIC 2.5 PBASIC 2.5 BASIC Stamp Editor / Development System Version 2.0 Beta Release 2 2.0 PBASIC BASIC StampR PBASIC PBASIC PBASIC 2.5 Parallax, Inc. PBASIC 2.5 PBASIC 2.5 support@microbot-ed.com 1

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

Cleaner XL 1.5 クイックインストールガイド

Cleaner XL 1.5 クイックインストールガイド Autodesk Cleaner XL 1.5 Contents Cleaner XL 1.5 2 1. Cleaner XL 3 2. Cleaner XL 9 3. Cleaner XL 12 4. Cleaner XL 16 5. 32 2 1. Cleaner XL 1. Cleaner XL Cleaner XL Administrators Cleaner XL Windows Media

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

PC_14ZY6_BFT150A_US_ indd

PC_14ZY6_BFT150A_US_ indd PARTS CATALOG BFT 0A OB NO.00-ZY- US Instruction for use of parts catalogue This parts catalogue was prepared based on the latest information available as of October,. See the Service Bulletin for any

More information

206“ƒŁ\”ƒ-fl_“H„¤‰ZŁñ

206“ƒŁ\”ƒ-fl_“H„¤‰ZŁñ 51 206 51 63 2007 GIS 51 1 60 52 2 60 1 52 3 61 2 52 61 3 58 61 4 58 Summary 63 60 20022005 2004 40km 7,10025 2002 2005 19 3 19 GIS 2005GIS 2006 2002 2004 GIS 52 2062007 1 2004 GIS Fig.1 GIS ESRIArcView

More information

きずなプロジェクト-表紙.indd

きずなプロジェクト-表紙.indd P6 P7 P12 P13 P20 P28 P76 P78 P80 P81 P88 P98 P138 P139 P140 P142 P144 P146 P148 #1 SHORT-TERM INVITATION GROUPS 2012 6 10 6 23 2012 7 17 14 2012 7 17 14 2012 7 8 7 21 2012 7 8 7 21 2012 8 7 8 18

More information

.N..

.N.. Examination of the lecture by the questionnaire of class evaluation -Analysis and proposal of result at the first term of fiscal year - Kazuo MORI, Tukasa FUKUSHIMA, Michio TAKEUCHI, Norihiro UMEDA, Katuya

More information