Microsoft Word - SUGIJ2008_舟尾暢男.doc

Size: px
Start display at page:

Download "Microsoft Word - SUGIJ2008_舟尾暢男.doc"

Transcription

1 1. 1

2

3 3

4 4

5 5

6 6

7 4. 7

8 3 8

9 9

10 4 5 10

11 5. 11

12 <html> <title> 例 数 設 計 くん メニュー</title> <head> <script type="text/javascript"> resizeto(450,300); var MyArray1 = new Array("2 標 本 t 検 定 "); var MyArray2 = new Array("2 標 本 t 検 定 "); var MyArray3 = new Array("2 標 本 t 検 定 "); var MyValue1 = new Array("01_ttest_01"); var MyValue2 = new Array("01_ttest_02"); var MyValue3 = new Array("01_ttest_03"); var ListNumber = 1; function $(_id) { return document.getelementbyid(_id) ; function Switch (ntype) { for (var i=0 ; i < ListNumber ; i++) { if (ntype == 1) { $("MySelect").options[i].text = MyArray1[i] ; $("MySelect").options[i].value = MyValue1[i] ; else if (ntype == 2) { $("MySelect").options[i].text = MyArray2[i] ; $("MySelect").options[i].value = MyValue2[i] ; else if (ntype == 3) { $("MySelect").options[i].text = MyArray3[i] ; $("MySelect").options[i].value = MyValue3[i] ; function Go() { MyScript = new ActiveXObject("Scripting.FileSystemObject"); MyPath = MyScript.GetFolder(".").Path ; MyText = MyScript.CreateTextFile("./files/_EXE.sas", true); MyText.WriteLine('options source source2 symbolgen ;') ; MyText.WriteLine("%let _path1 = " + MyPath + " ;") ; MyText.WriteLine("%let _path2 = %sysfunc(tranwrd(&_path1,\\,/)) ;") ; MyText.WriteLine('%inc "./files/parameter.sas" ;') ; MyText.WriteLine('%inc "./files/' + $("MySelect").value + '.sas" ;') ; MyText.Close(); MyShell = new ActiveXObject("WScript.Shell"); MyShell.Run("./files/" + $("MySelect").value + ".hta", 1, false); </script> </head> <body background="files/background.jpg" onload="switch(1)"> <p align="center"><img src="files//banner.gif" width="199" border="0"></p> <p align="center"> 検 定 手 法 を 選 択 してから<br> OK ボタンをクリック して 下 さい</p> <hr> <table align="center" border="0" width="95%"> <table align="center" border="0" width="95%"> <td width="33%" align="center"><input type="radio" name="myradio" id="myradio" onclick="switch(1)" checked> 例 数 の 算 出 <td width="34%" align="center"><input type="radio" name="myradio" id="myradio" onclick="switch(2)"> 検 出 力 の 算 出 <td width="33%" align="center"><input type="radio" name="myradio" id="myradio" onclick="switch(3)"> 検 出 力 カーブ <td colspan="3"> <td width="60%" align="center"colspan="2"> <select size="1" name="myselect" id="myselect"> <option>2 標 本 t 検 定 </option> </select> <td width="40%" align="center"><input type="button" name="btngo" value=" O K " onclick="go()"> </table> </body> </html> 12

13 <html> <title>2 標 本 t 検 定 例 数 設 計 </title> <head> <script type="text/javascript"> resizeto(300,350); function MyGetParameter() { var MyVariable01, MyVariable02, MyVariable03, MyVariable04, MyScript, MyText, MyShell ; MyVariable01 = document.myform.mytextbox01 ; MyVariable02 = document.myform.mytextbox02 ; MyVariable03 = document.myform.mytextbox03 ; MyVariable04 = document.myform.mytextbox04 ; if (MyVariable01!= "" & MyVariable02!= "") { MyScript = new ActiveXObject("Scripting.FileSystemObject"); MyText = MyScript.CreateTextFile("./files/parameter.sas", true); MyText.WriteLine("%let _meandiff = " + MyVariable01.value + " ;") ; MyText.WriteLine("%let _stddev = " + MyVariable02.value + " ;") ; MyText.WriteLine("%let _alpha = " + MyVariable03.value + " ;") ; MyText.WriteLine("%let _power = " + MyVariable04.value + " ;") ; MyText.Close(); window.alert("2 標 本 t 検 定 の 例 数 設 計 を 実 行 します") ; MyShell = new ActiveXObject("WScript.Shell"); MyShell.Exec('"C:/Program Files/SAS/SAS 9.1/sas.exe" -sysin "./files/_exe.sas" -log "./files/_exe.log" -nosplash -icon'); </script> </head> <body background="background2.jpg"> <p align="center"><font color="blue" size="5"> <b>2 標 本 t 検 定 </b></font></p> <p align="center"> 各 パラメータを 設 定 してから<br> OK ボタンをクリックして 下 さい</p> <hr> <html> <title>2 標 本 t 検 定 検 出 力 の 計 算 </title> <head> <script type="text/javascript"> resizeto(300,400); function MyGetParameter() { var MyVariable01, MyVariable02, MyVariable03, MyVariable04, MyVariable05, MyVariable06, MyScript, MyText, MyShell ; MyVariable01 = document.myform.mytextbox01 ; MyVariable02 = document.myform.mytextbox02 ; MyVariable03 = document.myform.mytextbox03 ; MyVariable04 = document.myform.mytextbox04 ; MyVariable05 = document.myform.mytextbox05 ; MyVariable06 = document.myform.mytextbox06 ; if (MyVariable01!= "" & MyVariable02!= "") { MyScript = new ActiveXObject("Scripting.FileSystemObject"); MyText = MyScript.CreateTextFile("./files/parameter.sas", true); MyText.WriteLine("%let _meandiff = " + MyVariable01.value + " ;") ; MyText.WriteLine("%let _stddev = " + MyVariable02.value + " ;") ; MyText.WriteLine("%let _alpha = " + MyVariable03.value + " ;") ; MyText.WriteLine("%let _Power = " + MyVariable04.value + " ;") ; MyText.WriteLine("%let _Nmin = " + MyVariable05.value*2 + " ;") ; MyText.WriteLine("%let _Nmax = " + MyVariable06.value*2 + " ;") ; MyText.Close(); window.alert("2 標 本 t 検 定 の 検 出 力 を 計 算 します") ; MyShell = new ActiveXObject("WScript.Shell"); MyShell.Exec('"C:/Program Files/SAS/SAS 9.1/sas.exe" -sysin "./files/_exe.sas" -log "./files/_exe.log" -nosplash -icon'); </script> </head> <body background="background2.jpg"> <p align="center"><font color="blue" size="5"> <b>2 標 本 t 検 定 </b></font></p> <p align="center"> 各 パラメータを 設 定 してから<br> OK ボタンを クリックして 下 さい</p> <hr> <form name="myform"> <table border=0> <form name="myform"> <table border=0> <td width=0 align="right"> <td width=0>= <input name="mytextbox01" type="text" value="1.0" <td width=0 align="right">σ<td width=0>= <input name="mytextbox02" type="text" value="1.0" <td width=0 align="right">α<td width=0>= <input name="mytextbox03" type="text" value="0.05" <td width=0 align="right">power<td width=0>= <input name="mytextbox04" type="text" value="0.9" </table> <p align="right"> <input name="mygetbutton" type="button" value=" O K " onclick="mygetparameter()"> </p> </form> </body> </html> <td width=0 align="right"> <td width=0>= <input name="mytextbox01" type="text" value="1.0" <td width=0 align="right">σ<td width=0>= <input name="mytextbox02" type="text" value="1.0" <td width=0 align="right">α<td width=0>= <input name="mytextbox03" type="text" value="0.05" <td width=0 align="right"> 目 標 Power <td width=0>= <input name="mytextbox04" type="text" value="0.8" <td width=0 align="right">n<td width=0>= <input name="mytextbox05" type="text" value="10" style="width:40%;">~ <input name="mytextbox06" type="text" value="50" style="width:40%;"> </table> <p align="right"> <input name="mygetbutton" type="button" value=" O K " onclick="mygetparameter()"> </p> </form> </body> </html> 13

14 <html> <title>2 標 本 t 検 定 検 出 力 カーブ</title> <head> <script type="text/javascript"> resizeto(300,400); <!-- function MyGetParameter() { var MyVariable01, MyVariable02, MyVariable03, MyVariable04, MyVariable05, MyVariable06, MyScript, MyText, MyShell ; MyVariable01 = document.myform.mytextbox01 ; MyVariable02 = document.myform.mytextbox02 ; MyVariable03 = document.myform.mytextbox03 ; MyVariable04 = document.myform.mytextbox04 ; MyVariable05 = document.myform.mytextbox05 ; MyVariable06 = document.myform.mytextbox06 ; if (MyVariable01!= "" & MyVariable02!= "") { MyScript = new ActiveXObject("Scripting.FileSystemObject"); MyText = MyScript.CreateTextFile("./files/parameter.sas", true); MyText.WriteLine("%let _meandiff = " + MyVariable01.value + " ;") ; MyText.WriteLine("%let _stddev = " + MyVariable02.value + " ;") ; MyText.WriteLine("%let _alpha = " + MyVariable03.value + " ;") ; MyText.WriteLine("%let _Power = " + MyVariable04.value + " ;") ; MyText.WriteLine("%let _Nmin = " + MyVariable05.value*2 + " ;") ; MyText.WriteLine("%let _Nmax = " + MyVariable06.value*2 + " ;") ; MyText.Close(); window.alert("2 標 本 t 検 定 の 検 出 力 カーブを 描 きます") ; MyShell = new ActiveXObject("WScript.Shell"); MyShell.Exec('"C:/Program Files/SAS/SAS 9.1/sas.exe" -sysin "./files/_exe.sas" -log "./files/_exe.log" -nosplash -icon'); --> </script> </head> <body background="background2.jpg"> <p align="center"><font color="blue" size="5"> <b>2 標 本 t 検 定 </b></font></p> <p align="center"> 各 パラメータを 設 定 してから<br> OK ボタンを クリックして 下 さい</p> <hr> <form name="myform"> <table border=0> <td width=0 align="right"> <td width=0>= <input name="mytextbox01" type="text" value="1.0" <td width=0 align="right">σ<td width=0>= <input name="mytextbox02" type="text" value="1.0" <td width=0 align="right">α <td width=0>= <input name="mytextbox03" type="text" value="0.05" <td width=0 align="right"> 目 標 Power<td width=0>= <input name="mytextbox04" type="text" value="0.8" <td width=0 align="right">n<td width=0>= <input name="mytextbox05" type="text" value="10" style="width:40%;">~ <input name="mytextbox06" type="text" value="50" style="width:40%;"> </table> <p align="right"> <input name="mygetbutton" type="button" value=" O K " onclick="mygetparameter()"> </p> </form> </body> </html> 14

15 %let _RPGM = &_path2/files/mypower.r ; %let _REMF = &_path2/files/mypower.bmp ; %let _RCSV = &_path2/files/mypower.csv ; ods output Output=Tmp ; ods listing close ; proc power ; twosamplemeans test = diff meandiff = &_meandiff stddev = &_stddev alpha = &_alpha power =. ntotal = &_Nmin to &_Nmax by 2 ; run ; ods output close ; ods listing ; filename RCSV "&_RCSV" ; data MyPower ; set Tmp ; file RCSV ; Ntotal = Ntotal / 2 ; put Ntotal "," Power ; run ; data _NULL_ ; set MyPower end=_eof ; retain _PFLG 0 ; if ( (Ntotal = &_Nmin/2 and Power > &_Power) or (Ntotal = &_Nmax/2 and Power < &_Power) ) then do ; _PFLG = 2 ; end ; else if Power > &_Power and _PFLG = 0 then do ; _PFLG = 1 ; call symput("_power",compress(put(power,best.))) ; call symput("_ntot",compress(put(ntotal,best.))) ; end ; if _EOF then call symput("_flg",compress(put(_pflg,best.))) ; run ; options noxwait xsync ; filename RPGM "&_RPGM" ; %macro drawgraph() ; data _null_ ; file RPGM ; put "x <- read.csv(""&_rcsv"", head=f)" ; put "bmp(filename=""&_remf"")" ; put 'plot(v2~ V1, data=x, type="b", xlab="n per group", ylab="power")' ; %if &_FLG = 1 %then %do ; put "abline(v=&_ntot, lty=2, col=2)" ; put "text(&_ntot, &_POWER, labels=""n=&_ntot"", pos=2, cex=1.5, col=2)" ; %end ; put 'dev.off()' ; run ; x "'C:\Program Files\R\R-2.6.2pat\bin\R.exe' --no-restore --no-save < ""&_RPGM""" ; %mend ; %drawgraph() ; x "&_REMF" ; 15

■新聞記事

■新聞記事 情 報 処 理 C (P.1) 情 報 処 理 C (2016 年 度 ) ホームページ 作 成 入 門 テキストエディタ(メモ 帳 TeraPad など)でHTMLファイルを 作 成 する HTML(Hyper Text Markup Language ) ホームページを 記 述 するための 言 語 のこと テキストエディタの 起 動 (TeraPad の 場 合 ) [スタート]-[プログラム]-[テキストエディタ]-[TeraPad]

More information

コンピュータサイエンス 4. ウェブプログラミング

コンピュータサイエンス 4. ウェブプログラミング 4. Chris Plaintail 2014 1 / 43 1 HTML CSS 2 JavaScript DOM jquery 3 4 PHP SQL PHP SQL 2 / 43 HTML HTML CSS HTML Ajax (Asynchronous JavaScript + XML) PHP SQL 3 / 43 HTML, CSS http, https CSS HTML CSS.html

More information

untitled

untitled Excel Internet Explorer Excel Internet Explorer Excel Internet Explorer 1 Excel Excel 1.1 Excel Excel 2 1 1.1.1 Ctrl-C ( Sheet2) 2 OK 3 1.1.2 ( Sheet3) A1 =Sheet1!A1 Sheet1 A1 Sheet1 A1 Sheet3 A1 4 A1

More information

JavaScriptプログラミング入門

JavaScriptプログラミング入門 JavaScript 2015 8 15 1 2 1.1 JavaScript.................................. 2 1.2..................................... 3 1.3 if................................... 4 2 6 2.1.....................

More information

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis >

(1) <html>,,,,, <> ( ) (/ ) (2) <!DOCTYPE html> HTML5 (3) <html> HTML (4) <html lang= ja > html (ja) (5) JavaScript CSS (6) <meta charset= shift jis > HTML HTML HyperText Markup Language (Markup Language) (< > ) 1 sample0.html ( ) html sample0.html // JavaScript

More information

コンピュータサイエンス 1. ウェブの基本

コンピュータサイエンス 1. ウェブの基本 1. Chris Plaintail May 18, 2016 1 / 27 1 2 HTML HTML 3 CSS style 2 / 27 HTML HTML HTML HTML CSS HTML CSS 3 / 27 4 / 27 HTML HTML, CSS HTML, CSS http, https file CSS HTML CSS.html PC file:// PC.html 5 /

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション HTMLガイダンス 1 HTMLを 用 いたUI 設 定 2 色 々な 見 え 方 で 画 面 に 表 示 されるWebページ 全 て 文 字 /キャラクタで 表 現 されたデータの 集 まり HTML(Hyper Text Markup Language) パソコン 等 のインターネット 端 末 のブラウザソフトで 文 書 情 報 を 表 示 するときに 用 いられるプログラム 言 語 の 一 種

More information

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb

●70974_100_AC009160_KAPヘ<3099>ーシス自動車約款(11.10).indb " # $ % & ' ( ) * +, -. / 0 1 2 3 4 5 6 7 8 9 : ; < = >? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y " # $ % & ' ( ) * + , -. / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B

More information

Microsoft Word - class_specification_guide_v60.doc

Microsoft Word - class_specification_guide_v60.doc IM-FormatCreator クラス 指 定 手 順 書 Ver 6.0 IM-FormatCreator i 1 はじめに 1 1.1 目 的 1 2 プログラムの 作 成 2 2.1 ファンクション コンテナ(.JS)の 作 成 2 2.2 プレゼンテーションページ(.HTML)の 作 成 3 3 クラス 指 定 項 目 の 設 定 5 3.1 クラス 指 定 設 定 画 面 5 3.2 クラスパス

More information

-34-

-34- -33- -34- ! -35- ! -36- ! -37- -38- -39- -40- -41- -42- -43- -44- -45- -46- -47- -48- -49- -50- ! -51- -52- !! -53- -54- ! -55- -56- -57- !!!!! "" "!!! " "" " -58- -59- !!! -60- -61- -62- -63- ! -64- !

More information

Autumn 2007 1 5 8 12 14 14 15 %!SASROOT/sassetup SAS Installation Setup Welcome to SAS Setup, the program used to install and maintain your SAS software. SAS Setup guides you through a series of menus

More information

(Microsoft Word - \203v\203\215\203O\203\211\203~\203\223\203O1new.doc)

(Microsoft Word - \203v\203\215\203O\203\211\203~\203\223\203O1new.doc) 1.プログラム 言 語 1-1 プログラム 言 語 の 種 類 プログラム 言 語 は その 言 語 が 目 的 とする 処 理 別 に 基 本 的 な 記 述 概 念 が 存 在 する プログ ラム 言 語 の 種 類 ごとに 記 述 的 特 徴 や 生 産 性 が 異 なる Program 言 語 低 水 準 言 語 マシン 語 アセンブラ 高 水 準 言 語 手 続 き 型 言 語 FORTRAN

More information

untitled

untitled 750 841 Webserver 1.0.0 ii General Copyright 2003 by WAGO Kontakttechnik GmbH All rights reserved. 136-0071 1-5-7 ND TEL 03-5627-2059 FAX 03-5627-2055 WAGO Kontakttechnik GmbH Hansastraße 27 D-32423 Minden

More information

Autumn 2005 1 9 13 14 16 16 DATA _null_; SET sashelp.class END=eof; FILE 'C: MyFiles class.txt'; /* */ PUT name sex age; IF eof THEN DO; FILE LOG; /* */ PUT '*** ' _n_ ' ***'; END; DATA _null_;

More information

1" 3 3 4 5 9 15 16 17 18 20 22 22

1 3 3 4 5 9 15 16 17 18 20 22 22 - - 2014 8 TEL 03-4455-7453 FAX 03-6740-1754 Mail tamago-con@temona.co.jp 1" 3 3 4 5 9 15 16 17 18 20 22 22 2" 2 23 24 25 27 28 29 30 31 32 33 34 35 42 47 STEP1 3" 4" STEP2 URL URL 5" STEP3 2 STEP4 jpg

More information

PROC OPTIONS; NOTE: XXXXXXXXSASV8.2 SASV9.1 SASV9.1 LIBNAME source ""; LIBNAME target V9 ""; PROC MIGRATE IN=source OUT=target ; RUN ; LIBNAME v8lib V8 "d: saslib v8lib"; LIBNAME v9lib V9 "d: saslib

More information

var NUM1 = document.getelementbyid('param1').value var NUM2 = document.getelementbyid('param2').value document.getelementbyid("result").innerhtml = ev

var NUM1 = document.getelementbyid('param1').value var NUM2 = document.getelementbyid('param2').value document.getelementbyid(result).innerhtml = ev ########################### ###2つの 数 の 和 を 求 める ### ########################### 和 を 求 める function Add() var NUM1 = document.getelementbyid('param1').value; var NUM2 = document.getelementbyid('param2').value;

More information

2. HTML 2 3. 1 1 100 6 4. csh AWK 4. 4. AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html

2. HTML 2 3. 1 1 100 6 4. csh AWK 4. 4. AWK 1., 2., 3. 2 HTML HTML HyperText Markup Language WWW WWW (.html 1. 1 AWK HTML 18 8 14 1 HTML Yahoo! 3 Yahoo! (http://www.yahoo.co.jp/) 1 Yahoo! : http://headlines.yahoo.co.jp/hl ( ) ( ) Netscape 3.04 1. 2 Netscape 3.04 2. 1 Yahoo! 2. HTML 2 3. 1 1 100 6 4. csh AWK

More information

html ソース <HTML> <HEAD> <META charset="cp932" /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <SCRIP

html ソース <HTML> <HEAD> <META charset=cp932 /> <TITLE>MPC 通 信 サンプル</TITLE> <SCRIPT src=http://code.jquery.com/jquery-1.11.1.min.js></script> <SCRIP テーマ Application Note Ref No: an2k-050 Last Modify 160428 Raspberry Pi でネットワークにアクセスする 使 用 機 器 MPC-2000 シリーズ, USB-RS,Raspberry Pi2 イメージ 名 刺 サイズのコンピュータ Raspberry Pi に Web サーバーを 乗 せて MPC の 状 態 を 取 得 変 更 します

More information

方程式を解いてみよう! C++ から PHP + JavaScriptへ

方程式を解いてみよう! C++ から PHP + JavaScriptへ 方 程 式 を 解 いてみよう! C++ から PHP + HTML + JavaScriptへ 静 岡 理 工 科 大 学 総 合 情 報 学 部 コンピュータシステム 学 科 幸 谷 智 紀 (こうや とものり) http://na-inet.jp/ 今 日 のメニュー 1. コンピュータ 環 境 と 本 日 のゴールの 確 認 2. PHPプログラムを 実 行 してみる 3. HTMLで 自

More information

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2

1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 XHTML DOM JavaScript 2 2008 7 1 1 1 1.1............................. 1 1.2....................... 1 2 HTML 2 2.1 web HTML......................... 2 2.1.1 HTML.................... 2 2.1.2 HTML.........................

More information

スライド タイトルなし

スライド タイトルなし 1 2 3 .htaccess users.htaccess.htpasswd.htaccess.htpasswd BBS.cgi adminmodemsgheadmsg 4 (0) 5

More information

So-Cool CART マニュアル

So-Cool CART マニュアル So-Cool CART Ver..0 補 足 資 料 : 埋 め 込 み 機 能 タグ 一 覧 COPYRIGHT 008 Japan Area Code TV Co.,Ltd. ALL RIGHTS RESERVED. 埋 め 込 み 機 能 タグの 設 置 準 備 埋 め 込 み 機 能 タグ 商 品 ページに [カートに 入 れる]ボタン や 商 品 検 索 フォーム などの 機 能 を 埋

More information

untitled

untitled Summer 2008 1 7 12 14 16 16 16 SAS Academic News B-8 4 B-9 6 B-11 7 B-15 10 DATA _NULL_; dlm=","; char1="" char2="" char3="15" char4="a",,15,a results=catx(dlm, OF char1-char4); PUT results; DATA

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

Microsoft PowerPoint - 2016_2b-DOM.pptx

Microsoft PowerPoint - 2016_2b-DOM.pptx < 練 習 2-11> DOMの 空 白 ノード 2_nodeVisit の 実 行 結 果 ( 前 ページ)から,HTML をルート 要 素 とするDOMの 木 構 造 を 示 しなさい ただし, 空 白 ノードは 空 白,その 他 のテキストノードは テキスト とすること HTML DOMによる 文 書 データの 参 照 と 変 更 DOMツリー 内 のノード 参 照 相 対 位 置 によるノード

More information

68 <td valign="top" class="c8"> 69 <p class="c13"><a name="マーク0"><span class="c9">⓪</span></a></p> 70 </td> 71 </tr> 72 <tr> 73 <td valign="top" class

68 <td valign=top class=c8> 69 <p class=c13><a name=マーク0><span class=c9>⓪</span></a></p> 70 </td> 71 </tr> 72 <tr> 73 <td valign=top class ページ 内 のリンクでページ 内 に 移 動 の html のページの 追 加 方 法 三 宅 節 雄 Html 文 書 を TeraPad で 開 きます 1 2

More information

インターネットマガジン1999年12月号―INTERNET magazine No.59

インターネットマガジン1999年12月号―INTERNET magazine No.59 +CD-ROM A N S W E R TD { color: white; borer-with: 8px; paing: ; :

More information

DATA Sample1 /**/ INPUT Price /* */ DATALINES

DATA Sample1 /**/ INPUT Price /* */ DATALINES 3180, 3599, 3280, 2980, 3500, 3099, 3200, 2980, 3380, 3780, 3199, 2979, 3680, 2780, 2950, 3180, 3200, 3100, 3780, 3200 DATA Sample1 /**/ INPUT Price @@ /* @@1 */ DATALINES 3180 3599 3280 2980 3500 3099

More information

Microsoft PowerPoint - A07回目②.pptx

Microsoft PowerPoint - A07回目②.pptx 1 コンピュータリテラシーII ( 樋 口 担 当 ) 7 回 目 2 11/14 本 日 の 予 定 2 Webページの 作 成 ( 続 き) I. JavaScript( 画 像 関 係 ) II. 課 題 3 I.JavaScript 1.JavaScriptを 使 用 するためのお 約 束 4 の 間 に

More information

html_text

html_text HTML の 基 礎 2015.12.15 1. HTML ファイルの 構 成 1.1. HTML とは? Web ブラウザでホームページを 表 示 するためには,HTML(Hyper Text Markup Language)と 呼 ぶ 言 語 で 記 述 す る 必 要 が あ り ま す.HTML 形 式 のファイルは < と > で 囲 んだ 予 約 語 (タグ)を 含 むテキストファイルで,Web

More information

eil2009062930_4.ppt

eil2009062930_4.ppt URL (Universal Resource Locator) WWW (World Wide Web) URL http://www.cs.kumamoto-u.ac.jp/ Web ftp://ftp.cc.kumamoto-u.ac.jp/ FTP (File Transfer Protocol) FTP World Wide Web (WWW) Web HTTP (HyperText Transfer

More information

https://submitmail.jp/owners/login .... .. 500

More information

文京女子大学外国語学部

文京女子大学外国語学部 7.フォーム 7-1 フォームとは 皆 さんの 中 には ホームページを 閲 覧 していて アンケートに 答 えたり 申 込 書 のような 書 式 に 入 力 した 経 験 がある 人 もいるでしょう すなわち そのような 書 類 を 作 成 し 例 えば 電 子 メールの 形 式 であらかじめ 決 めておいたメールアドレスに 送 信 させる このような 機 能 を 持 つブロックがフ ォームタグで

More information

technews2012autumn

technews2012autumn For Higher Customer Satisfaction, We Bridge the SAS System Between Customer s World. SPRING 2013 L Ext SAS 9.3 for Windows 02 SPRING 2013 1 SAS terms SPRING 2013 03 2 User account net localgroup Administrators

More information

Microsoft PowerPoint - 051105-2.ppt

Microsoft PowerPoint - 051105-2.ppt 1.Webアプリケーション 1-1 Web 1989Tim Berners-Lee 1993 1999iWindows98 2005: http://www.w3.org/people/berners-lee/ 1-2 ( ) 汎 用 機 オフコン データベース アプリケーション 言 語 (COBOLなど) 文 字 端 末 タイプライター 端 末 http://research.microsoft.com/~gbell/digital/timeline/dechistory.htm

More information

~モバイルを知る~ 日常生活とモバイルコンピューティング

~モバイルを知る~ 日常生活とモバイルコンピューティング Webプログラミングの 基 礎 PHPの 基 礎 (8) (2011/07/06) 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト:riho-m-rg11@cuc.ac.jp: 資 料 ページ: http://www.cuc.ac.jp/~riho-m/rg11/ 前 回 の 課 題 POSTでデータが 送 信 されているかを 確 認 送 信 されていれば

More information

1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python..................

1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python.................. JavaScript 0648016 1 1 1........................ 1 2........................ 1 3 JavaScript..................... 2 4................... 2 2 3 1 Python.................. 3 2......................... 4 3..........................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション "# "# $%&' "#$% $# & $# $% % ' ()(*"#$% +,(- ()(*"#$%.' ()(* $/.0##'' %0$&0% 1*2#/0/%'&0343$56 789#/0/'%&04../ "3"0##"$ "0%0$" "7 1*2#.30///04%.$ 789#.30///0#$'4 http://www.ibie2016.com/exhibitorlist/

More information

サーバサイドスクリプトPHPを実感しよう

サーバサイドスクリプトPHPを実感しよう 第 3 講 サーバサイドスクリプト PHP を 実 感 しよう! クライアントサイドでは HTML に 埋 め 込 んだ(あるいは 別 ファイルから HTML に 読 み 込 まれた)JavaScript によって さまざまな 処 理 や 動 的 ページの 生 成 を 行 えることは すで に 第 3 講 までで 学 習 しました しかし HTML と JavaScript の 組 合 せではどうしても

More information

3 1 5 1.1....................................... 6 1.2.......................................... 6 1.3..................................... 7 1.4.................................... 8 1.4.1.............................

More information

Microsoft Word - HTML.docx

Microsoft Word - HTML.docx ホームページを 見 る 環 境 (Web ブラウザの 種 類 やバージョン, 画 面 サイズなど)は 多 種 多 様 であり, 自 分 が 見 ている 状 態 と 必 ずしも 同 じではないことを 前 提 に 作 成 して ください 1 1. 文 書 のレイアウト, 文 字 の 書 式 原 則 として,タグと 属 性 は 大 文 字, 属 性 の 値 は"で 囲 んだ 小 文 字 で 記 述 します

More information

橡ホームページの作り方

橡ホームページの作り方 1. 1.1. HTML Word HTML(Hyper Text Markup Language) html htm MS-WORD MS-WORD HTML HTML HTML (1.0) 1 1978 7 10 S 3

More information

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17

HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 1 11 13 2 11 27 3 12 11 HTML HTML HTML 4.1 4.2 4.3 4.4 14 15 16 17 WWW(World Wide Web) HTML(HyperText Markup Language) HTML HTML HTML HTML - 1 - .1 HTML (V)(C) HTML - 2 - HTML HTML OS Windows 2.1 HTML

More information

CONTENTS 0 1 2 3 4 5 6 7 8 9 10 0 viii ix x http://www.vector.co.jp/vpack/filearea/win/writing/edit/hm/index.html http://hidemaru.xaxon.co.jp/lib/macro/index.html ftp://ftp.m17n.org/pub/mule/windows/ http://www.yatex.org/

More information

問 題 1 背 景 色 という 文 字 列 の 背 景 をちょっと 青 っぽい 色 (#6699FF)で 表 示 するHMTLを 作 成 せよ <HTML><HEAD><TITLE>test11</TITLE> <BODY BGCOLOR="#FFFFFF"> この 部 分 は<STRONG STY

問 題 1 背 景 色 という 文 字 列 の 背 景 をちょっと 青 っぽい 色 (#6699FF)で 表 示 するHMTLを 作 成 せよ <HTML><HEAD><TITLE>test11</TITLE> <BODY BGCOLOR=#FFFFFF> この 部 分 は<STRONG STY 9.スタイルシートと JavaScript を 組 み 合 わせてみよう スタイルシートとは スタイルシートとは タグのみでは 実 現 不 可 能 なデザインレイアウトやページ 構 造 を 実 現 する 命 令 郡 です 主 に 次 の3つの 書 式 があります (1)インライン タグ 内 部 により 詳 細 なデザインを 組 み 込 む 書 式 です 例 : この 部 分 は

More information

†ı25”Y„o-PDF.ren

†ı25”Y„o-PDF.ren 12,000 10,000 8,000 6,000 4,000 2,000 0 1998 1999 2000 2001 2002 2003 2004 1,200 1,000 800 600 400 200 0 1998 1999 2000 2001 2002 2003 2004 $ "! ''" '' ''$ ''% ''& '''! " ' & % $ "! ''" ' '$ '% '& ''!

More information

76

76 ! # % & % & %& %& " $ 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 % & &! & $ & " & $ & # & ' 91 92 $ % $'%! %(% " %(% # &)% & 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 !$!$ "% "%

More information

HTMLとメタデータ

HTMLとメタデータ HTMLとメタデータ http://www2.mmc.atomi.ac.jp/~artnavi1/lib rarysci/index.htmlを 例 にHTMLを 理 解 する IPアドレス ドメイン 名 http://www2.mmc.atomi.ac.jp httpとはhyper Text Transfer Protocol( 何 でもリンクできるテ キストの 通 信 手 順 : 説 明 JPNIC)

More information

: 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1

: 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1 : 1/15( ): HTML web page (2) 1/18( ): (1) 1/25( ): (2) 1 2 : : 1 1 : 3 : 2 (.ppsx) (A0nxxyyy.ppsx) presen (1 ) ID:A0nxxyyy Name: Title: 3 HTML (HyperText Markup Language) 4 ( ) http://pweb.cc.sophia.ac.jp

More information

祝 1.0 を 2010 年 4 月 にリリース

祝 1.0 を 2010 年 4 月 にリリース - IronRuby の 活 用 - 祝 1.0 を 2010 年 4 月 にリリース hello Active Script Ruby @doc = @window.document おもしろい def click(btn) @doc.all(btn).value = btn + " is

More information

" " " " "!!

    !! ""!!!!! "! "! " " " " " " " "!! !!!!!!!!! ! !!!!! "β!"β"! " " "!! "! "!!! "!! !!! "! "!!!! "! !!!!! !!! " "!! "!!! " " "!!! ! "!! !!!!!!! " " " " "!! α!!!!! ! "! " " !!!!!!! "! ! ""!!!! !!!!!! " "! "!

More information

システム 概 要 PW シリーズは 電 話 着 信 と 同 時 に 画 面 右 下 より Web システムにアクセスを 行 い 画 面 右 下 よりお 客 様 情 報 をポップアップさせます 現 在 使 用 している Web システムが 簡 単 に CTI システムとして 動 作 する 事 が 可

システム 概 要 PW シリーズは 電 話 着 信 と 同 時 に 画 面 右 下 より Web システムにアクセスを 行 い 画 面 右 下 よりお 客 様 情 報 をポップアップさせます 現 在 使 用 している Web システムが 簡 単 に CTI システムとして 動 作 する 事 が 可 PWシリーズ ( 電 話 ポップアップ 編 ) システム 概 要 書 株 式 会 社 ソナーソフトウェア システム 概 要 PW シリーズは 電 話 着 信 と 同 時 に 画 面 右 下 より Web システムにアクセスを 行 い 画 面 右 下 よりお 客 様 情 報 をポップアップさせます 現 在 使 用 している Web システムが 簡 単 に CTI システムとして 動 作 する 事 が

More information

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2.....................

1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... CSS 0348085 1 1 1........................... 1 2.............................. 1 3........................ 2 2 3 1...................... 3 2..................... 3 3........................... 5 3 CSS

More information

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2

HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP 6-1 HTTP Web Web RFC2616 HTTP/1.1 Web Apache Tomcat (Servlet ) XML Xindice Tomcat 6-2 HTTP ( ) ( ) (GET, POST ) (Host ) Tomcat Servlet Examples / Request Headers ( ) (200, 404 ) (Content-Type ) 6-3

More information

すばやく小さくはじめられる HTML5 CSS3 JavaScriptで 青森のコンテンツをつくる 青森大学ソフトウェア情報学部 小久保 温(こくぼ あつし) alert('x=' + x); var styletable = { normal: "default", syncing: "syncing", failed:

More information

Microsoft Word - chap5.doc

Microsoft Word - chap5.doc 第 5 章 フォームと PHP プログラム [1] PHP プログラムのデバッグ プログラムがうまく 動 作 しない 場 合 原 因 を 見 つけて 修 正 するデバッグが 必 要 となる PHP に 限 らず 一 般 に CGI のプロ グラムのデバッグは 結 構 面 倒 になる と いうのは 単 独 のプログラム(つまり CGI ではなくて 普 通 の Java や C のプログラ ムと 同 じようにして)として

More information

to-r

to-r to-r We re targeting a 1.0 release within the next few weeks. 1.0 IE6 jquery Mobile Sample

More information

Microsoft PowerPoint - InfPro_I9.pptx

Microsoft PowerPoint - InfPro_I9.pptx 今 日 の 学 習 内 容 エディタ(emacs)を 使 った 基 本 的 なHTML の 書 き 方 Webページの 公 開 HTMLの 基 礎 知 識 HTML(Hyper Text Markup Language)は Webページを 作 るための 必 要 な 記 述 言 語 HTMLにおける 指 定 の 内 容 は: 1. 文 章 (テキスト)に 対 する 役 割 2. 文 章 やイメージなどのページ

More information

130 11 A B C A B C Ctrl (S) 5 A B C 11.2: 11.1.2 2 11.2 (F) (A) ( OK ) 3 (E) ( ) (E) 11.1.3 3

130 11 A B C A B C Ctrl (S) 5 A B C 11.2: 11.1.2 2 11.2 (F) (A) ( OK ) 3 (E) ( ) (E) 11.1.3 3 129 11 Web IT ( 11.1) 1990 2004 2006 JIS 1 Windows 2 Web Web 11.1: 11.1 11.1.1 1 Ctrl ( ) 11.2 (U) (A) ( OK ) (S) 1 (JIS X 8341-2) (JIS X 8341-3) FAX (JIS X 8341-4) 8341 JIS JIS X8341 http://www.jisc.go.jp/

More information

Microsoft Word - 1-html.doc

Microsoft Word - 1-html.doc Web ページ 作 成 の 基 礎 の 基 礎 内 容 : 1. HTML の 仕 組 み 2. HTMLの 文 法 2007-11-16 テキスト 原 案 作 成 原 田 隆 史 ( 慶 應 義 塾 大 学 ) 協 力 : 石 田 栄 美 ( 駿 河 台 大 学 ), 新 居 雅 行 (Apple Japan), 中 島 玲 子 1.Web ページの 仕 組 みと 作 成 1. Web ページを

More information

Dim obwsmgr As New SASWorkspaceManager. WorkspaceManager Dim errstring As String Set obws = obwsmgr.workspaces.createworkspacebyserver( _ "My workspace", VisibilityProcess, Nothing, _ "", "", errstring)

More information

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4

y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f() + f() + f(3) + f(4) () *4 Simpson H4 BioS. Simpson 3 3 0 x. β α (β α)3 (x α)(x β)dx = () * * x * * ɛ δ y = x 4 y = x 8 3 y = x 4 y = x 3. 4 f(x) = x y = f(x) 4 x =,, 3, 4, 5 5 f(x) f() = f() = 3 f(3) = 3 4 f(4) = 4 *3 S S = f()

More information

, 183

, 183 182 , 183 < > < > 184 < > < > < p. > 185 < > < > 186 < p. > < p. > < p. > < p. > < p. > < p. > < p. > 187 < p. > 188 < p. > 189 190 A B A B A B A

More information

1

1 DATA temp SET sashelp.class(where=(sex='m')) FORMAT=weight 8.2 RUN 28 DATA temp 29 SET sashelp.class(where=(sex='m')) NOTE: SCL 30 FORMAT=weight 8.2 --- 22 ERROR 22-322: 1 :,!!, &, *, **, +, -, /,

More information

~モバイルを知る~ 日常生活とモバイルコンピューティング

~モバイルを知る~ 日常生活とモバイルコンピューティング Webプログラミングの 基 礎 PHPの 基 礎 (7) (2011/06/29) 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト:riho-m-rg11@cuc.ac.jp: 資 料 ページ: http://www.cuc.ac.jp/~riho-m/rg11/ 前 回 の 課 題 おみくじのプログラムを 参 考 にして 生 まれた 年 ( 西 暦 )を

More information

アスラテック株式会社 会社案内

アスラテック株式会社 会社案内 JavaScript SDK for V-Sido CONNECT 利 用 の 手 引 き Mac 編 アスラテック 株 式 会 社 目 次 1. はじめに 1-1. 本 マニュアルの 概 要 p.3 1-2. 使 用 する 機 材 など p.4 1-3. 各 機 器 の 接 続 構 成 と 開 発 イメージ p.5 2. 初 期 設 定 とVSidoConn4Macの 導 入 2-1. Bluetoothのペアリング

More information

おすすめページ

おすすめページ 第 6 章 フォーム コントロールを 作 成 する 作 成 した 内 に お 名 前 や ご 意 見 ご 要 望 などの 入 力 フォームを 作 成 していきま す 最 後 に 送 信 ボタンを 設 置 します テキストフィールドを 作 成 する 名 前 を 入 力 できる 欄 をテキストフィールドで 作 成 します テキストフィールドを 作 成 すると 同 時 にラベ ルのテキストも

More information

携帯電話でGoogle Mapsを使う

携帯電話でGoogle Mapsを使う PHPのファイルは UTF-8 BOMなしで 保 存 し www.cyaneum.orgのpublic_htmlに 置 く! テーマ 研 究 会 (04/28) Google Mapsを 使 う 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト riho-m-rg10@cuc.ac.jp 資 料 http://www.cuc.ac.jp/rg10/ 前 回

More information

この 例 では $time と$datestring の 値 を print 文 によって 表 示 させている 前 後 に <P></P>を 書 いているが これによって HTML の 形 式 に 合 うようににしている ( 実 際 は <P>を 省 略 してもうまく 表 示 される ) この 例

この 例 では $time と$datestring の 値 を print 文 によって 表 示 させている 前 後 に <P></P>を 書 いているが これによって HTML の 形 式 に 合 うようににしている ( 実 際 は <P>を 省 略 してもうまく 表 示 される ) この 例 第 5 章 フォームと PHP プログラム PHP プログラムのデバッグ プログラムがうまく 動 作 しない 場 合 原 因 を 見 つけて 修 正 するデバッグが 必 要 となる PHP に 限 らず 一 般 に CGI のプログラムのデバッグは 結 構 面 倒 になる というのは 入 力 や 出 力 がキーボードや 画 面 にならないため 簡 単 に 試 せない CGI 環 境 で 実 行 される

More information

Microsoft PowerPoint - Kansaipm2002_5_11.ppt

Microsoft PowerPoint - Kansaipm2002_5_11.ppt ビギナー 向 けの 真 珠 みがき2 お 手 軽 CGIとHTMLテンプレート Kansai.pm 2 周 年 記 念 イベント 舟 木 隆 康 2002/5/11 本 日 の 真 珠 みがき CGIとは 何 か CGI.pmの 使 い 方 HTML::Templateの 使 い 方 構 造 体 とLoop 処 理 etc... インターネットを 見 る? もう 少 し 正 確 に 言 うと インターネット

More information

PROC PWENCODE IN=sastrust1 ; RUN ;

PROC PWENCODE IN=sastrust1 ; RUN ; PROC PWENCODE IN=sastrust1 ; RUN ; 1 PROC PWENCODE IN="sastrust1" ; 2 RUN ; {sas001}c2fzdhj1c3qx /* */ LIBNAME audit 'Lev1 SASMain MetadataServer audit repos1'; /* ID */ PROC PRINT DATA=audit.person; VAR

More information

情報活用資料-01-20150507

情報活用資料-01-20150507 スタートメニューコンピュータ スタートメニュー すべてのプログラム Cygwin Cygwin bash shell command filename cd /cygdrive/c/ firefox ls 1 cd Program files ls cd Mozilla Firefox ls cd cd /cygdrive/c/program file/mozilla firefox 2 . /firefox.exe.

More information

2 H23 BioS (i) data d1; input group patno t sex censor; cards;

2 H23 BioS (i) data d1; input group patno t sex censor; cards; H BioS (i) data d1; input group patno t sex censor; cards; 0 1 0 0 0 0 1 0 1 1 0 4 4 0 1 0 5 5 1 1 0 6 5 1 1 0 7 10 1 0 0 8 15 0 1 0 9 15 0 1 0 10 4 1 0 0 11 4 1 0 1 1 5 1 0 1 1 7 0 1 1 14 8 1 0 1 15 8

More information

- 1 - - 2 - 320 421 928 1115 12 8 116 124 2 7 4 5 428 515 530 624 921 1115 1-3 - 100 250-4 - - 5 - - 6 - - 7 - - 8 - - 9 - & & - 11 - - 12 - GT GT - 13 - GT - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - -

More information

講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2

講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2 2015 年 度 Webシステムプログラミング a PHPの 基 礎 (2) 講 義 内 容 前 回 の 提 出 課 題 の 解 答 例 復 習 データを 送 信 するための HTML (フォーム) PHPによるフォームデータの 処 理 2 ( 前 回 ) 提 出 課 題 課 題 1: 1から100までの 乱 数 で 作 成 した2つの 整 数 の 足 し 算 を 表 示 するWebページを 作 成

More information

モール管理者マニュアル Ver.1.0

モール管理者マニュアル Ver.1.0 1 Html 編 集 ツール 補 足 マニュアル Ver.1.0 株 式 会 社 ソフトクリエイト 2012/11/14 目 次 1. Html について... 3 1.1. Html とは... 4 1.2. Html タグの 基 本... 5 1.2.1. HTML タグの 基 礎... 5 1.2.2. HTML タグの 種 類 ( 主 要 タグ)... 7 2. Html 編 集 ツール...

More information

~モバイルを知る~ 日常生活とモバイルコンピューティング

~モバイルを知る~ 日常生活とモバイルコンピューティング Webプログラミングの 基 礎 PHPの 基 礎 (6) ~POST (2011/06/22) 政 策 情 報 学 部 渡 辺 恭 人 riho-m@cuc.ac.jp メーリングリスト:riho-m-rg11@cuc.ac.jp: 資 料 ページ: http://www.cuc.ac.jp/~riho-m/rg11/ 入 力 された 文 字 を 受 け 取 りPOSTで 送 信 する 部 分 (post.htm)

More information