(pack ) Toplevel

Size: px
Start display at page:

Download "(pack ) Toplevel"

Transcription

1 (pack ) Toplevel Toplevel pack after anchor before expand fill ipadx ipady padx pady side (place ) place anchor x y relx rely width height relwidth relheight bordermode i

2 Python GUI I Python Web 1 Python (GUI) Widget Python Widget GUI (widget: Window gadget ) Python Widget [2] [3] ( [2] [3] ) Python Widget GUI Widget Python Widget python/lib/lib-tk/tkinter.py Python Python Widget UNIX Python Python/Demo/tkinter/Guido/ Python/Demo/tkinter/Matt/ ( ) Python Widget Tcl/Tk Tcl/Tk ( [4],[5]) Python Tcl/Tk Python Widget Tcl/Tk Python Tcl Python Tcl/Tk 1 Python GUI I ( Com Vol.11, No ) 1

3 Python 2 1 Python GUI II WindowsNT Windows98 UNIX ( ) Python ( [6] [7]) Python Python x f() x.f() x f() x f(x) Widget Widget Python Widget W Frame Python GUI 2 1 GUI GUI b (Python ) b b Widget Button b 2 Python Widget 1 Pet ( ) cat dog 2 cat ( 2) 2

4 from Tkinter import * from Canvas import * import sys names=("alice","bob","carol") def draw(c,s): c.addtag_all( t ) c.delete( t ) CanvasText(c, 100, 100,text=s,font= Times 30 bold italic, anchor= nw ) def cmd(): t=a1.curselection() if t is (): return s = names[a1.index(t[0])] draw(c,s) def cmd1(): draw(c,"cat") def cmd2(): draw(c,"dog") def quit(): sys.exit() a=frame() a.pack(side= left,fill= y ) a1 = Listbox(a,width=10) a1.pack(expand=yes,fill= y ) for n in range(0,len(names)): a1.insert(n,names[n]) a2=button(a,text="ok",command=cmd) a2.pack() b=frame() b.pack(fill= x ) b1=label(b,text="sample Program",font="times") b1.pack() b2 = Menubutton(b,text="Pet",relief= raised,width=30) b2.pack(side=left,fill= y ) m1 = Menu(b2) m1.add_command(label="cat",command=cmd1) m1.add_command(label="dog",command=cmd2) b2["menu"]=m1 b3=button(b,text= quit,command=quit) b3.pack(side=right) # --- Canvas starts from this line --- c=canvas(width=300,height=200,background= cyan ) c.pack() mainloop() 1: 1. 3

5 2: 1 2 ( ) (Label) Sample Program b1=label(b,text="sample Program",font="times") b1.pack() (Botton) quit OK 1 quit quit b3=button(b,text= quit,command=quit) b3.pack(side=right) def quit(): sys.exit() OK a2=button(a,text="ok",command=cmd) a2.pack() def cmd(): t=a1.curselection() 4

6 if t is (): return s = names[a1.index(t[0])] draw(c,s) (Menu) Pet b2 = Menubutton(b,text="Pet",relief= raised,width=30) b2.pack(side=left,fill= y ) m1 = Menu(b2) m1.add_command(label="cat",command=cmd1) m1.add_command(label="dog",command=cmd2) b2["menu"]=m1 def cmd1(): draw(c,"cat") def cmd2(): draw(c,"dog") (Listbox) Alice, Bob, Carol names=("alice","bob","carol") a1 = Listbox(a,width=10) a1.pack(expand=yes,fill= y ) for n in range(0,len(names)): a1.insert(n,names[n]) OK Canvas def cmd(): t=a1.curselection() if t is (): return s = names[a1.index(t[0])] draw(c,s) a1.curselection() 5

7 (Canvas) c=canvas(width=300,height=200,background= cyan ) c.pack() def draw(c,s): c.addtag_all( t ) c.delete( t ) CanvasText(c, 100, 100,text=s,font= Times 30 bold italic,anchor= nw ) draw Widget (2 2 ) Python 2 place pack 3 (pack ) ( ) pack pack 4 4 Python top, bottom, left, right pack side A a a.pack(side= left ) ( top, bottom, left, right TOP, BOTTOM, LEFT, RIGHT ) A A 3 6

8 3: A 4: 3 A A A A A 4 B 5 B B pack anchor 7

