ひょうし.TXT

Size: px
Start display at page:

Download "ひょうし.TXT"

Transcription

1 2005 Institute for Educational Computing and Research

2 Web Java 3 D É É É É

3 GGG Web Web Web Web Web Web Web Web Web

4 e Learning Web CT e Learning É É Ée LearningWeb CT É É É ò É Akira NAKANO Information Lireracy of the New Students : The Current state and Analysis Based on the Result of Placement Test on Information Lireracy

5 g g g g g IT L g g g g g g g g g g g g g g g g g g g g g g g g g g g g g g g g g g

6 ò É É É É É É É É É É É É É ò D D É É Ée Learning ÉWebCGI

7 Web ò D ä ä ä ä ä ä ä ä ä ä Web x bokd bc d bc b d bcd dip b

8 x x ò x É É Welch

9 Welch tdf t ò CD ROMDVD CD ROMDVD ROM CD RRW

10

11 Web URL URL ò

12 IRT

13

14 Java 3D Java3D Java3D Shape3D 3D ååå Shape3D Shape3D Geometry Appearance Shape3D Shape3D TransformGroup Shape3D Shape3D() Shape3D(Geometry geom) Shape3D(Geometry geom, Appearance ap) Shape3D Shape3D void addgeometry(geometry geom) void insertgeometry (Geometry geom, int index) void removegeometry(int index) void setgeometry(geometry geom) void setgeometry (Geometry geom, int index) index index index GeometryArray ò PointArray PointArrayint int Tetsuo FUKUI Educational point for 3D computer graphics programming by Java3D

15 Shape3D LineArray(int, int) IndexedLineArray(int, int, int) GeometryArray. COORDINATES GeometryArray. COLOR3 RGB LineStripArray(int, int, int[]) Point3d[] vertex=new Point3d[6]; vertex[0]=new Point3d( 0.8, 0.0, 0.4); vertex[1]=new Point3d( 0.3, 0.8, 0.0); vertex[2]=new Point3d(0.2, 0.7, 0.2); vertex[3]=new Point3d(0.7, 0.0, 0.8); vertex[4]=new Point3d(0.5, 0.3, 0.0); vertex[5]=new Point3d( 0.5, 0.6, 0.0); PointArray geom=new PointArray( vertex. length, GeometryArray. COORDINATES GeometryArray. COLOR3 ); geom. setcoordinates(0, vertex); geom. setcolor(0, new Color3f(Color. green)); geom. setcolor(1, new Color3f(Color. cyan)); geom. setcolor(2, new Color3f(Color. orange)); geom. setcolor(3, new Color3f(Color. white)); geom. setcolor(4, new Color3f(Color. red)); geom. setcolor(5, new Color3f(Color. red)); Geometry Shape3D shape=new Shape3D(geom); LineArray LineArray IndexedLineStripArray (int, int, int, int[]) LineArray geom=new LineArray( vertex. length, GeometryArray. COORDINATES GeometryArray. COLOR3 ); IndexedLineArray index index index index int[] index0,3, 1,2, 4,5, 0,5; IndexedLineArray geom=new IndexedLineArray( vertex. length, GeometryArray. COORDINATES GeometryArray. COLOR3, index. length ); geom. setcoordinates(0, vertex); geom. setcoordinateindices(0, index); LineStripArray

16 int[] stripvertexcounts=4,2; ò ò TriangleArray(int, int) IndexedTriangleArray(int, int, int) int[] stripvertexcounts=6; LineStripArray geom=new LineStripArray( vertex.length, GeometryArray.COORDINATES GeometryArray.COLOR3, stripvertexcounts ); IndexedLineStripArray index index ò TriangleFanArray ò GeometryInfo GeometryArray TriangleStripArray(int, int, int[]) IndexedTriangleStripArray (int, int, int, int[]) TriangleFanArray(int, int, int[]) IndexedTriangleFanArray (int, int, int, int[]) QuadArray(int, int) IndexedQuadArray(int, int, int) Point3d[] vertex=o,a,b, O,B,C, O,C,D, O,D,A; O,A,B,C,Dnew Point3d(x,y,z) GeometryInfo

17 GeometryInfo ò Point3f[] PolygonAttribute Shape3D GeometryInfo. TRIANLGEARRAY GeometryInfo. QUADARRAY Point3f[] vertex= new Point3f(0.0f,1.0f,0.0f), new Point3f(1.0f,0.0f,1.0f), new Point3f(1.0f,0.0f, 1.0f), ; new Point3f(0.0f,1.0f,0.0f), new Point3f(1.0f,0.0f, 1.0f), new Point3f( 1.0f,0.0f, 1.0f), new Point3f(0.0f,1.0f,0.0f), new Point3f( 1.0f,0.0f, 1.0f), new Point3f( 1.0f,0.0f,1.0f), new Point3f(0.0f,1.0f,0.0f), new Point3f( 1.0f,0.0f,1.0f), new Point3f(1.0f,0.0f,1.0f) GeometryInfo info=new GeometryInfo(GeometryInfo. TRIANGLEARRAY); info. setcoordinates(vertex); 44 NormalGenerator normalgen=new NormalGenerator(); normalgen. setcreaseangle(0.768); normalgen. generatenormals(info); Appearance appearance=new Appearance(); Material material=new Material(); material. setdiffusecolor(new Color3f(1.0f,0.5f,1.0f)); appearance. setmaterial(material); PolygonAttributes polattr=new PolygonAttributes(); polattr. setcullface(polygonattributes. CULLNONE); polattr. setbackfacenormalflip(true); appearance. setpolygonattributes(polattr); Shape3D shape=new Shape3D( (Geometry)info. getgeometryarray(), appearance );

18 index PolygonAttributes polattr=new PolygonAttributes(); polattr. setpolygonmode( PolygonAttributes. POLYGONLINE); ppearance. setpolygonattributes(polattr); Point3f[] vertex= new Point3f(0.0f,0.5f,0.0f), new Point3f(1.0f,0.0f,1.0f), new Point3f(1.41f,0.0f,0.0f), new Point3f(1.0f,0.0f, 1.0f), new Point3f(0.0f,0.0f, 1.41f), new Point3f( 1.0f,0.0f, 1.0f), new Point3f( 1.41f,0.0f,0.0f), new Point3f( 1.0f,0.0f,1.0f), new Point3f(0.0f,0.0f,1.41f) ; GeometryInfo infonew GeometryInfo(GeometryInfo. TRIANGLEARRAY); index info. setcoordinates(vertex); int[] index=0,1,2, 0,2,3, 0,3,4, 0,4,5, 0,5,6, 0,6,7, 0,7,8, 0,8,1; info. setcoordinateindices(index); ò index index Shape3D shape=new Shape3D( (Geometry)info. getindexedgeometryarray(), appearance ); JPEGGIFPNG

19 init() Texture TextureLoader URL Image BufferedImage Component Applet gettexture(): texture=tloader. gettexture(); Imege try catch URL import java.net. ; // URL import com.sun.j3d.utils.image. ; // Texture Image Image image=getimage(getcodebase(),earth. jpg); MediaTracker mt=new MediaTracker(this); mt. addimage(image, 0); mt. checkall(true); try mt. waitforid(0); catch (InterruptedException e) e. printstacktrace(); Texture texture= new TextureLoader(image, this). gettexture(); TextureAttributes. MODULATE TextureAttributes. DECAL public class Example extends Applet Texture texture=null; // TextureAttributes. BLEND public static void main(string[] args) Example example new Example(); MainFrame frame= new MainFrame(example,600,480); public void init() try String path=this. getcodebase(). tostring(); URL url=new URL(new String(path+earth.jpg)); TextureLoader tloader= new TextureLoader(url,(Component)this); texturetloader. gettexture(); catch(exception ex) System. out. println(ex+error:+earth.jpg); TextureAttributes. REPLACE Appearance appearance=new Appearance(); Material material=new Material(); appearance. setmaterial(material); appearance. settexture(texture); TextureAttributes texattrnew TextureAttributes(); texattr. settexturemode(textureattributes. MODULATE); appearance. settextureattributes(texattr);

