AirPrintPublic

Size: px
Start display at page:

Download "AirPrintPublic"

Transcription

1 Printing on ios 4.2 Yutaka Yasuda, Kyoto Sangyo University

2

3 AirPrint iphone / ipad Safari ios HP eprint

4 ASCII.jp x MacPeople OS X AirPrint -- Apple Geeks OS X CUPS OS X AirPrint CUPS $ echo 'image/urf urf (0,UNIRAST<00>)' > airprint.types $ sudo cp airprint.types /usr/share/cups/mime/ Password: $ sudo killall cupsd

5 ios Reference Library Drawing and Printing Guide for ios ios Printing Printing UIPrint* UIKit

6 Drawing and Printing Guide for ios

7 UIKit NSData, NSURL, UIImage, ALAsset PDF (#1) print formatter print job Text HTML (#2) UIPrintPageRenderer print job (#3)

8 Printing Printing UIKit Printing API Printing Class Protocol

9 How Printing Works in ios UIKit PDF Print Center Figure 6-6 Printing architecture

10 UIPrintInteractionController UIPrintInteractionController

11 UIPrintInteractionController pic printinfo printingitem printingitems printformatter printpagerenderer printinfo outputtype duplex... text, image, PDF

12 pic printinfo printingitem - image PDF (#1) printingitem printingitems printformatter printpagerenderer printingitems - printingitem Array (#1 ) printformatter - UIPrintFormatter view text, HTML (#2) printpagerenderer - UIPrintPageRenderer (#3)

13 Print Formatters (#2) UIPrintFormatter UISimpleTextPrintFormatter - plain text font, color, align, UIMarkupTextPrintFormatter - HTML UIViewPrintFormatter UIView viewprintformatter, drawrect:forviewprintformatter viewprintformatter print formatter UIWebView, UITextView, MKMapView

14 Page Renderers (#3) Renderer UIPrintFormatter UPPrintInteractionControllerDelegate print option print job

15 UIPrintInfo orientation duplex outputtype UIPrintInfoOutputPhoto - A6 (or 4x6, depends on locale) UIPrintInfoOutputGeneral - A4 or US Letter (on locale too)

16 locale // NSString *localeidentifier = [[NSLocale currentlocale] localeidentifier]; NSString *localestring = [[NSLocale currentlocale] displaynameforkey:nslocaleidentifier value:localeidentifier]; NSString *message = [NSString stringwithformat:@"id=%@ : %@", localeidentifier, localestring]; UIAlertView* alert = [[UIAlertView alloc]!!!!!! initwithtitle:@"language"!!!!!! message:message!!!!!! delegate:self!!!!!! cancelbuttontitle:@"ok"!!!!!! otherbuttontitles:nil]; [alert show]; [alert release];

17 Sample Code : PrintWebView #2 printformatter viewprintformatter webview header, footer webview PrintPhoto #3 UIPrintPageRenderer printformatter drawpageatindex: header, footer

18 TestPrint (#1) printingitem (#2) formatter A6 (#2) WebView load print (#3) renderer (#3) multi

19

20 AirPrint isprintingavailable - (void)viewdidload { if (![UIPrintInteractionController isprintingavailable]) [myprintbutton removefromsuperview]; // other tasks... } PrintWebView - (void)setuptoolbaritems

21 PrintInfo // UIPrintInteractionController *controller = [UIPrintInteractionController sharedprintcontroller]; // PrintInfo UIPrintInfo *printinfo = [UIPrintInfo printinfo]; UIImage *image = ((UIImageView *)self.view).image; printinfo.outputtype = UIPrintInfoOutputPhoto; printinfo.jobname from PrintPhoto"; printinfo.duplex = UIPrintInfoDuplexNone; if (!controller.printingitem && image.size.width > image.size.height) printinfo.orientation = UIPrintInfoOrientationLandscape;

22 completion-handler void (^completionhandler)(uiprintinteractioncontroller *, BOOL, NSError *) = ^(UIPrintInteractionController *pic, BOOL completed, NSError *error) { self.content = nil; if (!completed && error) NSLog(@"FAILED! due to error in domain %@ with error code %u", error.domain, error.code); };

23 ipad, iphone if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { [controller presentfrombarbuttonitem:self.printbutton animated:yes completionhandler:completionhandler]; } else { } [controller presentanimated:yes completionhandler:completionhandler];

24 Printer Options controller presentfrombarbuttonitem:completionhandler: presentfromrect:inview:animated:completionhandler: presentanimated:completionhandler:

25 Printer Options controller presentfrombarbuttonitem:completionhandler: Print presentfromrect:inview:animated:completionhandler: presentanimated:completionhandler: if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { [controller presentfrombarbuttonitem:self.printbutton animated:yes completionhandler:completionhandler]; } else { [controller presentanimated:yes completionhandler:completionhandler]; }

26 pic printingitem - image PDF (#1) printinfo printingitem printingitems printformatter printpagerenderer printingitems - printingitem Array (#1 ) printformatter - UIPrintFormatter view text, HTML (#2) printpagerenderer - UIPrintPageRenderer (#3)

27 printtestviewcontroller.h #import <UIKit/UIKit.h> (#123 printtestviewcontroller : UIViewController <UIPrintInteractionControllerDelegate> { } printtestviewcontroller.m -(IBAction)printContent:(id)sender {... } text or PDF)

28 printingitem (#1) -(IBAction)printContent:(id)sender {! NSData *mydata = [...]!UIPrintInteractionController *pic =... pic!! if( pic &&... ) {!!!! pic.delegate = self; delegate!!!! pic, printinfo!! pic.printingitem = mydata; pic!!!!!! [pic ];!}! }

29 before assigning objects, you should validate the objects // printinteractioncontroller UIPrintInteractionController *pic = [UIPrintInteractionController sharedprintcontroller]; // printingitem if(pic && [UIPrintInteractionController canprintdata: mydata] ) { pic.printingitem = mydata;... canprinturl: image UTI printableutis if ([[UIPrintInteractionController printableutis] containsobject:myimageuti]) pic.printingitem = myimage;

30 -(IBAction)printContent:(id)sender {! NSString *path = [[NSBundle mainbundle] pathforresource:@"sample" oftype:@"jpg"];! NSData *mydata = [NSData datawithcontentsoffile: path];!! UIPrintInteractionController *pic = [UIPrintInteractionController sharedprintcontroller]; pic!! if(pic && [UIPrintInteractionController canprintdata: mydata] ) {!!!! pic.delegate = self;!!!! UIPrintInfo *printinfo = [UIPrintInfo printinfo];!! printinfo.outputtype = UIPrintInfoOutputGeneral;!! printinfo.jobname = [path lastpathcomponent];!! printinfo.duplex = UIPrintInfoDuplexLongEdge;!! pic.printinfo = printinfo;!! pic.showspagerange = YES;!! pic.printingitem = mydata;!!!! void (^completionhandler)(uiprintinteractioncontroller *, BOOL, NSError *) =!! ^(UIPrintInteractionController *pic, BOOL completed, NSError *error) {!!! //self.content = nil;!!! if (!completed && error) {!!!! NSLog(@"FAILED! due to error in domain %@ with error code %u", error.domain, error.code);!!! }!! };!!!! [pic presentanimated:yes completionhandler:completionhandler];! }! } delegate printinfo pic UI printinfo job name (#1 )

31 NSData NSURL printingitem (#1) PDF (1) NSData (2) NSURL NSData NSString *path = [[NSBundle mainbundle] pathforresource:@"sample" oftype:@"jpg"]; NSData *mydata = [NSData datawithcontentsoffile: path]; if(pic && [UIPrintInteractionController canprintdata:mydata]) { pic.printingitem = mydata;... NSURL NSString *path = [[NSBundle mainbundle] pathforresource:@"sample" oftype:@"jpg"]; NSURL *myurl = [NSURL fileurlwithpath: path]; if(pic && [UIPrintInteractionController canprinturl:myurl]) { pic.printingitem = myurl;... NSURL *myurl = [NSURL URLWithString:@"file:///sample.jpg"];

32 step 3. step 1. step 2.

33 pic printinfo done printingitem - image PDF (#1) printingitem printingitems printformatter printpagerenderer printingitems - printingitem Array (#1 ) printformatter - UIPrintFormatter view text, HTML (#2) printpagerenderer - UIPrintPageRenderer (#3)

34 -(IBAction)printContent:(id)sender {! NSData *mydata = [...]!UIPrintInteractionController *pic =... pic!! if( pic &&... ) {!!!! pic.delegate = self; delegate!!!! pic, printinfo!! pic.printingitem = mydata; pic!!!!!! [pic ];!}! }

35 printformatter (#2) printingitem(s) - image PDF pic.printingitem = mydata; // printformatter - text, HTML View text UISimpleTextPrintFormatter *fmt =! [[UISimpleTextPrintFormatter alloc] initwithtext:@"hello!!"]; pic.printformatter = fmt; fmt font, color, linebreakmode, textalignment printingitem (#1) printingformatter (#2) pic printinfo pic printinfo printingitem printingitems printformatter printpagerenderer text, image, PDF printingitem printingitems printformatter printpagerenderer formatter text, HTML, view

36 (#2) Figure 6-8 The layout of a multi-page print job printformat inset maximumcontentwidth, Height points (72points / inch) fmt.contentinsets = UIEdgeInsetsMake(72.0, 72.0, 72.0, 72.0); fmt.maximumcontentwidth = 6 * 72.0;

37 UISimpleTextPrintFormatter text (#2) UISimpleTextPrintFormatter *textformatter = // formatter [[UISimpleTextPrintFormatter alloc] initwithtext:@... ]; textformatter.startpage = 0; NSString textformatter.contentinsets = UIEdgeInsetsMake(72.0, 72.0, 72.0, 72.0); // 1 textformatter.maximumcontentwidth = 6 * 72.0; pic.printformatter = textformatter; // formatter Printer Simulator Preview // // main.m // printtest // // Created by yasuda on 11/03/01. // Copyright 2011 MyCompanyName. All rights reserved. // #import <UIKit/UIKit.h> int main(int argc, char *argv[]) { NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retval = UIApplicationMain(argc, argv, nil, nil); [pool release];

38 text NSString *path = [[NSBundle mainbundle] pathforresource:@"sample" oftype:@"txt"]; NSError *error=nil; path NSString *text = [[NSString alloc] initwithcontentsoffile:path encoding:nsutf8stringencoding error:&error]; Alert if([[error domain]isequal:nscocoaerrordomain]) { UIAlertView* alert = [[UIAlertView alloc] initwithtitle:@"text file reading"!!!!!!!! message:[error localizeddescription] delegate:self cancelbuttontitle:@"ok" otherbuttontitles:nil];! [alert show];! [alert release];! return; }

39 CR LF // // main.m // printtest // // Created by yasuda on 11/03/01. // Copyright 2011 MyCompanyName. All rights reserved. // #import <UIKit/UIKit.h> int main(int argc, char *argv[]) { } NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; int retval = UIApplicationMain(argc, argv, nil, nil); [pool release]; return retval;

40 linebreakmode linebreakmode textformatter.linebreakmode = UILineBreakModeWordWrap; UISimpleTextPrintFormatter : UIPrintFormatter { } - (id)initwithtext:(nsstring NSString UIFont UIColor UITextAlignment

41 UIMarkupTextPrintFormatter HTML (#2) UIMarkupTextPrintFormatter *htmlformatter = // formatter [[UIMarkupTextPrintFormatter alloc] initwithtext:@ <HTML>... ]; pic.printformatter = htmlformatter; // formatter NSString HTML UISimpleTextPrintFormatter

42 UIViewPrintFormatter webview (#2) UIViewPrintFormatter *viewformatter = // formatter [mywebview viewprintformatter]; pic.printformatter = viewformatter; // formatter webview UISimpleText, UIMarkUpTextPrintFormatter

43 (#2) UISimpleTextPrintFormatter : plain text UISimpleTextPrintFormatter *formatter = // formatter [[UISimpleTextPrintFormatter alloc] initwithtext:@ my name is... ]; pic.printformatter = formatter; // formatter NSString plain text UIMarkUpTextPrintFormatter : HTML UIMarkupTextPrintFormatter *formatter = // formatter [[UIMarkupTextPrintFormatter alloc] initwithtext:@ <HTML>... ]; pic.printformatter = formatter; // formatter NSString HTML UIViewPrintFormatter : View UIViewPrintFormatter *formatter = [mywebview viewprintformatter]; // formatter pic.printformatter = formatter; // formatter UIWebView UITextView, MKMapView

44 pic printinfo done printingitem - image PDF (#1) printingitem printingitems printformatter printpagerenderer printingitems - printingitem Array (#1 ) done printformatter - UIPrintFormatter view text, HTML (#2) printpagerenderer - UIPrintPageRenderer (#3)

45 printpagerenderer (#3) printingitem printingformatter (#1) (#2) pic printinfo pic printinfo printingitem printingitems printformatter printpagerenderer text, image, PDF printingitem printingitems printformatter printpagerenderer formatter text, HTML, view printpagerenderer pic printinfo printingitem printingitems printformatter printpagerenderer (#3) myrenderer drawpageatindex drawheaderforpageatindex drawcontentforpageatindex drawfooterforpageatindex propertyx, propertyy,... override

46 override (#3) drawpageatindex drawheaderforpageatindex, drawfooterforpageatindex drawcontentforpageatindex drawprintformatter drawpageatindex drawpageatindex: drawheaderforpageatindex: drawcontentforpageatindex: PrintPhoto override drawprintformatter:forpageatindex: drawfooterforpageatindex: PrintWebView override

47 PrintPhoto PrintPhotoPageRenderer.m PrintPhotoViewController.m PrintPhoto/Introduction/Intro.html PrintPhotoPageRenderer.h PrintPhotoPageRenderer : UIPrintPageRenderer { UIImage *imagetoprint; } - (void)drawpageatindex:(nsinteger)pageindex inrect:(cgrect)printablerect {... printablerect } destrect = CGRectMake(...); [self.imagetoprint drawinrect:destrect]; PrintPhotoPageRenderer *pagerenderer = [[PrintPhotoPageRenderer alloc] init]; pagerenderer.imagetoprint = ((UIImageView *)self.view).image; controller.printpagerenderer = pagerenderer; UIPrintInteractionController UIImage drawinrect renderer drawpageatindex: controller (#3)

48 (#3) Figure 6-8 The layout of a multi-page print job renderer inset maximumcontentwidth, Height points (72points / inch) pagerenderer.headerheight = 10;

49 (#3) SamplePrintViewController.m PrintGridPageRenderer *pagerenderer = [[PrintGridPageRenderer alloc] init];... pagerenderer.headerheight = 10.0; pagerenderer.footerheight = 15.0; SamplePrintPageRenderer.m -(void)drawheaderforpageatindex:(nsinteger)index inrect:(cgrect)headerrect drawfooterforpageatindex: -(void)drawcontentforpageatindex:(nsinteger)index inrect:(cgrect)contentrect

50 UIFont *font = [UIFont fontwithname:@"helvetica" size:10]; CGSize titlesize = [@"Sample Header String." sizewithfont:font]; pagerenderer.headerheight = titlesize.height * 1.5; UIFont *font = [UIFont fontwithname:@"helvetica" size:10]; [@"Sample Header String." drawatpoint:startpoint withfont:font]; -(void)drawheaderforpageatindex:(nsinteger)index inrect:(cgrect)headerrect UIFont *font = [UIFont fontwithname:@"helvetica" size:10]; CGFloat startx = headerrect.origin.x + 10; CGSize stringsize = [headerstring sizewithfont:font]; CGFloat starty = headerrect.origin.y + ( headerrect.size.height - stringsize.height ) / 2 ; CGPoint startpoint = CGPointMake(startX, starty); [headerstring drawatpoint:startpoint withfont:font];

51 printformatter printpagerenderer printformatter UIPrintFormatter Class Reference Third-party subclasses of UIPrintFormatter are not recommended. If you have custom content to print, use a custom UIPrintPageRenderer object. printformatter PrintWebView

52

53 PrinterSimulator.app /Platforms/iPhoneOS.platform/Developer/Applications/PrinterSimulator.app

54 Print Simulator Printer Options Select Printer >

55 Printer Simulator Save Original to Simulator

56 Print Preview

57

58 Show in Finder /private/var/folders/12/12p8rcisfu8d1efifmdirk+++ti/-tmp-/printersimulator.ykiwkw

59

60 [01/Mar/2011:17:52: ] Listening for connections on : [01/Mar/2011:17:52: ] Listening for connections on [::1]: [01/Mar/2011:17:53: ] Accepted connection from fe80::219:e3ff:fef9:9692%en0:57733 (IPv6) [01/Mar/2011:17:53: ] "POST /printers/save HTTP/1.1" Get-Printer-Attributes successful-ok [01/Mar/2011:17:53: ] Closing connection from fe80::219:e3ff:fef9:9692%en0:57733 (IPv6) [01/Mar/2011:17:53: ] Accepted connection from fe80::219:e3ff:fef9:9692%en0:57734 (IPv6) [01/Mar/2011:17:53: ] "POST /printers/save HTTP/1.1" Validate-Job successful-ok [01/Mar/2011:17:53: ] save : job-created - Job created [01/Mar/2011:17:53: ] Save Original to Simulator: Accepted "sample.jpg" for printing (job # , image/jpeg, 1 pages) [01/Mar/2011:17:53: ] save : job-state-changed - Job pending [01/Mar/2011:17:53: ] Save Original to Simulator: Printing "sample.jpg" (job # ) [01/Mar/2011:17:53: ] Viewing "/var/folders/12/12p6rcisfu8p1efifmdirk+++ti/-tmp-/ PrinterSimulator.YKiwkW/ jpg" [01/Mar/2011:17:53: ] Accepted connection from fe80::219:e3ff:fef9:9692%en0:57735 (IPv6) [01/Mar/2011:17:53: ] "POST /printers/save HTTP/1.1" Get-Printer-Attributes successful-ok [01/Mar/2011:17:53: ] Closing connection from fe80::219:e3ff:fef9:9692%en0:57735 (IPv6) [01/Mar/2011:17:53: ] "POST /printers/save HTTP/1.1" successful-ok [01/Mar/2011:17:53: ] save : job-state-changed - Job printing [01/Mar/2011:17:53: ] Save Original to Simulator: Connecting to printer [01/Mar/2011:17:53: ] save : job-completed - Job completed [01/Mar/2011:17:53: ] "POST /printers/save HTTP/1.1" Get-Job-Attributes successful-ok [01/Mar/2011:17:53: ] Closing connection from fe80::219:e3ff:fef9:9692%en0:57734 (IPv6)

61

) CoreImage 2013/5/25 iphone

) CoreImage 2013/5/25 iphone ) CoreImage 2013/5/25 iphone DJ / : takatronix Facebook/Twitter/Skype/LINE/Weibo -> takatronix http://takatronix.com LEGO FX SEXY SCAN... (SexyMirror)2013/1 iphone ios API UIImagePickerController UI AVFoundation.framework

More information

Swiftではじめる iPhoneアプリ開発の教科書 【iOS 8&Xcode 6対応】初版第2刷差分

Swiftではじめる iPhoneアプリ開発の教科書 【iOS 8&Xcode 6対応】初版第2刷差分 ( ) func ( :,...) -> (,,...) { // return } T i p s Xcode 6.1 2 1 2 func myfunc(val1:int, val2:int, val3:int)->int { return val1 * val2 * val3 } 2 var ans myfunc(1, val2: 2, val3: 3) Xcode Xcode 150 Chapter

More information

ARC Automatic Reference Counting clang 新しいコンパイラ LLVMプロジェクト (http://llvm.org/) のコンパイラ C Objective-C C++ の効率的なコードを生成 オプションなどは gcc とほぼ共通 Apple社独自の拡張機能を実現 ARC ブロックオブジェクトなど ARCを利用するには clang が必須 コンパイルオプションに

More information

- 2 Copyright (C) 2006. All Rights Reserved.

- 2 Copyright (C) 2006. All Rights Reserved. - 2 Copyright (C) 2006. All Rights Reserved. 2-3 Copyright (C) 2006. All Rights Reserved. 70-4 Copyright (C) 2006. All Rights Reserved. ...1...3...7...8 1...9...14...16 2...18...20...21 3...22...23...23...24

More information

Swift1.key

Swift1.key Swift Swift 対象読者としては すでにC 言語および Objective-C( あるいは少なくともJava など ) によるプログラミングの経験がある人を想定しています すでに出版されている入門書や雑誌記事ではSwiftの全体像が把握できないと感じている人には特にお勧めです ジェネリクスの機能や標準ライブラリに関する解説なども含んでおり 現時点では最も 濃い Swift 本になっていると思います

More information

XMPによる並列化実装2

XMPによる並列化実装2 2 3 C Fortran Exercise 1 Exercise 2 Serial init.c init.f90 XMP xmp_init.c xmp_init.f90 Serial laplace.c laplace.f90 XMP xmp_laplace.c xmp_laplace.f90 #include int a[10]; program init integer

More information

JavaScriptCore

JavaScriptCore http://kishikawakatsumi.com Twitter @k_katsumi 24/7 twenty-four seven http://d.hatena.ne.jp/kishikawakatsumi/ JSContext *context = [[JSContext alloc] init]; JSValue *result = [context evaluatescript:@"2

More information

インターネットマガジン1995年8月号―INTERNET magazine No.7

インターネットマガジン1995年8月号―INTERNET magazine No.7 064 INTERNET MAGAZINE 1995/8 Copyright 1995 Netscape Communications Corporation INTERNET MAGAZINE 1995/8 065 point 2 point 7 point 6 point 3 point 5 point 4 point 1 066 INTERNET MAGAZINE 1995/8 1 2 3 4

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

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

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

More information

com.ibm.etools.egl.jsfsearch.tutorial.doc.ps

com.ibm.etools.egl.jsfsearch.tutorial.doc.ps EGL JSF ii EGL JSF EGL JSF.. 1................. 1 1:.... 3 Web.......... 3........... 3........ 4......... 7 2:...... 7..... 7 SQL.... 8 JSF.... 10 Web.... 12......... 13 3: OR....... 14 OR... 14.15 OR.....

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

【お試し版】Web制作者のためのCSS設計の教科書(非売品)

【お試し版】Web制作者のためのCSS設計の教科書(非売品) UI Frontrend JS Girls html5j HTML5 CSS3 iphone Twitter : http://twitter.com/hiloki : http://inkdesign.jp GitHub : https://github.com/hiloki/ URL http://www.impressjapan.jp/books/1113101128 Web 10 IT UI

More information

sp2-2.indd

sp2-2.indd iphone によるセンサプログラミング 基応専般 沼田哲史大阪電気通信大学総合情報学部デジタルゲーム学科 iphone プログラミングの概要 Apple iphone/ipad ios 2011 10 12 iphone/ipad OS ios 5 ios 5 ios 5 iphone 3GS iphone 4 iphone 4S ipad ipad 2 3 4 2009 ipod touch 図

More information

programmingII2019-v01

programmingII2019-v01 II 2019 2Q A 6/11 6/18 6/25 7/2 7/9 7/16 7/23 B 6/12 6/19 6/24 7/3 7/10 7/17 7/24 x = 0 dv(t) dt = g Z t2 t 1 dv(t) dt dt = Z t2 t 1 gdt g v(t 2 ) = v(t 1 ) + g(t 2 t 1 ) v v(t) x g(t 2 t 1 ) t 1 t 2

More information

初心者にもできるアメブロカスタマイズ新2016.pages

初心者にもできるアメブロカスタマイズ新2016.pages Copyright All Rights Reserved. 41 Copyright All Rights Reserved. 60 68 70 6 78 80 Copyright All Rights Reserved. FC2 97 Copyright All Rights Reserved. Copyright All Rights Reserved. Copyright All Rights

More information

Quartz OpenGL ES 注 3 注 4 図 2 注 5 3 3D 4 5 2 OpenGL ES Quartz Quartz Jun. 2011-135

Quartz OpenGL ES 注 3 注 4 図 2 注 5 3 3D 4 5 2 OpenGL ES Quartz Quartz Jun. 2011-135 iphone Quartz ios ios YOSHIDA Yuuichi http://sonson.jp 注 1 注 2 図 1 1 ios Objective-C 2 Google 1 Map Kit 3 Cocoa Touch 134 - Software Design Quartz OpenGL ES 注 3 注 4 図 2 注 5 3 3D 4 5 2 OpenGL ES Quartz

More information

fx-9860G Manager PLUS_J

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

More information

InfoPrint 5400 モデルF10 設置と操作の手引き(付録:A~G)

InfoPrint 5400 モデルF10 設置と操作の手引き(付録:A~G) A. InfoPrint 5400 A.1 InfoPrint 5400 ( 1 A-6 3.5 16 ( 2) (89 406 mm) 8 12 (203 305 mm) (102 mm 6.35 ±0.25 mm 0.1 mm 12.7 ±0.1 mm 0.15 mm 4.0 ±0.1 mm ( 3) ( 4) ( 4) 1 mm 2 3mm 1 mm 2 mm ( 5) 55 kg 135 kg

More information

lifedesign_contest_No3

lifedesign_contest_No3 1 3 5 Apple Developer Program 5 AWS 8 Raspberry Pi 14 18 19 { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sns:createplatformendpoint" ], "Resource": [ ] ] #

More information

index View Controller

index View Controller Creative Application Summer Camp Kengo Part - lesson 2 2011/08/26 index View Controller summer 2.1 View View (1) View View = View UIView View UIView (ex. ) UIView ( ) (, ) (c) / View (2) View 1. View 2.

More information

Copyright 2006 KDDI Corporation. All Rights Reserved page1

Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page1 Copyright 2006 KDDI Corporation. All Rights Reserved page2 Copyright 2006 KDDI Corporation. All Rights Reserved page3 Copyright 2006 KDDI Corporation.

More information

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

More information

help gem gem gem my help

help gem gem gem my help hikiutils 1234 2017 3 1 1 6 1.0.1 help gem................... 7 gem.................................... 7 gem................................... 7 my help.................................. 7 my help......................

More information

Copyright All Rights Reserved. -2 -!

Copyright All Rights Reserved. -2 -! http://ameblo.jp/admarketing/ Copyright All Rights Reserved. -2 -! Copyright All Rights Reserved. -3- Copyright All Rights Reserved. -4- Copyright All Rights Reserved. -5 - Copyright All Rights Reserved.

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

カメラ操作のプログラミング(iOS用)について (TP )

カメラ操作のプログラミング(iOS用)について (TP ) カメラ操作の プログラミング (ios 用 ) 目次 カメラとフォトライブラリについて 4 この書類の構成 5 写真とムービーの撮影 6 カメラインターフェイスの作成と設定 7 カメラインターフェイス用のデリゲートの実装 10 フォトライブラリからのアイテムの選択 13 メディアブラウザの作成と設定 13 メディアブラウザ用のデリゲートの実装 16 書類の改訂履歴 19 2 図 リスト 写真とムービーの撮影

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

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

/ 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

r08.dvi

r08.dvi 19 8 ( ) 019.4.0 1 1.1 (linked list) ( ) next ( 1) (head) (tail) ( ) top head tail head data next 1: NULL nil ( ) NULL ( NULL ) ( 1 ) (double linked list ) ( ) 1 next 1 prev 1 head cur tail head cur prev

More information

IPA:セキュアなインターネットサーバー構築に関する調査

IPA:セキュアなインターネットサーバー構築に関する調査 Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved. Copyright 2003 IPA, All Rights Reserved.

More information

Microsoft Word - 最終版 バックせどりismマニュアル .docx

Microsoft Word - 最終版 バックせどりismマニュアル .docx ism ISM ISM ISM ISM ISM ISM Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. Copyright (c) 2010 All Rights Reserved. ISM Copyright (c) 2010 All Rights Reserved. Copyright

More information

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i +=

Local variable x y i paint public class Sample extends Applet { public void paint( Graphics gc ) { int x, y;... int i=10 ; while ( i < 100 ) {... i += Safari AppletViewer Web HTML Netscape Web Web 13-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

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 - MDOnline 2001.

Microsoft Word - MDOnline 2001. NSToolbar NSToolbarItem - 1 - Font Style Font Size セパレータ Blue Text Print : 文字修飾 ( Plain Text Bold Italic ) をメニューから変更する : 文字サイズをステッパーで変更する : 区切りを表示する : 文字色を青と黒に交互に切替える : テキストビューを印刷する NSTextView blueletter.tif

More information

Microsoft Word - iPhone_finalv3.doc

Microsoft Word - iPhone_finalv3.doc 1 Apple iphone, iphone,, GPS,, Apple iphone SDK. 5 ipad, 6 OS ios 4.0 ios4.0, API, API, iphone/ipad iphone/ipad., iphone/ipad,, Hello, World!,, iphone. 2 iphone SDK iphonesdk iphone SDK 4 ( 1) API Core

More information

第5回お試しアカウント付き並列プログラミング講習会

第5回お試しアカウント付き並列プログラミング講習会 qstat -l ID (qstat -f) qscript ID BATCH REQUEST: 253443.batch1 Name: test.sh Owner: uid=32637, gid=30123 Priority: 63 State: 1(RUNNING) Created at: Tue Jun 30 05:36:24 2009 Started at: Tue Jun 30 05:36:27

More information

Bento User’s Guide

Bento User’s Guide Bento 4 2007-2012 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. Bento FileMaker, Inc. FileMaker FileMaker,

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

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

ex01.dvi

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

More information

ohp08.dvi

ohp08.dvi 19 8 ( ) 2019.4.20 1 (linked list) ( ) next ( 1) (head) (tail) ( ) top head tail head data next 1: 2 (2) NULL nil ( ) NULL ( NULL ) ( 1 ) (double linked list ) ( 2) 3 (3) head cur tail head cur prev data

More information

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up

Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web up Safari AppletViewer Web HTML Netscape Web Web 15-1 Applet Web Applet init Web paint Web start Web HTML stop destroy update init Web paint start Web update Event Driven paint Signature Overwriting Overriding

More information

joho07-1.ppt

joho07-1.ppt 0xbffffc5c 0xbffffc60 xxxxxxxx xxxxxxxx 00001010 00000000 00000000 00000000 01100011 00000000 00000000 00000000 xxxxxxxx x y 2 func1 func2 double func1(double y) { y = y + 5.0; return y; } double func2(double*

More information

$ sudo apt-get install libavahi-compat-libdnssd-dev $ sudo apt-get autoremove nodejs $ wget http://nodejs.org/dist/latest/node-v7.6.0-linux-armv7l.tar.gz $ tar xzf node-v7.6.0-linux-armv7l.tar.gz $ sudo

More information

IP IP All contents are Copyright (c) All rights reserved. Important Notices and Privacy Statement. page 2 of 39

IP IP All contents are Copyright (c) All rights reserved. Important Notices and Privacy Statement. page 2 of 39 02 08 14 21 27 34 All contents are Copyright (c) 1992-2004 All rights reserved. Important Notices and Privacy Statement. page 1 of 39 IP IP All contents are Copyright (c) 1992-2004 All rights reserved.

More information

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13

ProVAL Recent Projects, ProVAL Online 3 Recent Projects ProVAL Online Show Online Content on the Start Page Page 13 ProVAL Unit System Enable Recording Log Preferred Language Default File Type Default Project Path ProVAL : Unit SystemUse SI Units SI SI USCS Enable Recording Log Language Default File Type Default Project

More information

Smalltalk_

Smalltalk_ DLLCC VisualWorks C Mac OS SSK-LampControl/ VisualWorksWithJun SSK-LampControl.h include SSK SSK FileBrowser SSK-LampControl.st FIle in SSK-LampControl File in SSK File in ( Smalltalk.SSK) ( C ) Controller

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

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

XcalableMP入門

XcalableMP入門 XcalableMP 1 HPC-Phys@, 2018 8 22 XcalableMP XMP XMP Lattice QCD!2 XMP MPI MPI!3 XMP 1/2 PCXMP MPI Fortran CCoarray C++ MPIMPI XMP OpenMP http://xcalablemp.org!4 XMP 2/2 SPMD (Single Program Multiple Data)

More information

- 2 Copyright (C) 2009. All Rights Reserved.

- 2 Copyright (C) 2009. All Rights Reserved. - 2 Copyright (C) 2009. All Rights Reserved. - 3 Copyright (C) 2009. All Rights Reserved. - 4 Copyright (C) 2009. All Rights Reserved. - 5 Copyright (C) 2009. All Rights Reserved. - 6 Copyright (C) 2009.

More information

untitled

untitled mitsuya Copyright (C) 2007. All Rights Reserved. 1/1 mitsuya Copyright (C) 2007. All Rights Reserved. 2/2 mitsuya Copyright (C) 2007. All Rights Reserved. 3/3 mitsuya Copyright (C) 2007. All Rights Reserved.

More information

ohp03.dvi

ohp03.dvi 19 3 ( ) 2019.4.20 CS 1 (comand line arguments) Unix./a.out aa bbb ccc ( ) C main void int main(int argc, char *argv[]) {... 2 (2) argc argv argc ( ) argv (C char ) ( 1) argc 4 argv NULL. / a. o u t \0

More information

3 top#index 1 web router.ex web/router.ex 12 scope "/", NanoPlanner do 13 pipe_through browser get "/", TopController, index 16 end URL / to

3 top#index 1 web router.ex web/router.ex 12 scope /, NanoPlanner do 13 pipe_through browser get /, TopController, index 16 end URL / to 3 NanoPlanner SASS Bootstrap Font Awesome 3.1 RAVT 6 RAVT route action view template Phoenix top index top index top#index RAVT URL / top#index top#index top 23 3 top#index 1 web router.ex web/router.ex

More information

Complex Lab – Operating Systems - Graphical Console

Complex Lab – Operating Systems - Graphical Console Complex Lab Operating Systems Graphical Console Martin Küttler Last assignment Any questions? Any bug reports, whishes, etc.? 1 / 13 We are here Pong Server Paddle Client 1 Paddle Client 2 Memory Management

More information

r07.dvi

r07.dvi 19 7 ( ) 2019.4.20 1 1.1 (data structure ( (dynamic data structure 1 malloc C free C (garbage collection GC C GC(conservative GC 2 1.2 data next p 3 5 7 9 p 3 5 7 9 p 3 5 7 9 1 1: (single linked list 1

More information

A/B (2018/10/19) Ver kurino/2018/soft/soft.html A/B

A/B (2018/10/19) Ver kurino/2018/soft/soft.html A/B A/B (2018/10/19) Ver. 1.0 kurino@math.cst.nihon-u.ac.jp http://edu-gw2.math.cst.nihon-u.ac.jp/ kurino/2018/soft/soft.html 2018 10 19 A/B 1 2018 10 19 2 1 1 1.1 OHP.................................... 1

More information

ohp07.dvi

ohp07.dvi 19 7 ( ) 2019.4.20 1 (data structure) ( ) (dynamic data structure) 1 malloc C free 1 (static data structure) 2 (2) C (garbage collection GC) C GC(conservative GC) 2 2 conservative GC 3 data next p 3 5

More information

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200,

3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, WEB DB PRESS Vol.1 79 3 Powered by mod_perl, Apache & MySQL use Item; my $item = Item->new( id => 1, name => ' ', price => 1200, http://www.postgresql.org/http://www.jp.postgresql.org/ 80 WEB DB PRESS

More information

how-to-decide-a-title

how-to-decide-a-title Contents 3 4 5 6 8 13 13 14 14 15 15 18 19 Copyright 2014 All Rights Reserved. 2 / 21 URL AdobeReader ( ) http://www.adobe.co.jp/products/acrobat/readstep2.html Copyright 2014 All Rights Reserved. 3 /

More information

TOEIC(R) Newsletter

TOEIC(R) Newsletter June 2009 No.105 TOEIC Newsletter TOEIC Newsletter No.105 June 2009 2 TOEIC Newsletter No.105 June 2009 3 4 TOEIC Newsletter No.105 June 2009 TOEIC Newsletter No.105 June 2009 5 6 TOEIC Newsletter No.105

More information

エラー処理・分割コンパイル・コマンドライン引数

エラー処理・分割コンパイル・コマンドライン引数 L10(2017-12-05 Tue) : Time-stamp: 2017-12-17 Sun 11:59 JST hig. recv/send http://hig3.net ( ) L10 (2017) 1 / 21 IP I swallow.math.ryukoku.ac.jp:13 = 133.83.83.6:13 = : IP ( = ) (well-known ports), :. :,.

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

WordPress Web

WordPress Web 0948011 1 1 1.............................. 1 2 WordPress....................... 2 3........................ 3 4........................ 4 2 4 1 Web......... 4 3 5 1 WordPress...................... 5 2..........................

More information

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. - 1 - - 2 - #pragma mark LABELNAME mark #pragma mark SETTITLE - 3 - - 4 - - 5 - NSApplication requestuserattention : NSApplication : - (int) requestuserattention : (NSRequestUserAttentionType) reqtype

More information

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法

大統一Debian勉強会 gdb+python拡張を使ったデバッグ手法 Debian 2013 gdb+python nozzy@debian.or.jp 2013 6 29 Level Debian Up Debian Debian debian sid unstable Debian debian sid unstable *-dbg Debian debian sid unstable *-dbg gdb Debian debian sid unstable *-dbg

More information

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

Bento 3

Bento 3 Bento 3 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 FileMaker,

More information

08+11Extra

08+11Extra A - - #8 bit, Byte, Yutaka Yasuda bit : データの最小単位 1bit = 最小状態の単位 = 二進一桁 コンピュータ内部は電気配線 配線に電気が通っている いな い だけで処理 状態は2種 二値 二進 動作にうまく対応 二進一桁を配線一本で実現 0と1 二進数 で動作 の実体 1bit = 二進一桁 = 配線一本 Byte : Byte bit 8 1 Byte

More information

TLAdjust321_UG_日本語_090722

TLAdjust321_UG_日本語_090722 Topaz Labs, LLC A Video and Image Enhancement Company TOPAZ Adjust V3.0 2009 4 http://www.nixus.jp Copyright 2009 Topaz Labs, LLC. All rights reserved. http://www.topazlabs.com ...3...4... 5... 5... 5

More information

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( ) L09 IP (2017) 1 / 28

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( )   L09 IP (2017) 1 / 28 L09(2017-11-21 Tue) : Time-stamp: 2017-11-21 Tue 14:52 JST hig TCP/IP. IP,,,. http://hig3.net L09 (2017) 1 / 28 9, IP, - L09 (2017) 2 / 28 C (ex. ) 1 TCP/IP 2 3 ( ) ( L09 (2017) 3 / 28 50+5, ( )50+5. (

More information

健康保険組合のあゆみ_top

健康保険組合のあゆみ_top (1912) (1951) 2,00024,000 (1954) (1958) (1962) (1965) (1968) (1969) (1971) (1972) (1973) (1974) (1976) (1978) (1980) (1982) (1983) (1984) (1985) (1987) (1988) (1989) (1990) (1991) (1992) (1994) (1995)

More information

untitled

untitled Web JoinMeeting JoinMeeting ASP 20 () Powered by All Rights Reserved, Copyright 2004 Web JoinMeeting PC Web JoinMeeting JM (MMC Web ) Web (Leave Message ) ID 2 All Rights Reserved, Copyright 2003 ...2...3

More information

Adobe Acrobat DC 製品比較表

Adobe Acrobat DC 製品比較表 X X Adobe, the Adobe logo, Acrobat, the Adobe PDF logo, Creative Cloud, and Reader are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries.

More information

MOTIF XF 取扱説明書

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

More information

TextSystemOverview

TextSystemOverview テキストシステム アーキテクチャー ソフトウエア設計者にとって アプリケーションにおけるテキストの取り扱いという問題は 最も頭を悩ま せる要素です 最も 基本的な テキストシステムでも 入力 レイアウト 表示 編 集 コピー ペースト これらはサポートされていて当たり前です そのうえ最近は 単なるエ ディタ ワードプロセッサではなく でさえ複数のフォントやパラグラフ スタイル イメージの貼付に スペル

More information

L516394B-J_APD_Catalog_2012

L516394B-J_APD_Catalog_2012 Apple Professional Development 2012 11 Apple Professional Development2012 11 1 Apple Apple Apple Apple Professional Development Apple Apple Apple Apple Apple Professional Development2012 11 2 20 Common

More information

Copyright 2017 JAPAN POST BANK CO., LTD. All Rights Reserved. 1

Copyright 2017 JAPAN POST BANK CO., LTD. All Rights Reserved. 1 Copyright 2017 JAPAN POST BANK CO., LTD. All Rights Reserved. 1 Copyright 2017 JAPAN POST BANK CO., LTD. All Rights Reserved. 2 60 50 40 30 20 10 0 20173 20183 Copyright 2017 JAPAN POST BANK CO., LTD.

More information

2

2 DX Simulator Copyright 2001-2002 Yamaha Corporation. All rights reserved. Version 1.2, 2002 YAMAHA CORPORATION 2 z x z x c 3 z Windows Macintosh Windows Macintosh x 4 z Windows Macintosh Windows Macintosh

More information

% 11.1% +6.% 4, % %+12.2% 54,16 6.6% EV7, ,183 Copyright 216 JAPAN POST GROUP. All Rights Reserved. 1

% 11.1% +6.% 4, % %+12.2% 54,16 6.6% EV7, ,183 Copyright 216 JAPAN POST GROUP. All Rights Reserved. 1 216 3 216 5 13 848+4.4% 11.1% +6.% 4,853 495 +2.6% 1 +11.6%+12.2% 54,16 6.6% EV7,829 2 7,183 Copyright 216 JAPAN POST GROUP. All Rights Reserved. 1 15.3 16.3 16.3 11,692 96,57 5.5 % 4,926 4,115 16.5 %

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

untitled

untitled Dell PowerEdgeDell EMC CX500BakBone NetVault VMware ESX Server 2.5 & NetVault... 2... 2... 3 OS... 4 VMWARE ESX SERVER 2.5 SERVICE CONSOLE... 5 VMWARE ESX SERVER 2.5 NETVAULT... 6... 7 OS... 7 OS... 8

More information

AuthorManual_JSTP.ppt

AuthorManual_JSTP.ppt ScholarOne Manuscripts Log In Create Account Main Menu Author Dashboard Step 1: Type, Title & Abstract Step 2: Attributes Step 3: Authors & Institutions Step 4: Reviewers Step 5: Details & Comments Step

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

MOMW_I_,II 利用ガイド.PDF

MOMW_I_,II 利用ガイド.PDF MOMW (I), II 1 The Making of the Modern World I. The Making of the Modern World... 2 II.... 3 II-1... 3 II-2 Basic Search... 4 II-3... 5 II-4 Advanced Search... 9 II-5... 13 III.... 14 III-1... 14 III-2...

More information

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P P P P P P P P P

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P P P P P P P P P 201628 3 2016 5 13 P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 2016 P.11 P.14 P.15 P.16 P.16 P.17 P.19 P.20 P.22 P.23 10 P.24 11 P.26 12 P.27 13 P.28 14 P.28 15 P.29 16 P.30 17 P.31 P.33 P.34 Copyright 2016 JAPAN

More information

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P P P P P.25 P.27 P.28 Copyright 2016 JAPAN POST BA

P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P P P P P.25 P.27 P.28 Copyright 2016 JAPAN POST BA 201729 3 1 2016 8 12 P. 2 P. 4 P. 5 P. 6 P. 7 P. 9 P.10 P.12 P.13 P.14 P.14 P.15 P.17 P.18 P.20 P.21 10 P.22 11 P.23 12 P.24 13 P.25 P.27 P.28 Copyright 2016 JAPAN POST BANK CO., LTD. All Rights Reserved.

More information

ÇPÇRèÕÉIÉuÉWÉFÉNÉgéwå¸ã@î\.pdf

ÇPÇRèÕÉIÉuÉWÉFÉNÉgéwå¸ã@î\.pdf COPYRIGHT 200 COBOL CLASS-ID.. FACTORY. METHOD-ID.. OBJECT. METHOD-ID.. COPYRIGHT 200 COBOL 2 COPYRIGHT 200 COBOL 3 COPYRIGHT 200 COBOL 4 COPYRIGHT 200 COBOL 5 COPYRIGHT 200 COBOL 6 COPYRIGHT 200 COBOL

More information

LAPLINK ヘルプデスク 導入ガイド

LAPLINK ヘルプデスク 導入ガイド 110-8654 1-3-5 LAPLINK TEL URL 03-3839-6039 http://www.intercom.co.jp/support/laplink_helpdesk/ 9: 00 12:00 13:00 17:00 LAPLINK URL TEL URL 03-3839-6307 http://www.intercom.co.jp/laplink_helpdesk/contact.html

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

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