9 B A 5: 4 B pack fill A a a.pack(fill= x ) x fill x y, both, none X, Y, BOTH, NONE b1 b2 b3 a1 c a2 6: 1 a1, a2, b1, b2, b3, c 1 8

10 a=frame() a1 = Listbox(a,...) a2=button(a,...) b=frame() b1=label(b,...) b2 = Menubutton(b,...) m1 = Menu(b2) b3=button(b,...) c=canvas(...) a=frame() a 2 a1 = Listbox(a,...) a1 Listbox a a a2 a b1 b2 b3 b 3.3 Toplevel a, b, c 3 Toplevel 1 1 Toplevel 6 Toplevel Toplevel a, b, c 2 7 a,b,c 3 b a c 7: 1 Toplevel 9

11 3.4 ( ) 8 Toplevel a b c a1 a2 b1 b2 b3 8: Toplevel Toplevel 1 c c=canvas(width=300,height=200,background= cyan ) a a1 a1 = Listbox(a,width=10) b b1, b2, b3 ( ) b2 b3 b2.pack(side=left,fill= y ) fill y ( b2.pack(side=left) ) b b1 b3 Toplevel a1 c b1 b3 c

12 a1.pack(expand=yes,fill= y ) a1.pack(fill= y ) 6 9 b1 b2 b3 a1 a2 c 9: 1 Toplevel a2 a b3 b Toplevel 0 c a a1 a1.pack(fill= y ) fill a1 a1 a2 a1.pack(expand=yes,fill= y ) expand=yes 3.7 pack after : : after : a, b, c a.pack(); b.pack(); c.pack(after=a) 11

13 a.pack(); c.pack(); b.pack() anchor : n, s, w, e, nw, ne, sw, se, center ( center ) : anchor anchor nw n ne w center e sw s se 10: anchor : anchor from Tkinter import * a=button(text= alice,width=30) a.pack() b=button(text= bob, height=5) b.pack(side=left) c=button(text= carol ) c.pack(expand=yes, anchor= center ) mainloop() Toplevel c anchor carol before : : before : a, b, c a.pack(); b.pack(); c.pack(before=b) 12

14 a.pack(); c.pack(); b.pack() expand : YES, NO yes, no ( NO ) : ( ) fill : X, Y, BOTH, NONE x, y, both, none ( NONE) : X, Y, BOTH ipadx : ( 0) : ( ) ipady : ( 0) : ( ) padx : ( 0) : ( ) pady : ( 0) : ( ) side : LEFT, RIGHT, TOP, BOTTOM left, right, top, bottom ( TOP ) : 13

15 4 (place ) place 4.1 A ( ) place Canvas 11 Canvas (0, 0) x y w h (w, 0) (0, h) (w, h) (0,0) (w,0) y x A (0,h) (w,h) 11: (x, y) anchor 4.2 relief= raised 14

16 from Tkinter import * # we must explicitly give the size of frame if place method is used f=frame(width=150,height=60) f.pack() # relief is specified in order to see the position of label widget = Label(f, text= Hello GUI World!,relief= raised ) widget.place(x=60,y=30) mainloop() 12: 2: place 13: 2 Frame f f Label f widget.place(x=60,y=30) (60, 30) anchor anchor 12 9 center e, w, s, n nw, ne, sw, se nw n ne w center e sw s se 14: anchor place x=60,y=30 x y 15

17 4 (0, 0) (1, 0) (0, 1) (1, 1) 2 widget.place(x=60,y=30) widget.place(relx=0.4, rely=0.5) (relx = 60/150, rely = 30/60) (place relwidth relheight ) place Toplevel place 4.3 place anchor : n, w, s, e, nw, ne, sw, se, center ( nw ) : x x : : x y : : y relx : 0 1 : x rely : 0 1 : y width : : 16

18 4.3.7 height : : relwidth : 0 1 : relheight : 0 1 : bordermode : inside, outside, ignore ( inside ) : ( ) (0, 0) inside outside ignore outside [1] Mark Lutz / : Python (O Reilly Japan, 1998) [2] Mark Lutz / : Python (O Reilly Japan, 1998) [3] Mark Lutz: Programming Python,(O Reilly & Associates,Inc. 1996) [4] John K.Ousterhout / : Tcl&Tk ( 1995) [5] Tcl/Tk ( 1995) [6] Python ( Com Vol.10,No ) [7] Python (, 1999) 17