20 Sphere earth=new Sphere( 0.4f, Sphere. GENERATENORMALS Sphere. GENERATETEXTURECOORDS, appearance ); index Point3f[] vertex ; TexCoord2f[] texcoord= new TexCoord2f(0.5f,0.5f), new TexCoord2f(1.0f,0.0f), new TexCoord2f(1.0f,1.0f), new TexCoord2f(0.5f,0.5f), new TexCoord2f(1.0f,1.0f), new TexCoord2f(0.0f,1.0f), new TexCoord2f(0.5f,0.5f), new TexCoord2f(0.0f,1.0f), new TexCoord2f(0.0f,0.0f), ; new TexCoord2f(0.5f,0.5f), new TexCoord2f(0.0f,0.0f), new TexCoord2f(1.0f,0.0f) GeometryInfo info=new GeometryInfo(GeometryInfo. TRIANGLEARRAY); info. setcoordinates(vertex); ò TexCoord2f settexturecoordinateparams info. settexturecoordinateparams(1,2); info. settexturecoordinates(0,texcoord); new TexCoord2f(0.5f,1.0f), new TexCoord2f(0.0f,0.0f), new TexCoord2f(1.0f,0.0f), ò index index

21 index ò LineArray, LineStripArray, TriangleArray LineArray TriangleArray LineStripArray x, y, z Point3d[] vertex Point3f[] vertex new Point3f(0.0f,1.0f,0.0f), new Point3f(1.0f,0.0f,1.0f), new Point3f(1.0f,0.0f, 1.0f), new Point3f( 1.0f,0.0f, 1.0f), new Point3f( 1.0f,0.0f,1.0f) ; TexCoord2f[] texcoord new TexCoord2f(0.5f,0.5f), new TexCoord2f(1.0f,0.0f), new TexCoord2f(1.0f,1.0f), new TexCoord2f(0.0f,1.0f), new TexCoord2f(0.0f,0.0f) ; GeometryInfo infonew GeometryInfo(GeometryInfo. TRIANGLEARRAY); info. setcoordinates(vertex); ò index int[] index0,1,2, 0,2,3, 0,3,4, 0,4,1; info. setcoordinateindices(index); info. settexturecoordinateparams(1,2); info. settexturecoordinates(0,texcoord); int[] texindex0,1,2, 0,2,3, 0,3,4, 0,4,1; info. settexturecoordinateindices(0,texindex);

22 z=fx,y z=e (x 2 +y 2) xy òindex Java3D J2SDK, Java3D SDK, media/3d/. Java3D Java3D Java3D Java3D Java3D

23 òò PDA ò Codex BSE ADI HACCP hazard analysis critical control point Toshiki MATSUURA Computerization of the Teaching Materials for the Dietician Training

24 VTRDVD òò ò ò Web ò Web PDF Web Web PDF WebCT Cam Cam Camòò òòò òpdf PDF

25 図4 図5 μcamによる教材提供 図7 電子教科書の本文 図8 電子教科書の本文 電子教科書のダウンロードページ 図6 各章の表紙 22

26 ò ò Web ò Data KeyServer PDF Data KeyServerPDF PDF Data KeyServer

27 WebCT ä Yukiko OKADA The new gap by the class composition according to skill level From the measure for information basic education

28 É É É ä ÉCam É É É É ä É ä É É CMSCourse Management System WebCTWeb CTCamMukogawa Online Campus ExcelCam CamHP Cam

29 MFWI Mukogawa Fort Wright Institute Cam

30 t té É É É n t PTt

31 t PTt òaòb òa òb òa òb òaòb òb òaòb òb òaòb òa òb òb òb òb òa òa òaòb òaòb òb òa t PTt

32 PC CGARTS å åabc ABC A B C å å Web Web å OS

33 å

34 Cam É É É É Cam Cam Cam Cam

35 ò IRT WebCTWebCT CGARTS enquete pdf

36

37

38 N N t PTtE PTtE N N N N N N t PTtE PTtE PTtE PTtE N N N N N N t PTtE PTtE PTtE PTtE N N

39 N N N N N N N N N N N N

40

41

42 Mukogawa Women's University Network MWUnet MWUnet ID MWUnet MWUnet

43 MWUnet MWUnet MWUnetmukogawauacjp MWUnet MWUnet MWUnet MWUnet ò ò MWUnet MWUnet ò ò ò ò ò MWUnet

44 ò ò MWUnet MWUnet MWUnet MWUnet

45 2005

46 ò ò ò ò ò ò ò ò ò ò MWU net ID ò IP ò ò ò ò ò ò ò

47 ò É É É É É É É É É É É É É ò É É É É ò MWU net HP DB

48 ò IDIP MUSES

49 ò H MM MM ID MWU net MM VP MUSES ÊCam H MFWI MM MMPDP MM

50 ò ò ò ò ò ò ò Mmoa ò ò ò ò ò ò ò ò ò ò ò ò ò ò e ò ò ò ò ò MM ò ò ò ò

51 ò LAN LAN ATM P HE PHE PPP PPPHHLKMA ò MUSESÊCam MWU net ID MIET MIET É ÉMB ÉPOPoverSSL MUSES MUSES ÊCamWWWWeb MailFW FWDMZ FWDMZ ÊCam ÊCam

52 ò MWU net ID ID ID ID ID

53 ò IP IP IP IP C L L E L LH L L LL L LALB L L E E S S MM BMM MM MM MM MM MM PC PC H H H KM HS PP

54 ò ID MM

55 ID MIETMIET Windows Update

56 ò MM MM A MM B MM C MM A MM B MM C MM ABC MM ABC MM ABC MM ABC MM ABC ABCDEF MM A MM B MM A MM B MM A MM B MM C MM D M.S. MM D MM ABCDE MM B MM CDE M.S. MM D S.R. MM E MM ABCDE MM ABCDE M.D. MM B MM D MM E MM A MM B M.S. MM A MM A MM AB MM A MM B MM C MM D MM E MM F MM ABCDEF MM ABC MM DEF MM AB MM CD MM EF MM ABCDEF MM ABCDEF MM ABCDEF MM A MM B MM C MM D MM C MM D B.S. MM A MM A MM A MM B MM C MM D MM D MM ABCD MM ABCD MM ABCD MM CD MM A MM B MM B

57 MM A MM B MM C MM D MM MM A MM B MM A MM B MM C MM A MM BC MM A MM B MM C MM D MM A MM B MM C MM D MM E MM A MM B MM C MM D MM A MM B MM C MM D MM AB MM CD MM AB MM CD MM AB MM CD MM A MM C R.F. MM ABCD MM ABCD MM AB MM CD MM AB MM CD MM AB MM CD MM ABCD MM ABCD MM ABCD MM MM MM MM A MM B MM C MM D MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM

58 MM MM MM MM WebJS MM MM MM WebCSS MM MM MM MM MM MM MM MM Access MM Word MM Excel MM MM A MM B MM C MM ABC MM ABC MM ABC MM A MM B MM A MM B MM C MM D M.S. MM D S.R. MM D MM A B.S. MM A MM B MM ABCDE MM CDE M.S. MM D MM D MM E MM A MM AB MM A MM A MM B MM ABC MM DEF MM A MM B MM C MM D MM E MM F MM AB MM CD MM EF MM ABCDEF MM ABCDEF MM ABCDEF MM ABCDEF MM ABCDEF MM A MM B MM C MM D MM C MM D MM A MM B MM C MM D MM D MM ABCD MM ABCD MM ABCD MM ABCD MM AB MM ABCD

59 MM A MM B MM B MM A MM B MM C MM D MM AB MM AB MM ABCD MM A MM B MM C MM D MM A MM B MM C MM D MM E MM A MM B MM C MM D MM E MM D MM A MM C MM AB MM CD MM AB MM CD MM AB MM CD MM AB MM CD MM MM A MM B MM C MM D MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM WebJS MM MM WebCSS MM MM MM MM MM MM MM MM MM MM MM Access MM Word MM Excel MM

60 MM A MM B MM AB MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM MM CGI MM MM MM MM MM MM VBA MM MM MM MM MM MM MM MM MM MM MM BLOG MM DTM MM SOHO MM MM SOHO MM MM

61 ò MM MM Apple PowerPC G4 imac Power Macintosh G3 Compaq Evo Desktop D SF MM EPSON PC LAJ XEROX DocuPrint C NetServer E TPS TDH MM IC AVIO RDB EPSON LP PMC XEROX DocuPrint CPS HP Designjet ps EPSON ESHS ES PDP MM Apple Power Macintosh G3 imac EPSON LP PMC QMS QMSF EPSON GTU YAMAHA EX MM LCD MM Compaq Evo Desktop D SF MM Compaq Evo Desktop D SF HP Vectra VLSF XEROX DocuPrint MM Apple Power Macintosh G3 HP Vectra VLSF XEROX DocuPrint MM Compaq Evo Desktop D SF Evo Notebook N XEROX DocuPrint DocuPrint C MM Apple PowerPC G4 imac Compaq Evo Desktop D SF XEROX DocuPrint Apple PowerPC G4 imac Compaq Evo Desktop D SF Apple PowerPC G4 imac Compaq Evo Desktop D SF Apple PowerPC G4 imac Power Mac G4 Compaq Evo Desktop D SF HP JORNADA SHARP RWA SONY VAIO PCGCXE PCGGT TOSHIBA Dynabook SS XEROX DocuPrint MM Apple PowerBook G3 EPSON PCF NEC LavieF PCN TOSHIBA DynaBook Satellite S DynaBook Satellite CDT DynaBook Satellite PA DynaBook Satellite Pro DynaBook GTS DynaBook EZP DynaBook JSS SHARP WDAM WVM Canon BJCJ BJCJU SONY ELP MITSUBISHI LVPXL KM KM TOSHIBA DynaBook EZV DynaBook EZ NEC PC ES PCAPU NEC PCPRJ MM F HP Vectra VLSF XEROX DocuPrint C TPS TDH IC AVIO RDB EPSON ESHS LCD Campus Esper

62 ò Windows Mac Windows Mac

63

64 ò FDMSDOS Ver Windows WindowsXP Professional SP CD ROM WindowsXP Home Edition SP CD ROM Windows Server CAL Japanese Windows CAL Japanese Windows CD ROM Mac Mac OS X Tiger CD ROM Mac OS E CD ROM Office Inter Connect CD ROM Office XP Professional with FrontPage Enterprise Win Japanese Academic OPEN Level B Office Mac Japanese Upgrade Advantage Academic OPEN No Level B Office for Mac CD ROM Office for Mac CD ROM Office Standard Edition CD ROM Access CD ROM SPSS Base System CD ROM Pro for Win CD ROM for Win CD ROM JBuilder Professional CD ROM Delphi Professional CD ROM CBuilder Professional CD ROM Finale CD ROM Overture J JCD ROM EZ Vision J CD ROM Illustrator CS CD ROM Photoshop Album CD ROM Digital Image Album CD ROM Digital Image Pro CD ROM Flash Maker CD ROM InDesign CS for Win CD ROM InDesign CS for Mac CD ROM Flash MX Professional CD ROM CANVAS J CD ROM DENEVA PhotoShop Upgrade for Mac PhotoShop EL Final Cut Pro Up Grade CD ROM Premiere for Win CD ROM CD ROM CD ROM CD ROM CD ROM VOL. CD ROM VOL. CD ROM VOL. CD ROM VOL. CD ROM CD ROM AP CD ROM AP CD ROM AP FEP Transmit CD ROM Norton Education Total Solution CD ROM Norton Antivirus for Mac CD ROM PC Cillin CD ROM OCR de CD ROM THE PRO V CD ROM Acrobat for Win CD ROM Acrobat for Mac CD ROM Netscape Navigator CD ROM

65 ò Word Excel Access Word Excel Access

66 ò A Dell Latitude V dynabook Satellite J Mobile Pentium GHz MB RAM Pentium GHz MB RAM GB HDDATATFT FDDCD RWRxRxRWx GB HDDATATFT FDDDVD ROMCD RRW KLANEthernet kg RxWxDVDxK LANEthernet kg OS Windows WindowsXP Professional SP Office XP Professional with FrontPage WordExcelPowerPoint AccessFrontPage Photoshop Elements Norton AntiVirus Corporate Edition InternetExplorerAcrobatReader FFFTPWindows MediaPlayer Macromedia Shockwave Player Macromedia Flash PlayerQuickTime RealPlayerBasicLhaca Easy CD Creator Basic LANAC Office Professional Edition WordExcelPowerPoint AccessOffice FrontPage Photoshop Elements Norton AntiVirus Corporate Edition InternetExplorerAdobe Reader FFFTPWindows MediaPlayer Macromedia Shockwave Player Macromedia Flash PlayerQuickTime RealPlayerLhaca LANAC Windows WindowsXP

67 E E L L L DLP XGA XGA RGB XGA L MM LLE AV S KMF MM MM MM MM E MM MM MM MM MM

68 S S MM MM

69 ÊCam Mmoa imoviemacintoshpc MM imovie Mmoa imovie Mmoa ÊCam ÊCam ÊCam ÊCam ÊCam ÊCam É É É É É Mmoa Mmoa ÊCam ÊCam MM ÊCam

70 IT LAN H

71 WebCT WebCT GP FD WebCT WebCT in TREE H IT

72 ÊCam Web ÊCam ÊCam ÊCam ÊCam Mmoa ÊCam ÊCam ÊCam ÊCam

情報教育研究センター年報 2003

情報教育研究センター年報 2003 2003 Institute for Educational Computing and Research ò Java GGG i Eiji HAMATANI Consideration of Information oriented Education in University e ò DVDCD ò ò ò ò ò WEB ò WEB ò WEB ò WEB ò ò WEB ò ò ò

More information

2000年度年次報告書の発行にあたって

2000年度年次報告書の発行にあたって 2000 2000 2000 2000 10 2000 IT 2001 IT 2000 Web PC 2000 2000 2001 2000 2000 2 2001 7 10 Word 2000 Canon LBP930 1 1 1.1 PC 2000 2 PC 1 3 3 4 2001 PC 41 NEC PC98NXMA35 1 EPSON LP-9300 1 EPSON GT-8700 PC-SEMI

More information

No 1 p3 2 P4 3 P5 4 P6 5 P7 6 P8 7 P9 8 P10 9 P11 10 80 PR Web P12 11 Blender DCG P13 12 P14 13 QR P15 14 P16 15 P17 16 Flash Web P18 17 Flash ActionScript P19 18 MML DTM P20 19 JAVA P21 i-appli 20 Flash

More information

Java D S99444-H