14 D033 CR:16 15 E015 CR:18 16 E060 CR:15 17 D038 18 E059 19 E062 20 E063 21 E066 22 E064 23 E065 24 d031 25 E053 26 E048 27 E049 28 B009 29 D039 30 D

14 D033 CR:16 15 E015 CR:18 16 E060 CR:15 17 D038 18 E059 19 E062 20 E063 21 E066 22 E064 23 E065 24 d031 25 E053 26 E048 27 E049 28 B009 29 D039 30 D No QUEST CR 0 E051 1 E092 2 E093 3 E098 4 E099 5 D040 6 E100 7 E014 CR:14 ( 8 E010 9 E109 10 E045 11 E044 12 E028 13 E043 1 14 D033 CR:16 15 E015 CR:18 16 E060 CR:15 17 D038 18 E059 19 E062 20 E063 21

More information

-1 - -2 - -3 - -4-2000 -5 - -6 - -7 - -8 - -9 - - 10 - -11-60 200 2,000 1980 24-12 - - 13 - - 14 - - 15 - - 16 - - 17 - 1998 '98 593'98.4. 604'99.3. 1998 '98.10.10 11 80 '98.11. 81'99.3. 49 '98.11. 50

More information

Tcl/Tkによるプログラミング

Tcl/Tkによるプログラミング 9. Tcl/Tk によるプログラミング 9.1. はじめに 9.1.1. Tcl/Tk とは Tcl/Tk は簡単に GUI(Graphical User Interface) アプリケーションを作るためのプログラミング言語です. もともと Unix 上で開発されたものですが, 現在様々なプラットフォームに移植されています. 今回使用するのは Windows95/98/NT 用に移植されたものです.Tcl/Tk

More information

cards.gif from Tkinter import * root = Tk() c0 = Canvas(root, width = 400, height = 300) c0.pack() image_data = PhotoImage(file = c1.gif ) c0.create_i

cards.gif from Tkinter import * root = Tk() c0 = Canvas(root, width = 400, height = 300) c0.pack() image_data = PhotoImage(file = c1.gif ) c0.create_i (Python ) Python Python 2 1. 2 2. 52 3. A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 4. 13 5. 6. 7. 8. 9. 13 10. 11. 12. Python http://www.jftz.com/cards/ 1 cards.gif from Tkinter import * root = Tk() c0 = Canvas(root,

More information

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif 6 Tgif 121 6.1 Tgif............................ 122 6.2..................... 123 6.2.1...................... 126 6.2.2 Dash, Type, Style, Width.......... 127 6.2.3 Pen, Fill............. 128 6.2.4 Text......................

More information

from Tkinter import * root = Tk() c0 = Canvas(root, width = 400, height = 300) c0.pack() image_data = PhotoImage(file = c1.gif ) c0.create_image(200,

from Tkinter import * root = Tk() c0 = Canvas(root, width = 400, height = 300) c0.pack() image_data = PhotoImage(file = c1.gif ) c0.create_image(200, (Python ) Python Python 2 1. 2 2. 52 3. A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 4. 13 5. 6. 7. 8. 9. 13 10. 11. 12. Python.gif 1 from Tkinter import * root = Tk() c0 = Canvas(root, width = 400, height =

More information

EPICS Channel Archiver 簡単な使用方法

EPICS Channel Archiver 簡単な使用方法 EPICS での GUI Python/Tkinter 帯名崇飛山真理 EPICS での GUI EPICS でのデータ表示ツール ( 標準 ) medm dm2k edm その他のツール Tk toolkit を利用するもの tcl/tk, python/tkinter, perl/tk, SAD/Tk 等 商用のソフトウェア, 開発ツールを使うもの Matlab, LabView, Delphi,

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

(1)

(1) ~ ~ NO YES ~ ( NO YES ) YES NO NO YES ~ ( NO YES ) YES NO 1 1 NO 2 NO 2YES YES 1 (1) 25 26 2 3 () () () () 4 () () 5 6 () 7 () 8 9 1-3-1 10 3 11 12 ~1. (1) () () (2) (3) () (4) () () (5) (6) (7) (1) (2)

More information

表紙4_1/山道 小川内 小川内 芦塚

表紙4_1/山道 小川内 小川内 芦塚 1 2008.1Vol.23 2008.1Vol.23 2 2008.1Vol.23 3 2008.1Vol.23 4 5 2008.1Vol.23 2008.1Vol.23 6 7 2008.1Vol.23 2008.1Vol.23 8 9 2008.1Vol.23 10 2008.1Vol.23 11 2008.1Vol.23 12 2008.1Vol.23 Center 13 2008.1Vol.23

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

untitled

untitled 7/67/1073,42911 15,020158,393 7/127/184,6674,913 2927 71.3 894 21.8 287 7.0 n=4108) 132 3.2 62 1.5 934 22.7 786 19.1 629 15.3 801 19.5 407 9.9 357 8.7 (n=4108) 35 35 30 25 20 15 10 153 3.7 1 0.02 23 0.6

More information

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python

Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python (Python ) C++ Python Python 1 Python2 Python3 Python 2.7 Python 3.6 Python2 Python3 Python 2.7 Python3.6 Python Python Anaconda Python Anaconda Python https://www.continuum.io/downloads 2 Python 3.6 version

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

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

たのしいプログラミング Pythonではじめよう!

たのしいプログラミング Pythonではじめよう! Title of English-language original: Python for Kids A Playful Introduction to Programming ISBN 978-1-59327-407-8, published by No Starch Press, Inc. Copyright 2013 by Jason R. Briggs. Japanese-language

More information

from tkinter import * root = Tk() # variable teban = IntVar() teban.set(1) # def start(): canvas.create_rectangle(0, 0, 560, 560, fill= white ) for k

from tkinter import * root = Tk() # variable teban = IntVar() teban.set(1) # def start(): canvas.create_rectangle(0, 0, 560, 560, fill= white ) for k Zen Deep Zen Go from tkinter import * root = Tk() canvas = Canvas(root, width = 360, height=360) canvas.pack() root.mainloop() 1 from tkinter import * root = Tk() # variable teban = IntVar() teban.set(1)

More information

ユニセフ表紙_CS6_三.indd

ユニセフ表紙_CS6_三.indd 16 179 97 101 94 121 70 36 30,552 1,042 100 700 61 32 110 41 15 16 13 35 13 7 3,173 41 1 4,700 77 97 81 47 25 26 24 40 22 14 39,208 952 25 5,290 71 73 x 99 185 9 3 3 3 8 2 1 79 0 d 1 226 167 175 159 133

More information

Qt4.0 GUI Nishio 2007 8 29 3 1 Hello Qt! 5 1.1 Hello Qt!................................. 5 1.2 (QLabel)........................ 7 1.3 (QPushButton)................ 8 1.4 (QFont)................... 9

More information

GUI GUI Ruby GUI Ruby/Tk Ruby/Gtk GUI Ruby GUI

GUI GUI Ruby GUI Ruby/Tk Ruby/Gtk GUI Ruby GUI Ruby Workshop Ruby GUI GUI GUI Ruby GUI Ruby/Tk Ruby/Gtk GUI Ruby GUI GUI Graphical User Interface ( CUI) GUI : Tk, Gtk, Motif, Qt GUI C : : TkMandel : Imlib GUI GUI GUI GUI 7 8 : GUI Ruby GUI GUI Ruby

More information

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x J.JSSAC (2005) Vol. 11, No. 3,4, pp. 77-88 Noda2005 MathBlackBoard MathBlackBoard is a Java program based on the blackboard applet. We can use the blackboard applet with GUI operations. The blackboard

More information

料理集

料理集 ABC Cooking Studio 1 2 3 ABC Cooking Studio ABC Cooking Studio Point Point ABC Cooking Studio Point ABC Cooking Studio ABC Cooking Studio Point

More information

Python3 Next 2

Python3 Next 2 Python Python Tkinter Tkinter Python Python Anaconda Python Anaconda Python https://www.continuum.io/downloads Python 3.6 version Python2 Python3 Python 2.7 Python 3.6 Python2 1 Python3 Next 2 I Agree

More information

Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem

Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem Java Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem 2 MenuComponent MenuComponent setfont() void setfont(font f) MenuBar MenuBar MenuBar() MenuBar add() Menu add(menu m) Menu Menu Menu String

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

manual.dvi

manual.dvi oscommerce 2002 9 6 oscommerce oscommerce 2.2 1 1 1.1................................................. 1 1.1.1......................................... 1 1.2.................................................

More information

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

More information

XML ( ) XML XML jedit XML XPath XSLT jedit JAVA VM jedit Slava Pestov GNU GPL ( ) jedit jedit ( jedit XML jed

XML ( ) XML XML jedit XML XPath XSLT jedit JAVA VM jedit Slava Pestov GNU GPL ( ) jedit jedit (  jedit XML jed XML XML XML jedit XML XPath XSLT jedit JAVA VM jedit Slava Pestov GNU GPL ( jedit jedit (http://www.jedit.org/index.php jedit XML jedit Plugin Central (http://plugins.jedit.org/ jedit Java (Java VM = Java

More information

News_Letter_No35(Ver.2).p65

News_Letter_No35(Ver.2).p65 OCIAL AFETY CIENCE No.35 2000.8 from Institute of Social Safety Science 10 11 17 11 19 17 181819 18 420-0042 5-9-1 JR 25 Tel 054-251-7100-1 - 10 10 I (1) 12 11 17 19 (2) 5-9-1 JR 25 II (1) 12 9 18 (2)

More information

Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page htt

Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page   htt Specview Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software_hardware/specview http://specview.stsci.edu/javahelp/main.html Specview

More information

0.2 Button TextBox: menu tab 2

0.2 Button TextBox: menu tab 2 Specview VO 2012 2012/9/27 Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software hardware/specview http://specview.stsci.edu/javahelp/main.html

More information

New version (2.15.1) of Specview is now available Dismiss Windows Specview.bat set spv= Specview set jhome= JAVA (C:\Program Files\Java\jre<version>\

New version (2.15.1) of Specview is now available Dismiss Windows Specview.bat set spv= Specview set jhome= JAVA (C:\Program Files\Java\jre<version>\ Specview VO 2012 2012/3/26 Specview Specview STSCI(Space Telescope SCience Institute) VO Specview Web page http://www.stsci.edu/resources/software hardware/specview http://specview.stsci.edu/javahelp/main.html

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

2016 IP 1 1 1 1.1............................................. 1 1.2.............................................. 1 1.3............................................. 1 1.4.............................................

More information

test.gby

test.gby Beautiful Programming Language and Beautiful Testing 1 Haskeller Haskeller 2 Haskeller (Doctest QuickCheck ) github 3 Haskeller 4 Haskell Platform 2011.4.0.0 Glasgow Haskell Compiler + 23 19 8 5 10 5 Q)

More information

ユニセフ表紙_CS6_三.indd

ユニセフ表紙_CS6_三.indd 16 179 97 101 94 121 70 36 30,552 1,042 100 700 61 32 110 41 15 16 13 35 13 7 3,173 41 1 4,700 77 97 81 47 25 26 24 40 22 14 39,208 952 25 5,290 71 73 x 99 185 9 3 3 3 8 2 1 79 0 d 1 226 167 175 159 133

More information

ように記述をします div1 要素 span 要素 2 個 div3 要素 span 要素 4 個 div5 要素 span 要素 1 個 div7 要素 span 要素 2 個 div2 要素 span 要素 1 個 div4 要素 span 要素 2 個 div6 要素 span 要素 2 個

ように記述をします div1 要素 span 要素 2 個 div3 要素 span 要素 4 個 div5 要素 span 要素 1 個 div7 要素 span 要素 2 個 div2 要素 span 要素 1 個 div4 要素 span 要素 2 個 div6 要素 span 要素 2 個 1238-2 円形グラデーションのトランジション ラディアルグラデーションのトランジション W3C 仕様では background-image プロパティは transition プロパティでのトランジションや後で アニメーション編 に出てくる animation プロパティでのアニメーションができないようになっています ラディアルグラデーションの radial-gradient( ) 関数と repeating-radial-gradient(

More information

GNU Emacs GNU Emacs

GNU Emacs GNU Emacs GNU Emacs 2015 10 2 1 GNU Emacs 1 1.1....................................... 1 1.2....................................... 1 1.2.1..................................... 1 1.2.2.....................................

More information

Bead Instructions First, locate the acupressure point you wish to stimulate. Next, remove a plastic bead from the bag. Remove the backing from the adh

Bead Instructions First, locate the acupressure point you wish to stimulate. Next, remove a plastic bead from the bag. Remove the backing from the adh icewave Instructions Bead Instructions First, locate the acupressure point you wish to stimulate. Next, remove a plastic bead from the bag. Remove the backing from the adhesive plastic patch included.

More information

1 1 1........................... 1 2........... 1 3........................... 4 4.............. 6 2 7 1...................... 7 2........................... 8 3............................ 8 4...............

More information

Vol.9No.22012

Vol.9No.22012 6 21 2 21 8 7 118 Vol.9No.22012 6 2 3 1 10 10 1 13 1 13 1320 1956 1961 1977 21 8 1979 1981 1982 2011 2003 20062011 Vol.9No.22012 119 1 23 8 21 1 1 24 20 22 18 8 120 Vol.9No.22012 2 9 1953 2 1979 2 2 1982

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

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

untitled

untitled 2 3 4 kw kw 5 500 112 6 7 8 9 10 11 0.060 0.060 0.040 0.020 0.040 0.020 0.000 0.003 0.002 0.003 0.002 0.000 0.003 0.001 0.002 0.002 12 13 N NNE NE ENE E ESE SE SSE S SSW SW WSW W WNW NW NNW N NNE NE ENE

More information

G00000001.mcd

G00000001.mcd Member of JSCE JSCE Corp Key Words= MS- Word, style, template, Autolayout, MCB2 a E mail E mail b mm mm mm mm A mm pt mm pt mm pt E mail pt mm pt Times Italic pt 'Key Words' mm 1 mm mm pt a CD z pt? 2

More information

19 ステップで 2 大人気スクリプト言語を学ぶ GUI のあるアプリを作る STEP11 から STEP12 までまとめ 1.Python での GUI アプリ作成 Python は標準ではグラフィックスの機能を持ちませんが ライブラリを使うことで GUI のアプリを作成することができる そこで

19 ステップで 2 大人気スクリプト言語を学ぶ GUI のあるアプリを作る STEP11 から STEP12 までまとめ 1.Python での GUI アプリ作成 Python は標準ではグラフィックスの機能を持ちませんが ライブラリを使うことで GUI のアプリを作成することができる そこで 19 ステップで 2 大人気スクリプト言語を学ぶ GUI のあるアプリを作る STEP11 から STEP12 までまとめ 1.Python での GUI アプリ作成 Python は標準ではグラフィックスの機能を持ちませんが ライブラリを使うことで GUI のアプリを作成することができる そこで Kivy というソフトウェアを使う Kivy は Python のパッケージ管理システム pip を使ってインターネット上のファイルサーバからインストールが可能である

More information

坊っちゃん

坊っちゃん might is right I am glad to see you 1992 4 1 20 1 2 1987 62 10 27 1 5-86 1999

More information

Microsoft Word - 2009 ogasawa king bee.doc

Microsoft Word - 2009 ogasawa king bee.doc 2009 KING BEE 10 3 2 KING BEE 5 15 5 20 6 8 KING BEE 7 8 19 55 380M 63 590M,95 https://www.fnmoc.navy.mil/public/ http://metocph.nmci.navy.mil/jtwc.php 2 OK 71 KING BEE KING BEE 2007 10 30 45 JH DT115Hp

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

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

Stapy_Tsuji_ key

Stapy_Tsuji_ key Python #23 2017.4.12 Python @tsjshg shingo.tsuji@gmail.com 1975 C++ IT Java Web 10 Python Python 3 Python Python Python Python SQL Excel PowerPoint PDF 2 http://pypl.github.io/pypl.html 1 http://blog.codeeval.com/codeevalblog/2016/2/2/most-popular-coding-languages-of-2016

More information

1,000 700-1 -

1,000 700-1 - 23 9 () - 0 - 1,000 700-1 - 2 3 ( 16:0017:00 ( 8:15 8:30 10:3010:50 8:00 8:10 8:10 9:30 11:0011:20 11:3015:30 16:0016:40 16:0016:10 16:50 21:00 4:00 4:006:00 6:00 6:1511:00 11:3012:00 12:3014:30 (1) ()

More information

NP-DB NP-DB10 0570-011874 This appliance was designed for use in Japan only where the local voltage supply is AC100V and should not be used in other countries where the voltage and frequency

More information

Kageyama (Kobe Univ.) 2015.06.23 2 / 41

Kageyama (Kobe Univ.) 2015.06.23 2 / 41 2015 2015.06.23 Kageyama (Kobe Univ.) 2015.06.23 1 / 41 Kageyama (Kobe Univ.) 2015.06.23 2 / 41 [ 1, +1] [ 1, +1] [ 1, +1] Kageyama (Kobe Univ.) 2015.06.23 3 / 41 Kageyama (Kobe Univ.) 2015.06.23 4 / 41

More information

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet 13 Java 13.9 Applet 13.10 AppletContext 13.11 Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet Applet (1/2) Component GUI etc Container Applet (2/2) Panel

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

トリガーをわかり易くする方法

トリガーをわかり易くする方法 1221 トリガーをわかり易くする方法 (cursor, border-radius) 例えばブラウザにつぎのような画面が表示されていたら あなたはこの手の画像を何だと 思いますか? ほとんどの方が ハンドサインじゃないの? か 右方向を示しているのでしょう? と思われたのではないでしょうか 実は 私は手の画像をクリックすると画像が transition で右方向へ移動するように css を記述してあったのですが

More information

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

More information

9.3 Menu add separator Menu add command Menu add cascade

9.3 Menu add separator Menu add command Menu add cascade 1 3 1.1................................. 3 1.2.......................................... 3 1.3 Toplevel....................................... 4 1.4................................. 4 1.5?.....................

More information

取扱説明書

取扱説明書 ER-LD530 STEP 1 STEP 2 STEP 3 STEP 4 STEP 5 1 5 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 2 3 22 23 1 2 24 25 26 27 1 2 3 28 29 30 31 32 33 34 1 2 3 35 1 2 3 36 37 1 2 3 4 38 39 1 2 3 4 40

More information

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS

Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1) (2) ( ) BASIC BAS Appendix A BASIC BASIC Beginner s All-purpose Symbolic Instruction Code FORTRAN COBOL C JAVA PASCAL (NEC N88-BASIC Windows BASIC (1 (2 ( BASIC BASIC download TUTORIAL.PDF http://hp.vector.co.jp/authors/va008683/

More information

NP-HV10 NP-HV18 NP-HV E D C 1 1 2 3 2 3 1 2 1 3 4 5 6 7 8 1 1 2 2 2 3 1 2 1 3 4 1 5 6 2 3 4 4 1 1 2 3 4 5 0570-011874 This appliance was designed for use in Japan only where the local voltage supply

More information

2

2 2007 8 12 1 Q&A Q1 A 2007 6 29 2008 1 1 14 1 12 1 2 3 1 1 13 1 2 15 1 1 2 Q2 A 627 1 20 1 1 3 15 2003 18 2 3 4 5 3 406 44 2 1997 7 16 5 1 1 15 4 52 1 31 268 17 5 60 55 50 1999 3 9 1999 3 39 40 44 100 1

More information

6 18 2 6 1 1 2 1 2.1................................ 1 2.2.................................... 1 2.3.................................. 2 2.4................................ 3 2.5...............................

More information

untitled

untitled COM 6 20040920 (Mathematica-1) iijima COM 6 Mathematica (iijima@ae.keio.ac.jp) 1 COM 6 20040920 (Mathematica-1) iijima 1. Mathematica 1.1 1.2 1.3 1.4 2 COM 6 20040920 (Mathematica-1) iijima 1.1 3 COM 6

More information

untitled

untitled 20 7 1 22 7 1 1 2 3 7 8 9 10 11 13 14 15 17 18 19 21 22 - 1 - - 2 - - 3 - - 4 - 50 200 50 200-5 - 50 200 50 200 50 200 - 6 - - 7 - () - 8 - (XY) - 9 - 112-10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 -

More information

untitled

untitled 19 1 19 19 3 8 1 19 1 61 2 479 1965 64 1237 148 1272 58 183 X 1 X 2 12 2 15 A B 5 18 B 29 X 1 12 10 31 A 1 58 Y B 14 1 25 3 31 1 5 5 15 Y B 1 232 Y B 1 4235 14 11 8 5350 2409 X 1 15 10 10 B Y Y 2 X 1 X

More information

Microsoft PowerPoint - uniCMS操作マニュアル.ppt

Microsoft PowerPoint - uniCMS操作マニュアル.ppt -1- -2- -3- -4- -5- -6- [ ] -7- [ ] -8- [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- -21- ( ) -22- -23- -24- -25- -26- -27- -28- -29- -30- -31- menu menu -32- -33- -34-

More information

untitled

untitled -1- menu -2- -3- -4- -5- -6- [ ] -7- [ ] -8- 0 [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- ( ) -21- -22- -23- -24- -25- -26- -27- -28- -29- menu menu -30- -31- -32- -33-

More information

untitled

untitled FONT FACE=" " /FONT hp11.html FONT FACE=" " /FONT FONT FACE=" " HTML HP10.html HTML HTML HTML html head title /title font face=" " size="5" /fontbr font face=" " size="5" /fontbr font size="5" /fontbr

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

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment

28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 28 Docker Design and Implementation of Program Evaluation System Using Docker Virtualized Environment 1170288 2017 2 28 Docker,.,,.,,.,,.,. Docker.,..,., Web, Web.,.,.,, CPU,,. i ., OS..,, OS, VirtualBox,.,

More information

2

2 L C -24K 9 L C -22K 9 2 3 4 5 6 7 8 9 10 11 12 11 03 AM 04 05 0 PM 1 06 1 PM 07 00 00 08 2 PM 00 4 PM 011 011 021 041 061 081 051 071 1 2 4 6 8 5 7 00 00 00 00 00 00 00 00 30 00 09 00 15 10 3 PM 45 00

More information

FX ) 2

FX ) 2 (FX) 1 1 2009 12 12 13 2009 1 FX ) 2 1 (FX) 2 1 2 1 2 3 2010 8 FX 1998 1 FX FX 4 1 1 (FX) () () 1998 4 1 100 120 1 100 120 120 100 20 FX 100 100 100 1 100 100 100 1 100 1 100 100 1 100 101 101 100 100

More information

2 3

2 3 Sample 2 3 4 5 6 7 8 9 3 18 24 32 34 40 45 55 63 70 77 82 96 118 121 123 131 143 149 158 167 173 187 192 204 217 224 231 17 285 290 292 1 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

More information

6 29 ( )1 6 15 1 mousepressed mouseclicked mousemoved mousedragged mousereleased mousewheel keypressed keyreleased keytyped Shift OK Shift mousewheel void mousewheel(mouseevent event) { void keytyped()

More information

HDZ-2500iS_2570iTS

HDZ-2500iS_2570iTS HDZ-2500iS HDZ-2570iTS c PRINTED IN JAPAN B64-2337-10/04 001 002 003 901 START NO 381 387 YES NO YES YES NO 002 111 NO YES 116 NO YES 114 YES NO YES NO 106 Next Page 002 YES NO YES NO NO YES NO YES 106

More information

id, クラスで指定 (#id 名,.class 名 ) 4. 様々なセレクタ a,b :a と b を指定 a b :a の下の階層の b を指定 a>b :a の直下の b を指定 a+b :a の次の b を指定 ab :a かつ b を指定 5. 属性セレクタ a[b] :a タグ内で b

id, クラスで指定 (#id 名,.class 名 ) 4. 様々なセレクタ a,b :a と b を指定 a b :a の下の階層の b を指定 a>b :a の直下の b を指定 a+b :a の次の b を指定 ab :a かつ b を指定 5. 属性セレクタ a[b] :a タグ内で b CSS まとめ 1. CSS とは? ホームページを作る技術の一つで, 見た目の記述をするもの. W3C で作成されており,W3C のサイトで仕様を確認できる. 2. CSS が記述できる場所 1 style タグで記述 (html 内に記述 ) する. 2 style 属性で記述 (html 内に記述 ) する. 3 外部ファイルで記述する.( 一般的な方式であり, 以下, この方式の説 明 )

More information

Python Speed Learning

Python   Speed Learning Python Speed Learning 1 / 76 Python 2 1 $ python 1 >>> 1 + 2 2 3 2 / 76 print : 1 print : ( ) 3 / 76 print : 1 print 1 2 print hello 3 print 1+2 4 print 7/3 5 print abs(-5*4) 4 / 76 print : 1 print 1 2

More information

2003 10 2003.10.21 70.400 YES NO NO YES YES NO YES NO YES NO YES NO NO 20 20 50m 12m 12m 0.1 ha 4.0m 6.0m 0.3 ha 4.0m 6.0m 6.0m 0.3 0.6ha 4.5m 6.0m 6.0m 0.6 1.0ha 5.5m 6.5m 6.0m 50m 18 OK a a a a b a

More information

untitled

untitled ( ) (%) (m/s) (m 3 ) [6] 1 29 10 24 10:23 11.9 45 WNW 1.0 0.071 [6-1] o - [6-2] m - [6-3] p - [9] 29 10 25 10:30 15.0 47 ESE 3.5 2 29 10 25 10:45 15.7 45 E 4.6 0.070 29 10 26 10:35 13.2 49 NNW 6.4 3 29

More information