Java D S99444-H Java D S99444-H 2002 2 12-0 - Java3D. Java3D......... 3. 50m....... JMC............. Java3D.. JMC..... - 1 - Web3D Web3D WEB D VRML Virtual Reality Modeling Language 1994 VRML1.0 1997 ISO IEC VRML97 ISO/IEC

More information

LP-S820

LP-S820 K Q OS Windows Windows 7 EPSON EXCEED YOUR VISION Mac Macintosh Mac OS Apple Inc. Microsoft Windows Windows Server Windows Vista Microsoft Corporation Adobe Adobe Reader Adobe Systems Incorporated ...4...

More information

EPSON EasyMP Multi PC Projection Ver.1.11 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.11 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

EPSON EasyMP Multi PC Projection Ver.1.10 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.10 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

LP-M720F

LP-M720F K Q OS Windows Windows 7 EPSON EXCEED YOUR VISION Mac Macintosh Mac OS Apple Inc. Microsoft Windows Windows Server Windows Vista Microsoft Corporation Adobe Adobe Reader Adobe Systems Incorporated ...4...10...

More information

EPSON EasyMP Multi PC Projection Ver.1.00 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.00 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5...5... 6...6...6... 9... 14... 14... 14... 15 EasyMP Multi PC Projection...15...16...17... 17... 18...18...19...20...

More information

情報教育研究センター年報 2002

情報教育研究センター年報 2002 2002 Institute for Educational Computing and Research ò ò ò ò ò ò ò ò ò ID ò IP ò ò MM ò ò ò ò ò ò ò ò ò ò MM MM MM IT IT ò ò ò ò Eiji HAMATANI Encouragement of information literacy based on multimedia

More information

MSAC-EX1

MSAC-EX1 3-218-418-02 (1) ExpressCard MSAC-EX1 b 2 MSAC-EX1 3 Program 2007 Sony Corporation Documentation 2007 Sony Corporation Memory Stick MagicGate Memory Stick Memory Stick Duo MagicGate Memory Stick Duo Memory

More information

DCR-SR62/SR300

DCR-SR62/SR300 3-098-548-02(1) DCR-SR62/SR300 PDF CD-ROM 2007 Sony Corporation t33 35 v 11 2 b 1 2 3 1 2 3 4 28 8 * AC / / / VCCI B DVD-R * DVD/HDD * * 26 3,000 / * * WindowsXPOS DCR-SR300 * PDF 3 ... 2... 3 1... 5 2...

More information

EPSON EasyMP Network Projection Ver.2.70 Operation Guide

EPSON EasyMP Network Projection Ver.2.70 Operation Guide EasyMP Network Projection EasyMP Network Projection EasyMP Network Projection... 5...5... 6...6...7... 9...9...9... 11...11...12...13... 16 IP...16... 17...17... 18...19 PowerPoint... 22... 23... 23...24...24

More information

LMC-CA84U2

LMC-CA84U2 LMC-CA84U2_V06 USB 2.0 Memory Card READER LMC-CA84U2 ... 1... 4... 5... 5... 6... 6... 11... 13 USB 2.0... 17 Macintosh... 18...18...21 Macintosh...24 Windows... 26 Windows XP...26 Windows Me,2000,98...

More information

EP-704A

EP-704A NPD4533-01 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.11...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...29...29...30...30...31...34

More information

EPSON EP-803A/EP-803AW ユーザーズガイド

EPSON EP-803A/EP-803AW ユーザーズガイド NPD4293-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...30...30...31...31...31...35

More information

EPSON EP-703A ユーザーズガイド

EPSON EP-703A ユーザーズガイド NPD4295-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...22...23...24!ex...24 /...25 P.I.F. PRINT Image Framer...25...26...29...30...30...31...31...34

More information

LDR-PC880F/M

LDR-PC880F/M FireWire DVD R/RW UNIT LDR-PC880F/M_V01 LDR-PC880F/M FireWire DVD R/RW for Macintosh ... 1... 4... 5... 5... 6...6... 8... 10... 12... 13 Mac OS X... 14... 14... 18... 20... 21 Mac OS X... 22... 23 Mac

More information

NW-E062 / E063 / E062K/ E063K

NW-E062 / E063 / E062K/ E063K / FM / 112 NW-E062 / E063 / E062K/ E063K 59 70 1 USB USB / MD CD MD CD 111 x- x- 112 NW-E062 / E063 / E062K/ E063K / FM / 112 NW-E062 / E063 / E062K/ E063K / FM / 112 MD CD MD CD x- CD 29 31 47 52 111

More information

EPSON EasyMP Network Projection Ver.2.85 Operation Guide

EPSON EasyMP Network Projection Ver.2.85 Operation Guide EasyMP Network Projection EasyMP Network Projection EasyMP Network Projection... 5... 6...6... 6...6... 7... 8... 8...8 EasyMP Network Projection... 10 EasyMP Network Projection...10 EasyMP Network ProjectionWindows...11

More information

EPSON ES-D200 パソコンでのスキャンガイド

EPSON ES-D200 パソコンでのスキャンガイド NPD4271-00 ...4...7 EPSON Scan... 7...11 PDF...12 / EPSON Scan...13 EPSON Scan...13 EPSON Scan...14 EPSON Scan...14 EPSON Scan...15 Epson Event Manager...16 Epson Event Manager...16 Epson Event Manager...16

More information

EPSON EasyMP Network Projection Ver.2.82 Operation Guide

EPSON EasyMP Network Projection Ver.2.82 Operation Guide EasyMP Network Projection EasyMP Network Projection EasyMP Network Projection... 5... 6...6... 6...6... 7... 8... 8...8 EasyMP Network Projection... 10 EasyMP Network Projection...10 EasyMP Network Projection

More information

EPSON Offirio SynergyWare PrintDirector 取扱説明書 導入ガイド

EPSON Offirio SynergyWare PrintDirector 取扱説明書 導入ガイド Offirio SynergyWare PrintDirector K L Microsoft WindowsNT Operating System Version4.0 Microsoft Windows 2000 Operating System Microsoft Windows Server 2003, Standard Edition Microsoft Windows Server 2003,

More information

HP Compaq Business Desktop dx7300シリーズ

HP Compaq Business Desktop dx7300シリーズ 本カタログは 旧製品もしくはすでに販売終了した製品のカタログです 最新版のカタログ 現在販売している製品のカタログは下記サイトにございます www.hp.com/jp/catalog その他ご不明な点は下記お問い合わせ窓口までご連絡ください HP Directplus 9 00 19 00 5/1 10 00 17 00 03-6416-6222 HP 9 00 19 00 10 00 17 00

More information

USB FDユニット ユーザーズマニュアル

USB FDユニット ユーザーズマニュアル LFD-31UI V16CD USB FD UNIT USB FD LFD-31U4 LFD-31U2 LFD-31U2JP LFD-31UE LFD-31UEJP LFD-35V LFD-35V2 ... 1... 2... 2... 3... 4... 4... 6 Macintosh... 8... 8... 10... 13... 14... 16 Windows CE... 18... 18...

More information

EPSON GT-7400U ユーザーズガイド

EPSON GT-7400U ユーザーズガイド GT-7400U NPD0462 v1.00 win... 6... 7 EPSON Scan... 9 EPSON Scan... 9 TWAIN... 10... 12... 14... 14... 14... 14... 14... 14... 16... 16... 16... 17... 18... 20... 20... 20... 21... 21... 22 EPSON Scan...

More information

PM-A850 スキャナ操作ガイド(Windows編)

PM-A850 スキャナ操作ガイド(Windows編) PM-A850 PM-A850 Windows... 5... 8... 8... 9 35mm... 11 35mm... 14 EPSON Scan...17 EPSON Scan... 17 TWAIN... 18... 21... 23... 23... 23... 25... 27 EPSON Scan... 27 TWAIN... 28... 30... 32... 32... 33...

More information

LDR-HA125FU2/M

LDR-HA125FU2/M LDR-HA125FU2/M_V01A FireWire & USB 2.0 DVD -RAM R/RW UNIT LDR-HA125FU2/M FireWire & USB 2.0 DVD-RAM R/RW for Macintosh ... 1... 4... 5... 5... 6...6... 8... 10... 11... 12 Mac OS X... 16... 16... 20...

More information

取扱説明書

取扱説明書 XP 2000 19 Windows Windows CF-T2 2 5 6 8 15 18 19 20 25 Q&A 26 32 38 39 44 46 50 2 CF-T2 3 AC 100 V LAN 22 cm 4LAN * 1 * 1 CCU* 2 * 2 CCU 1 10 15 * 1 * 1 Windows XP Wireless LAN Windows 2000 Wireless LAN

More information

EPSON EasyMP Network Projection Ver.2.70 Operation Guide

EPSON EasyMP Network Projection Ver.2.70 Operation Guide EasyMP Network Projection EasyMP Network Projection EasyMP Network Projection... 5...5... 6...6...7 2... 9... 9...9...10... 11...11...12...14... 16 IP...16... 17...17... 18...19 PowerPoint... 22... 23...

More information

EPSON EasyMP Network Projection Ver.2.81 Operation Guide

EPSON EasyMP Network Projection Ver.2.81 Operation Guide EasyMP Network Projection EasyMP Network Projection EasyMP Network Projection... 5...5... 6...6...7 2... 9... 9...9...10... 11...11...11...12...14... 17 IP...17... 18...18... 19...20 PowerPoint... 23 (

More information

atama.dvi

atama.dvi 1 1 1 2 1.1..................................... 2 1.2 WWW....................................... 3 1.3......................................... 3 1.4................................... 3 1.5..............................

More information

Nikon デジタルカメラ COOLPIX P6000 簡単操作ガイド

Nikon デジタルカメラ COOLPIX P6000 簡単操作ガイド Nikon Transfer Jp COOLPIX P6000 Software Suite Welcome Nikon AC 2 COOLPIX P6000 BS-1 Li-ion EN-EL5 AC EH-66 USB UC-E6 EG-CP14 Software Suite (CD-ROM) SD SD 177 SD 3 1 2 3 6 7 8 9 10 11 4 5 12 13 14 1 2

More information

PX-504A

PX-504A NPD4537-00 ...6... 6... 9 Mac OS X...10 Mac OS X v10.5.x v10.6.x...10 Mac OS X v10.4.11...13...15...16...16...18...19...20!ex...20 /...21 P.I.F. PRINT Image Framer...21...22...26...26...27...27...27...31

More information

EPSON PX-503A ユーザーズガイド

EPSON PX-503A ユーザーズガイド NPD4296-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22...23!ex...23 /...24 P.I.F. PRINT Image Framer...24...25...28...28...29...29...30...33

More information

untitled

untitled PC 2010 12 PC A PC BDay 1 B PC B * B* B Easy * B B B B B C C PC CD/DVD C PC PC PC PC PC () ( ) -1- *) -2- PC PC PC PC PC 0120-97-1048 043-298-8780 PC PC PC PC PC PDA PC PC 0120-97-1048 043-298-8780 PC

More information

PX-434A/PX-404A

PX-434A/PX-404A NPD4534-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.11...15...18...19...19...21...22!ex...22 /...23 P.I.F. PRINT Image Framer...23...24...26...27...27...28...28...31 Web...31...31...35...35...35...37...37...37...39...39...40...43...48

More information

DVD-RAM±R/RWユニット ハードウェアマニュアル

DVD-RAM±R/RWユニット ハードウェアマニュアル LDR-HA165U2_HARD V01 USB 2.0 DVD-RAM R/RW LDR-HA165U2... 4... 5... 7... 8... 12... 14 DVD-RAM... 16... 23... 25... 30... 31... 33 DOS/V DOS/V - 1 - DVD-RAM R/RW DVD-RAM R/RW DVD-RAM R/RW CD-ROM/DVD-ROM

More information

EPSON PM-G700プリンタ操作ガイド

EPSON PM-G700プリンタ操作ガイド A4 L... 7... 7... 8... 9... 11 EPSON PhotoQuicker... 11 for EPSON... 11... 12... 15 1... 15 2... 16 CD DVD CD DVD...17 CD DVD... 17... 17... 20 CD DVD... 21 CD DVD... 21... 21... 22... 22... 23... 24...

More information

,,.,,., II,,,.,,.,.,,,.,,,.,, II i

,,.,,., II,,,.,,.,.,,,.,,,.,, II i 12 Load Dispersion Methods in Thin Client Systems 1010405 2001 2 5 ,,.,,., II,,,.,,.,.,,,.,,,.,, II i Abstract Load Dispersion Methods in Thin Client Systems Noritaka TAKEUCHI Server Based Computing by

More information

P3PC

P3PC P3PC-4252-03 fi-7160/ fi-7260/ fi-7180/ fi-7280 *P3PC-4252-03* PDF Setup DVD-ROM Microsoft Corporation Microsoft Windows Windows Server Windows Vista Excel SharePoint Microsoft Corporation Word Microsoft

More information

EPSON EasyMP Network Projection Ver.2.75 Operation Guide

EPSON EasyMP Network Projection Ver.2.75 Operation Guide EasyMP Network Projection EasyMP Network Projection... 5... 5...5... 6...6...6 EasyMP Network Projection 2... 9...9 (LAN ).............. 9...9... 11... 12...12...12...13...15 EasyMP Network Projection

More information

PX-403A

PX-403A NPD4403-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22!ex...22 /...23 P.I.F. PRINT Image Framer...23...24...27...27...28...28...28...32 Web...32...32...35...35...35...37...37...37...39...39...40...43...46

More information

コミュニケーションユーティリティー編

コミュニケーションユーティリティー編 はじめに動付録デジタル複合機用 取扱説明書ソフトウェア ( コミュニケーションユーティリティー編 ) スキャナー設定作環境 Microsoft MS-DOS Windows Windows Server Windows Vista Internet Explorer Excel PowerPoint Outlook Windows Microsoft Corporation Microsoft Corporation

More information

パーソナルコンピュータのヘドニック回帰式

パーソナルコンピュータのヘドニック回帰式 2002 8 2002 8 1 HDD 2 2 8 1 wp01-24 1 BP 6 PC 2 DELL SOTEC IBM IBM Net Vista Series IBM 1 PC IBM Net Vista Series 2 2001 2002 246 293 2 2 1 2 CPU HDD CRT TFT CPU HDD CRT TFT CPU HDD 1 2.0kg 2.0kg 1 0 TFT

More information

Vol.55 No (Jan. 2014) saccess 6 saccess 7 saccess 2. [3] p.33 * B (A) (B) (C) (D) (E) (F) *1 [3], [4] Web PDF a m

Vol.55 No (Jan. 2014) saccess 6 saccess 7 saccess 2. [3] p.33 * B (A) (B) (C) (D) (E) (F) *1 [3], [4] Web PDF   a m Vol.55 No.1 2 15 (Jan. 2014) 1,a) 2,3,b) 4,3,c) 3,d) 2013 3 18, 2013 10 9 saccess 1 1 saccess saccess Design and Implementation of an Online Tool for Database Education Hiroyuki Nagataki 1,a) Yoshiaki

More information

EPSON EasyMP Network Projection Operation Guide

EPSON EasyMP Network Projection Operation Guide EasyMP Network Projection EasyMP Network Projection... 5... 5...5... 6... 6...6...6 EasyMP Network Projection 2... 10...10 (LAN )...10...10... 12... 13...13...13...14...16 EasyMP Network Projection PowerPoint

More information

DianaScope インストレーションマニュアル

DianaScope インストレーションマニュアル ESMPRO/ServerAgent Extension Document Rev.1.01 ... 1... 2... 4... 5 1 ESMPRO/ServerAgent Extension... 6 1.1 ESMPRO/ServerAgent Extension... 6 2... 7 2.1... 7 2.1.1... 9 2.2...11 2.2.1 BMC LAN...11 2.2.2

More information

PM-A850 プリンタ操作ガイド(Windows編)

PM-A850 プリンタ操作ガイド(Windows編) PM-A850 Windows A4 L... 6... 6... 7... 8... 10 EPSON PhotoQuicker... 10 for EPSON... 10... 11... 14 1... 14 2... 15... 16... 16... 17... 18... 20... 20 A4 L... 22... 22... 23... 24... 26... 26... 28...

More information

Systemwalker Desktop Patrol V15 資産管理集計機能 説明書

Systemwalker Desktop Patrol V15 資産管理集計機能 説明書 Systemwalker Desktop Patrol V15 20147 1... 3... 5... 10... 37... 41... 53 2... 62... 64... 65... 73 Systemwalker Desktop Patrol PC Life Cycle ManagementLCM PC OS PC OS PC PC PC PC Systemwalker Desktop

More information

EPSON EasyMP Multi PC Projection Ver.1.20 Operation Guide

EPSON EasyMP Multi PC Projection Ver.1.20 Operation Guide EasyMP Multi PC Projection EasyMP Multi PC Projection EasyMP Multi PC Projection... 5...5 4... 5...6...6 EasyMP Multi PC Projection... 9 EasyMP Multi PC Projection...9 EasyMP Multi PC ProjectionWindows...10

More information

EP-904シリーズ/EP-804シリーズ/EP-774A

EP-904シリーズ/EP-804シリーズ/EP-774A EP-904 EP-804 EP-774A NPD4532-00 ...7... 7...11 Mac OS X...12 Mac OS X v10.5.x v10.6.x...12 Mac OS X v10.4.11...16...19...20...20...23...24...25!ex...25 /...26 P.I.F. PRINT Image Framer...26...27...31...31...32...32...32...36

More information

VQS Collabo Homepage

VQS Collabo Homepage VQS Collabo Homepage http://www.vqscollabo.jp FAQ VQS...1...2...2 VQS...2...3...3...4 ( )...7...7...8 FAQ...8 VQS...9 FAQ... 10 VQS Internet Explorer... 11... 15 PROXY... 15 FinePrint5... 16... 17 FAQ...

More information

10 120 1010 13 15 14 11 36 13 1

10 120 1010 13 15 14 11 36 13 1 10 120 1010 13 15 14 11 36 13 1 15 165 15 17 651820 10 10 33158 31348 19 11 2 P 1 P 4 P18 10 P22 P25 P26 P27 P28 P29 3 10 10 30 28 30 19 12 3 17 28 27 20 4 5 K 30 30 6 ACT ISO9001 ISO ISO HACCPISO HACCP

More information

Q570_Edit_05_19J3.indd

Q570_Edit_05_19J3.indd D2Xs 2006.6.1 12.4 D2Xs NEW 629 JAN[4960759 124739] Li-ionEN-EL4aMH-21 EG-D2USBUC-E4AN-D2Xs LCDBM-3BL-1 USBPictureProject CD-ROM 2 3 Control D2Xs 100%0.8619.9mm ISO NEW NEW 170 232.5TFT 27L D2Xs VRON/OFF

More information

EPSON PX-500 プリンタ操作ガイド

EPSON PX-500 プリンタ操作ガイド A4 L... 6... 6... 7... 7... 8 EPSON PhotoQuicker... 8... 8... 12 1... 12 2... 13... 14... 14... 15... 15... 17... 17 A4 L... 19... 19... 20... 20... 21... 21... 23... 23... 23... 25... 25... 27... 27...

More information

“‡fi¡

“‡fi¡ 133 148 1997 The Network Integrated Multimedia Information Education System of Tokyo Kasei Gakuin Tsukuba Women's University Junior College Department of Information Science. Kiyomi TAKATO 1996 LAN WWW

More information

Macintosh... 5 Windows USB-SCSI... LogitecWare CD-ROM... USB-SCSI USB-SCSI SCSI SCSI

Macintosh... 5 Windows USB-SCSI... LogitecWare CD-ROM... USB-SCSI USB-SCSI SCSI SCSI LUB-SC_V05 USB-SCSI CABLE USB-SCSI LUB-SC ... 1... 2... 2... 3... 4 Macintosh... 5 Windows... 41 USB-SCSI... LogitecWare CD-ROM... USB-SCSI...... USB-SCSI SCSI SCSI - 1 - Windows Microsoft CorporationApple

More information

PX-673F

PX-673F NPD4385-00 ...6... 6...10 Mac OS X...11 Mac OS X v10.5.x v10.6.x...11 Mac OS X v10.4.x...15...18...19...19...21...22...23!ex...23 /...24 P.I.F. PRINT Image Framer...24...25...28...29...29...30...30...33

More information

2 2006 2 Mac OS X Net- Boot 1 2.1 2 3 4 386 NetBoot 1 2 F2D K2A K3A K4A F2A F2B F2C F2D F2A - 1: 1 Mac OS X Server MAC 1 Mac OS X Server NetBoot 2 3 4

2 2006 2 Mac OS X Net- Boot 1 2.1 2 3 4 386 NetBoot 1 2 F2D K2A K3A K4A F2A F2B F2C F2D F2A - 1: 1 Mac OS X Server MAC 1 Mac OS X Server NetBoot 2 3 4 Mac OS X Netboot An Educational Computer System using NetBoot for Mac OS X Hirokatsu SEGAWA, Takeshi SAKURADA, Yoichi HAGIWARA, Konosuke KAWASHIMA hiroka@cc.tuat.ac.jp, take-s@cc.tuat.ac.jp, hagi@cc.tuat.ac.jp,

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Pr

Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Pr Microsoft Project 2015 4 Microsoft Project Project 1984 No.1 Project PMBOK (Project Management Body of Knowledge) 1 2 ( ) 3 3 Project 3 Project Standard/Professional Office Project Standard Project Professional

More information

HDR-SR11/SR12

HDR-SR11/SR12 3-286-585-01(1) HDR-SR11/SR12 PDF CD-ROM 2008 Sony Corporation t32 34 v 11 AC b 1 2 3 1 2 3 4 2 AC1 1 1 A DA/V 1 B A/V 1 C USB 1 D 1 NP-FH60 1 CD-ROM Handycam Application Software122 Picture Motion Browser

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 Agenda Aspera GB ( ) IP FTP IP Aspera FASP Aspera Aspera Aspera FASP FTP Aspera Solution FASP WAN FTP 1. 2. 3. Aspera WAN 1. 2. 3. FASP FASP Aspera FASP UDP FASP UDP TCP Figure 1 FASP Adaptive Rate

More information

GT-F740/GT-S640

GT-F740/GT-S640 NPD4743-00 JA ...5 EPSON Scan... 5 Document Capture Pro / Document Capture...11...14 EPSON Scan...14 PDF...18 OCR...18...19...19...21 /...21...22...23 GT-F740...24...24...25...26...26...26...27 PDF...28...30

More information

入札参加資格の電子申請 電子入札の操作概要

入札参加資格の電子申請 電子入札の操作概要 H19.1. 1. 2. 3. 4. 5. 6. 7. 8. 9. Q & A HP http://www.pref.yamanashi.jp/ http://www.cals.pref.yamanashi.lg.jp/ H19.1 pdf WORDExcel LZH FAQ (Frequently Asked Questions ) PIN (Personal Identification Number)

More information

3 Adobe Photoshop CS6 Photoshop CS6 CS6 CS6 Photoshop CS6 24 Photoshop CS6 13 Adobe Mercury Graphics Engine CS6 Photoshop 3D CS6 Photoshop CS6 2

3 Adobe Photoshop CS6 Photoshop CS6 CS6 CS6 Photoshop CS6 24 Photoshop CS6 13 Adobe Mercury Graphics Engine CS6 Photoshop 3D CS6 Photoshop CS6 2 Adobe Photoshop CS6 HANDBOOK COMMERCIAL PHOTO 2012 年 7 月号より抜粋 3 Adobe Photoshop CS6 Photoshop CS6 CS6 CS6 Photoshop CS6 24 Photoshop CS6 13 Adobe Mercury Graphics Engine CS6 Photoshop 3D CS6 Photoshop

More information

ICD-SX78/SX88

ICD-SX78/SX88 VCCIB 2 ...2...5...6...9... 10 1:... 15... 16 2:... 18 3... 20... 22... 25 VOR... 26... 27... 28 2... 29... 30... 31... 32... 33... 35 DPC... 35 A-B... 36... 36... 37... 39 1... 39... 39 3 4... 40... 41...

More information

b 2

b 2 3-086-505-01(1) JP USB / MSAC-US30 b 2 MSAC-US30 3 VCCI B Program 2000-2003 Sony Corporation Documentation 2003 Sony Corporation OpenMG SonicStage Memory Stick MagicGate Memory Stick Memory Stick PRO PRO

More information

かんたんスタートガイド

かんたんスタートガイド かんたんスタートガイド Kaspersky Small Office Security 1. 3 2. 6 2-1. 6 3. 9 4. 10 4-1. Windows PC 10 4-2. Mac 13 4-3. Android 16 4-4 Windows 20 5. 23 5-1. 23 5-2. 24 5-3. 25 6. 32 7. 35 2 1 カスペルスキースモールオフィスセキュリティの特徴

More information

DCR-SR60

DCR-SR60 x 2-887-134-01(1) Q&A http://www.sony.co.jp/cam/support/ http://www.sony.co.jp/cam ImageMixer for HDD Camcorder http://www.pixela.co.jp/oem/sony/j/ 0570-00-0066 PHS........ 0466-38-0253 9 8 9 5 ImageMixer

More information

ThinkPad &NetVista IBM Windows XP Professional PCThinkPad PCNetVista ThinkPad4 Windows XP Professional Pentium 4 T Series X Series NetVista A Series R

ThinkPad &NetVista IBM Windows XP Professional PCThinkPad PCNetVista ThinkPad4 Windows XP Professional Pentium 4 T Series X Series NetVista A Series R TM ThinkPad & NetVista ThinkPad R31 ThinkPad A30 / A31 / A31p ThinkPad X24 Club IBM ThinkPad T30 IBMe-businessPC ServiceWellJThinkPadTrackPointNetVistaWake on LAN IBM Corporation MicrosoftWindowsWindows

More information

CD-R/RW... IEEE USB USB 2.0 High Speed Software Pack CD-ROM WinCDR Lite... Toast Lite... Windows 98 USB CD-R/RW... CD- ROM CD-R

CD-R/RW... IEEE USB USB 2.0 High Speed Software Pack CD-ROM WinCDR Lite... Toast Lite... Windows 98 USB CD-R/RW... CD- ROM CD-R LCW-B52FU2_V01 IEEE1394 & USB 2.0/1.1 CD-R/RW LCW-B52FU2... 1... 5... 5... 6... 6... 9... 11... 12... 14... 15 IEEE 1394... 17 USB... 43 IEEE1394 USB IEEE1394 USB IEEE1394 USB CD-R/RW... IEEE 1394... USB

More information

unitech PA500 Enterprise PDA Rev. A

unitech PA500 Enterprise PDA Rev. A unitech PA500 Enterprise PDA Rev. A PA500 Enterprise PDA Unitech Copyright 2007 unitech Electronics Co., Ltd. Web : http:\\www.unitech-japan.co.jp Bluetooth Bluetooth SIG Microsoft Windows ActiveSync

More information

DSC-P92

DSC-P92 3-082-719-01 (1) DSC-P92 2003 Sony Corporation . 1729. 3032. 3031. 730. 32. 3136. 3854 E. 15. 4961 2 ... 2... 4... 6...26...28...29... 8... 8...10...13...13...14...14...15...17...18...19...20...22...23...24...25...30...32...33...36...38

More information

Java3D

Java3D Java3D 00251586 2004 2 12 Java3D 00251586 Java3D Java Java3D Java3D, 2004 2 12. i 1 1 2 Java3D 2 2.1 Java............................... 2 2.2 Java3D.............................. 2 2.3 Java3D.........................

More information

Installation and New Features Guide for FileMaker Pro 10 and FileMaker Pro 10 Advanced

Installation and New Features Guide for FileMaker Pro 10 and FileMaker Pro 10 Advanced FileMaker FileMaker Pro 10 and FileMaker Pro 10 Advanced 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker,

More information

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2

CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 USER'S MANUAL CONTENTS 1 2 2 5 3 8 4 9 5 18 6 20 7 27 8 31 9 Web 33 10 36 11 37 12 39 2 1 Internet Explorer 6.0 DHTML Flash Flash 2 Web Web FTP Web Windows Windows Windows Windows 100 OS CPU HDD DOS/V

More information

Nikon COOLPIX S500 簡単操作ガイド

Nikon COOLPIX S500 簡単操作ガイド PictureProject S500 Jp COOLPIX S500 Li-ion EN-EL10 CHARGE MH-63 LITHIUM ION BATTERY CHARGER MH-63 USB UC-E6 c3 EG-CP14 PictureProject CD-ROM PictureProject CD-ROM SD SD 116 SD PictureProject Welcome c:

More information

IP IP DHCP..

IP IP DHCP.. NICE 2008 4 14 1 NICE 2 1.1.................... 2 2 3 2.1........................................ 3 2.2....................................... 5 2.3.................................... 6 2.4...................................

More information

EPSON GT-X700 ユーザーズガイド

EPSON GT-X700 ユーザーズガイド GT-X700 NPD0497 1.00... 5... 8... 8... 8 35mm... 11 35mm... 14 120 / 220... 17 4 5... 20 EPSON Scan...23 EPSON Scan... 23 TWAIN... 24... 26... 29... 29... 29... 31... 33... 36... 38 EPSON Scan... 38 TWAIN...

More information

( ) p.1 x y y = ( x ) 1 γ γ = filtergamma.java import java.applet.*; public class filtergamma extends Applet{ Image img; Image new_img; publi

( ) p.1 x y y = ( x ) 1 γ γ = filtergamma.java import java.applet.*; public class filtergamma extends Applet{ Image img; Image new_img; publi e001d 00 1 1 ( ) Figure 1: 1 shikaku.java import java.applet.*; public class shikaku extends Applet{ public void paint( Graphics g) { g.drawrect(,,0,0 ); // x(,) width = 0,height=0 g.drawrect(,,0,0 );

More information

HDR-TG1

HDR-TG1 3-288-522-02(1) HDR-TG1 PDF CD-ROM 2008 Sony Corporation t33 35 v 11 AC b 1 2 3 1 2 3 4 2 PRO 8GB 1 AC 1 1 1 A DA/V1 B A/V1 C USB1 D USB1 E USB1 F USB1 G NP-FH50 1 1 CD-ROM Handycam Application Software123

More information

DSC-P32/P72

DSC-P32/P72 3-080-877-01 (1) DSC-P32/P72 2003 Sony Corporation . 1931. 3234. 3233. 731. 34. 3237. 4056 E. 16. 5062 2 ... 2... 4... 6...10...10...12...15...15...16...16...17...19...20...21...22...24...25 DSC-P72...26...27...28...30...31...32...34...35...38...40

More information

VGF-WA1

VGF-WA1 VAIO http://vcl.vaio.sony.co.jp/ VGF-WA1 2007 Sony Corporation / Printed in China 3-094-116-01 (1) VAIO VAIO ...2 3 13... 13...14... 15...15...16... 17... 18...18...19...21...22...22...23... 25...25...26

More information

EPSON PXシリーズ プリンタドライバ 使い方ガイド

EPSON PXシリーズ プリンタドライバ 使い方ガイド K Microsoft Windows 2000 Operating System Microsoft Windows XP Home Edition Operating System Microsoft Windows XP Professional Operating System Microsoft Windows Vista Operating System OS Windows 2000Windows

More information

*10 3 ( ) ( ) (64 98g/m 2 ) (64 98g/m 2 ) (55 63g/m 2 ) 1(99 169g/m 2 ) 1(99 169g/m 2 ) (99 169g/m 2 ) OHP *8 (64 98g/m 2 ) (64 98g/m 2 ) (55 63g/m 2

*10 3 ( ) ( ) (64 98g/m 2 ) (64 98g/m 2 ) (55 63g/m 2 ) 1(99 169g/m 2 ) 1(99 169g/m 2 ) (99 169g/m 2 ) OHP *8 (64 98g/m 2 ) (64 98g/m 2 ) (55 63g/m 2 DocuPrint C3540/C3540 TD DocuPrint C3540 DocuPrint C3540 TD () *1 ( ) 45 ( 20 ) 35 / *3 35 / *3 28 / *4 *2 45 / *3 45 / *3 36 / *4 *7 1,200dpi(47.2 /mm) *5 600dpi (23.6 /mm) *6 300dpi (11.8 /mm) 1,200dpi(47.2

More information

HDR-SR7/SR8

HDR-SR7/SR8 3-210-378-01(1) HDR-SR7/SR8 PDF CD-ROM 2007 Sony Corporation t37 39 11 v b 1 2 3 2 1 2 3 4 32 / 8* AC / / / VCCI B DVD-R * DVD/HDD * * 30 3,000 / * * HDR-SR7 Windows XPOS * PDF Picture Motion Browser 3

More information

GT-X830

GT-X830 NPD5108-00 ...5... 5... 6... 8...11 EPSON Scan...11 PDF...16 OCR...16...17...17...20 /...20...20...22...23...23...24...25...25...26...27 PDF...30...31 / EPSON Scan...34 EPSON Scan...34 EPSON Scan...36

More information

MO...j.b.g.I.....C...K.C.h.p65

MO...j.b.g.I.....C...K.C.h.p65 -2- IEEE1394 & USB 2.0 / 1.1 MO IEEE1394 USB 2.0 2 480Mbps USB 2.0 High-Speed USB 1.1 USB PC AUTO ON/OFF ON/OFF OFF ON ON -3- OFF ON/OFF AC USB 2.0 USB 2.0 USB 2.0 USB 2.0 USB 1.1 USB 2.0-4- USB IEEE1394-5-

More information

InfoPrint 1316J / 1336J / 1356J 使用説明書<取り扱い編>(表紙、目次、安全に正しくお使いいただくために)

InfoPrint 1316J / 1336J / 1356J 使用説明書<取り扱い編>(表紙、目次、安全に正しくお使いいただくために) 1 2 3 4 5 6 7 8 9 / EPSON ESC/P EthernetXEROX EtherTalk Macintosh TrueTypeApple Computer,Inc. HP RTL DesignJet600 DesignJet700 HP7550AHewlett-Packard IBM DOS/VIBM Corporation Lotus1-2-3Lotus Development

More information

カメラユーザーガイド

カメラユーザーガイド NB-9L CB-2LB IFC-400PCU WS-DC10 DIGITAL CAMERA Solution Disk CD-ROM Readme PDF p.17 PDF Adobe Reader 2 99.99% p.xx xx 3 4 26 I V w P p.62 p.63 p.63 p.64 p.80 p.63 p.63 O p.63 t p.64 p.65 p.65 p.66 p.67

More information

EPSON GT-8400/GT-8400UF ユーザーズガイド

EPSON GT-8400/GT-8400UF ユーザーズガイド GT-8400U/GT-8400UF NPD0084 v1.00 win... 7... 8... 9 GT-8400UF... 10... 10... 10... 11... 11... 11 35mm... 13 35mm... 16 EPSON Scan...18 EPSON Scan... 18 TWAIN... 19... 21... 23... 23... 23... 23... 23...

More information

untitled

untitled LBD-A2FU2/WM BD-R 1 /2 BD-RE 1 /2 DVD-RAM DVD+R 2 DVD+R DVD+RW 1 DVD- R 2 DVD-R DVD-RW USB 2.0 High-Speed IEEE 1394 LBD-A2FU2/WM 13 メディア 対応速度 メディア 対応速度 BD-R 2 倍速書き込み BD-RE 2 倍速書き換え DVD-RAM 5 倍速書き換え DVD-

More information

: : : TSTank 2

: : : TSTank 2 Java (8) 2008-05-20 Lesson6 Lesson5 Java 1 Lesson 6: TSTank1, TSTank2, TSTank3 java 2 car1 car2 Car car1 = new Car(); Car car2 = new Car(); car1.setcolor(red); car2.setcolor(blue); car2.changeengine(jet);

More information

untitled

untitled ALTIRIS DEPLOYMENT SOLUTION 6.9 Quick Startup Guide Rev. 1.2 2008 7 11 1.... 2 DEPLOYMENT SERVER... 2 DEPLOYMENT CONSOLE... 2 DEPLOYMENT DATABASE... 2 DEPLOYMENT SHARE... 3 PXE SERVER... 3 DEPLOYMENT AGENT...

More information

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV

DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD  CD/DVD DVD CSS DVD SoundRipper DVD-Video DVD DVD-ROM DV SoundRipper 2 SoundRipper 5 SoundRipper 9 DVD 12 16 CD 25 CD 31 35 SoundRipper 38 FAQ 40 42 1 DVD CD SoundRipper SoundRipper DVD SoundRipper DVD SoundRipper DVD CD DVD DVD DVD CD CD DVD " CD/DVD" DVD CSS

More information

21 e-learning Development of Real-time Learner Detection System for e-learning

21 e-learning Development of Real-time Learner Detection System for e-learning 21 e-learning Development of Real-time Learner Detection System for e-learning 1100349 2010 3 1 e-learning WBT (Web Based training) e-learning LMS (Learning Management System) LMS WBT e-learning e-learning

More information

LCW-BA52SU2_com_1.p65

LCW-BA52SU2_com_1.p65 LCW-BA52SU2_V02A SCSI & USB 2.0/1.1 CD-R/RW LCW-BA52SU2... 1... 5... 5... 6... 6... 9... 11... 12 PC... 14... 15... 16 SCSI... 17 USB... 43... 68 SCSI USB SCSI USB SCSI USB CD-R/RW... SCSI D-sub 50...

More information