ケミカルエンジニアのためのExcelを用いた化学工学計算法

Size: px
Start display at page:

Download "ケミカルエンジニアのためのExcelを用いた化学工学計算法"

Transcription

1 Font BackColor cmdcoloradd BackColor Caption Font FE FE FE Review manual, M.R.Lindeburg, Professional Publications,Inc.(2002) Sample problems

2 1. What is the binary (base-2) representation of (135) 10? (A) (B) (C) (D) Solution: (135) 10 = ) ) ) ) ) ) ) (135)10= [ same as ] Answer is C. 2. What is the base-10 equivalent of the binary number ? (A) 18 (B) 30 (C) 46 (D) 47 Solution: = 46 Answer is C. 92

3 3. What is the octal (base-8) equivalent of the binary number ( )2? (A) (109) 8 (B) (155) 8 (C) (550) 8 (D) (660) 8 Solution: Since 8 = 2 3, separate the bits into groups of three bits, starting with the least significant bits. Add leading zeros if necessary for consistency Convert each group of three bits into its octal equivalent (1) 8 (5) 8 (5) 8 The octal equivalent is 155. Answer is B. 4. What operation is typically represented by the following program flowchart symbol? (A) input-output (B) processing (C) storage (D) branching Solution: Branching, comparison, and decision operations are typically represented by the diamond symbol. Answer is D. (1) 16 [ ]

4 (2) [ ] (2) (3) 0.25 [ ] ,2-2, (1) (2) 0.125= (3) 0.25 =

5 Web Btu Web inch(in) inch(in) cm inch(in) inch(in) cm lb ( kg) gal ( m 3 ) B.t.u cal= J 95

6 180 9 f = c + 32 = c Netscape Navigator P Internet Tools Netscape Communicator Netscape Navigator Yahoo 96

7 inch feet gal B.t.u. (1) in cm (2) 10.0 ft m 5 (3) F - (96 32) = (4) K (5) cal J (6) 4.50 B.t.u cal

8 98

9 (1) 20 in cm (2) 100 mile/hr km/hr (3) 0 F - (4) K (5) kwhr - J (6) 1 B.t.u - cal 1) 2) Excel 3) Excel.xls VBex1_0_1.xls VBex1_0_1.xls 4) Excel Visual Basic 99

10 VBex1_0_1.xls VBex1_0_1.xls Excel Sheet1 Visual Basic Excel Sheet1 Visual Basic 100

11 Sub convert_ex1_0_1() Dim n As Integer Dim x(10) As Double Dim factor(10) As Double n = 5 ' factor(i) "E5 E9" 5,5) (9,5) For i = 1 To n factor(i) = Cells(4 + i, 5) Next i ' "B5 5,2) x(1) = Cells(5, 2).Value ' factor(i) For i = 2 To n x(i) = factor(i) * x(1) Next i ' x(i) =factor(i)*x(i) "B6 B9" 6,2) (9,2) For i = 2 To n 101

12 Cells(4 + i, 2).Value = x(i) Next i End Sub 6) Visual Basic Web Net Net VB Excel.xls VBex1_0_1.xls VBex1_0_1.xls Sheet1 VB VBex1_0_2.xls VBex1_0_1.xls Excel Sub convert_ex1_0_1() Sub convert_ex1_0_2() Excel Sheet1 VBex1_0_2.xls Excel Sheet1 Excl sheet 102

13 sheet VB convert_ex1_0_2 OK 103

14 sheet sheet convert_ex1_0_2 Excel.xls VBex1_0_1.xls VBex1_0_2.xls Sheet1 VB VBex1_0_3.xls VBex1_0_2.xls Excel Sub convert_ex1_0_2() Sub convert_ex1_0_3() Excel Sheet1 VBex1_0_3.xls Excel Sheet1 VB Excel Sheet1 VB Excl sheet 104

15 Macro1 ResetCalc1 OK 105

16 Delete Excel ResetCalc1 VB Sub ResetCalc1() '' ResetCalc1 Macro ' : 2005/3/21 : Mishima 106

17 Application.Run " VBex1_0_3.xls!convert_ex1_0_2" Range("B6:B9").Select Selection.ClearContents Range("F6").Select End Sub Excel Sheet1 Excl sheet sheet 107

18 VB ResetCalc1 OK sheet sheet ResetCalc1 VBScript Web 108

19 m in <html> <head> <meta http-equiv="content-type" content="text/html; charset=x-sjis"> <meta name="generator" content="microsoft FrontPage 2.0"> <title>uc1 </title> </head> <body> <p><script language="vbscript"> Dim factor(5),inp,inputvalue factor(1) = 1 ' m to m. factor(2) = ' m to in. factor(3) = ' m to ft. 109

20 factor(4) = factor(5) = ' m to yards. ' m to mi. Sub Convertform x1=val0.value val1.value=x1*factor(1) val2.value=x1*factor(2) val3.value=x1*factor(3) val4.value=x1*factor(4) val5.value=x1*factor(5) End Sub </script> </p> <h3> m [L]</h3> <h3> m </h3> <p> </p> <p> <input size="16" name=val0> m </p> <p> </p> <p> <br> </p> <table border="0"> <tr> <td><input size="16" name=val1></td> <td>m</td> </tr> <tr> <td><input size="16" name=val2></td> <td>in</td> </tr> <tr> <td><input size="16" name=val3></td> <td>ft</td> </tr> <tr> <td><input size="16" name=val4></td> 110

21 <td>yd</td> </tr> <tr> <td><input size="16" name=val5></td> <td>mile</td> </tr> </table> <table border="0"> <tr> <td align="center"><input type="button" value=" " onclick="convertform"></td> </tr> </table> <p> </p> <hr> </body> </html> 111

22 Excel VBA Excel sheet VBA ) Excel sheet Visual Basic Editor Visual Basic Editor 112

23 UserForm1 2) UserForm1 MyForm Form Caption Form UserForm1 MyForm Caption Form 3) A 113

24 Label2 4) Label1 Label1 lbldate Label1 lbltime CommandButon1 cmdkakunin CommandButon2 cmdend CommandButon3 cmdunload 5) MyForm 114

25 Private Sub cmdkakunin_click() lbldate.caption = Date lbltime.caption = Time End Sub MyForm Private Sub cmdend_click() End End Sub Private Sub cmdclose_click() Unload MyForm End Sub lbldate.caption = Date lbltime.caption = Time lbldate lbltime End Unload MyForm Form Unload me 115

26 6) VB Sub ShowUserForm() MyForm.Show End Sub ShowUserForm Excel sheet Excel sheet 7) ShowUserForm Excel sheet Excl sheet 116

27 sheet ShowUserForm OK 117

28 sheet sheet ShowUserForm 8) sheet 9) sheet Excel sheet Sub WorkBook_Open VB ThisWorkbook 118

29 General Workbook Sub Workbook_Open() Sub End Sub MyForm.show Excel sheet Excel Excel vbmodeless Private Sub Workbook_Open() MyForm.Show vbmodeless End Sub 119

30 Excel VBA Excel VBA Excel VBA.Show Unload Me 120

31 Excel Show_DateTime_01.xls Excel Show_DateTime_01.xls Show_Select_01.xls Visual Basic Editor Visual Basic Editor MyForm VB MyForm MyForm 121

32 cmdselect, = 18 CommandButon1 cmdselect VB MyForm UserForm1 UserForm1 1 Labl1 122

33 UserForm1, Label1, CommandButton1, CommandButton2, CommandButton3 UserForm1 Question1Form Question1Form Label1 lblquestion CommandButton1 cmdyes CommandButton2 cmdno CommandButton3 cmdreturn MyForm Question1Form VB Question2Form Question2Form Question1Form Question1Form Question1Form Question1Form 123

34 Ctrl+A Question1Form Ctrl+C Question2Form Question2Form Question2Form Ctrl+V Question2Form Ctrl+A UserForm1 UserForm1 Question2Form Question2Form LblQuestion1 lblquestion2 CmdYes cmdyes CmdNo cmdno CmdReturn cmdreturn Question1Form 3) MyForm Private Sub cmdend_click() End End Sub 124

35 Private Sub cmdclose_click() Unload MyForm End Sub lbldate.caption = Date lbltime.caption = Time lbldate lbltime End Unload MyForm Form Unload me 4) VB Sub ShowUserForm() MyForm.Show End Sub ShowUserForm Excel sheet Excel sheet 5) ShowUserForm Excel sheet Excl sheet 125

36 sheet ShowUserForm OK 126

37 sheet sheet ShowUserForm 6) sheet 7) sheet Excel sheet Sub WorkBook_Open VB ThisWorkbook 127

38 General Workbook Sub Workbook_Open() Sub End Sub MyForm.show Excel sheet Excel Excel vbmodeless Private Sub Workbook_Open() MyForm.Show vbmodeless End Sub 128

39 Excel VBA Excel sheet VBA 6.1 Excel sheet1 Antoine Excel sheet Visual Basic Editor Visual Basic Editor 129

40 UserForm1 UserForm1 MyForm Form Caption Form 130

41 A 3) Label1 Label1 lblshowcondition Label2 lbldegree Label3 lblshowvp CommandButton1 cmdcalc CommandButton2 cmdend TextBox1 txttemperature1 Private Sub cmdcalc_click() Dim T(20) As Single, p10(20) As Single, xlnp As Single Dim A1 As Single, B1 As Single, C1 As Single ' Antoine A1 = Cells(3, 2) B1 = Cells(3, 3) C1 = Cells(3, 4) 131

42 ' T T(1) = txttemperature1.text ' xlnp = A1 - B1 / ((T(1) ) + C1) p10(1) = Exp(xlnp) / 760 * ' mmhg ' MPa lblshowvp.caption = " " & T(1) & " " _ & Val(Format(p10(1), "###.######")) & "[MPa] " End Sub Private Sub cmdend_click() End End Sub MyForm sheet1 Antoine A1 B1,C1 Cells(i, j) txttemperature1 txttemperature1.text T(1) xlnp Antoine p10(1) txttemperature1 VB Sub ShowUserForm() MyForm.Show End Sub ShowUserForm Excel sheet 132

43 Excel sheet ShowUserForm Excel sheet Excl sheet sheet ShowUserForm OK 133

44 sheet sheet ShowUserForm sheet

45 6.2 sheet Excel sheet2 Antone Antoine A B,C sheet1 sheet1 sheet1 135

46 sheet1 B18 sheet (I) 136

47 Delete Antoine sheet2 B B13 sheet1 A3 OK A3 Antoine sheet2 B B13 Antoine B B13 A3 Antoine sheet2 Antoine A1,B1,C1 137

48 ' ComboBox ' sheet2 "Antoine ' CompNum = Cells(17, 2) ' For k = 1 To CompNum NoComp(k) = Cells(k + 2, 1) CompName(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 2) Worksheets(" ").Cells(2 + k, 2) = CompName(k) ' Antoine A1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 3).Value B1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 4).Value C1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 5).Value ' sheet1 " Worksheets(" ").Cells(2 + k, 3) = A1(k) Worksheets(" ").Cells(2 + k, 4) = B1(k) Worksheets(" ").Cells(2 + k, 5) = C1(k) Next k CompNum = Cells(17, 2) B17 A3 A4 A5 NoComp(k) NoComp(k) = Cells(k + 2, 1) "Antoine ". CompName(k) B3 CompName(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 2) Worksheets(" ").Cells(2 + k, 2) = CompName(k) Antoine A1(k) B1(k) C1(k) "Antoine " " " A1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 3).Value B1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 4).Value C1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 5).Value 138

49 ' sheet1 " Worksheets(" ").Cells(2 + k, 3) = A1(k) Worksheets(" ").Cells(2 + k, 4) = B1(k) Worksheets(" ").Cells(2 + k, 5) = C1(k) " " Antone Antoine 11 MyForm sheet1 MyForm L10:M11 139

50 MyForm Private Sub cmdcalc_click() Dim CompName(10) As String ' Dim NoComp(10) As Integer ' Dim CompNum As Integer ' ' Dim T(20) As Single, p10(20) As Single, xlnp(20) As Single Dim rt(20) As Single, dt As Single Dim A1(10) As Single, B1(10) As Single, C1(10) As Single ' ' Application.StatusBar = " " ' Application.ScreenUpdating = False ' ' ' Worksheets(" ").Range("F2:K38,B3:E15").Select Selection.ClearContents Worksheets(" ").Range("A1").Activate ' ' ComboBox ' sheet2 "Antoine ' CompNum = Cells(17, 2) ' For k = 1 To CompNum NoComp(k) = Cells(k + 2, 1) CompName(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 2) Worksheets(" ").Cells(2 + k, 2) = CompName(k) ' Antoine A1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 3).Value B1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 4).Value C1(k) = Worksheets("Antoine ").Cells(2 + NoComp(k), 5).Value ' sheet1 " Worksheets(" ").Cells(2 + k, 3) = A1(k) Worksheets(" ").Cells(2 + k, 4) = B1(k) Worksheets(" ").Cells(2 + k, 5) = C1(k) Next k ' T 140

51 T(1) = txttemperature2.text ' T(11) = txttemperature1.text ' ' 10 dt = (T(11)- T(1)) / 10 For i = 1 To 10 T(i + 1) = T(1) + dt * i Next i ' ' ' For k = 1 To CompNum For i = 1 To 11 xlnp(i) = A1(k) - B1(k) / ((T(i) ) + C1(k)) ' mmhg p10(i) = Exp(xlnp(i)) / 760 * ' MPa Next i ' For i = 1 To 11 rt(i) = 1 / (T(i) ) Next i ' ' Cells( *(k- 1), 6) = CompName(k) For i = 1 To 11 Cells(1 + i + 13 *(k- 1), 7) = i Cells(1 + i + 13 *(k- 1), 8) = T(i) Cells(1 + i + 13 *(k- 1), 9) = p10(i) Cells(1 + i + 13 *(k- 1), 10) = rt(i) Cells(1 + i + 13 *(k- 1), 11) = xlnp(i) Next i Next k ' lblshowvp1.caption = " " & T(1) & " " _ & Val(Format(p10(1), "###.######")) & "[MPa] " lblshowvp2.caption = " " & T(11) & " " _ & Val(Format(p10(11), "###.######")) & "[MPa] " End Sub Private Sub cmdend_click() 141

52 End Sub End Excel Show_VP_Graph02,xls

53 143

  化学工学プログラミング補助資料

  化学工学プログラミング補助資料 TK II fsv0 Work_Win 3.5inch fsv0work_ Win P.7179 P.75 ) ) ) D) ) ) ) D) 36 0.8Pa [g] 180 4Pa inch inch 2.54cm 1 2 3 COH 2 etc 1.510 4 / 3 310 7 L 1500 5500 6000 1800 1500 1500 2700 210 10 cal 184 40% 4

More information

コンピュータ概論

コンピュータ概論 5.1 VBA VBA Check Point 1. 2. 5.1.1 ( bug : ) (debug) On Error On Error On Error GoTo line < line > 5.1.1 < line > Cells(i, j) i, j 5.1.1 MsgBox Err.Description Err1: GoTo 0 74 Visual Basic VBA VBA Project

More information

  化学工学プログラミング補助資料

  化学工学プログラミング補助資料 TK II fsv0 Work_Wn 3.5nch fsv0work_ Wn p.8606 p.750 A) B) ) D) I/I 0 c I dx di I di c dx I di kcidx () A compound nsoluble n water s steam dstlled at 98.0 under the pressure, p 737 Torr, the dstllate contanng

More information

D0050.PDF

D0050.PDF Excel VBA 6 3 3 1 Excel BLOCKGAME.xls Excel 1 OK 2 StepA D B1 B4 C1 C2 StepA StepA Excel Workbook Open StepD BLOCKGAME.xls VBEditor ThisWorkbook 3 1 1 2 2 3 5 UserForm1 4 6 UsorForm2 StepB 3 StepC StepD

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

橡3-16.PDF

橡3-16.PDF [ ]-[ ]-[Visual Basic Editor] [ ]-[ ] CommandButton1 CommandButton2 [Caption] [CommandButton1][RED] [Caption] [CommandButton2] [GREEN] [CommandButton1] [CommandButton2] [BackColor] (Label1Label6) (TextBox1TextBox4)

More information

My関数の作成演習問題集

My関数の作成演習問題集 Excel Sum,Average,Max 330 BMI Excel My Excel VBA Visual BASIC Editor AltF11 Visual BASIC Editor My Function Function -1- Function ( As Single, As Single) As Double Function Funciton Funciton As Single

More information

45 VBA Fortran, Pascal, C Windows OS Excel VBA Visual Basic Excel VBA VBA Visual Basic For Application Microsoft Office Office Excel VBA VBA Excel Acc

45 VBA Fortran, Pascal, C Windows OS Excel VBA Visual Basic Excel VBA VBA Visual Basic For Application Microsoft Office Office Excel VBA VBA Excel Acc \n Title 文 系 学 生 のための VBA プログラミング 教 育 についての 考 察 Author(s) 五 月 女, 仁 子 ; Soutome, Hiroko Citation 商 経 論 叢, 46(1): 45-60 Date 2010-10-31 Type Departmental Bulletin Paper Rights publisher KANAGAWA University

More information

1

1 1 2 3 4 確認しよう 今回のサンプルプログラムにアクセスしてみましょう 1. デスクトップ上のフォルダをクリックし /var/www/html に example1.html と example2.php ファイルがあることを確認します 2. ブラウザを起動し 次の URL にアクセスします http://localhost/example1.html 3. 自分の手を選択して じゃんけんぽん

More information

Microsoft PowerPoint - jouhou11vista.ppt [互換モード]

Microsoft PowerPoint - jouhou11vista.ppt [互換モード] VBA (Visual BASIC for Applications)で Body Mass Index 判 定 プログラムを 作 る ユーザーフォームを 用 いた プログラムの 作 成 Graphic User Interface ( GUI ) の 利 用 法 Excelメニューバーの 表 示 タグをクリック 右 端 のマクロのアイコンをダブルクリック マクロ 作 成 のダイアログが 現 れる

More information

1. 入力画面

1. 入力画面 指定した時刻に指定したマクロ (VBA) を実行するプログラム (VBA) 益永八尋 様々な業務を行っている場合には 指定した時刻に指定したマクロ (Macro VBA) を実行したくなる場合がある たとえば 9:00 17: 00 や 1 時間 6 時間間隔に指定したマクロ (Macro VBA) を実行する この様な場合に対応できるように汎用性の高いプログラムを作成した この場合に注意する必要があるのは

More information

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML Web 工学博士大堀隆文 博士 ( 工学 ) 木下正博 共著 World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML ii HTML CSS CSS HTML HTML HTML HTML Eclipse Eclipse Eclipse

More information

スライド 1

スライド 1 b-pac 活用資料 Web アプリケーション編 ブラザー工業株式会社 2018 Brother Industries, Ltd. All Rights Reserved. 1 目的と対象者 目的 : Web からラベルを印刷するためのシステム構成とコーディング例を紹介します 対象者 : Web プログラミングに関する知識を有する開発者 2018 Brother Industries, Ltd. All

More information

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 ... 1... 2... 3... 5... 6... 6... 9... 9 Vector... 10 Struts... 12... 14 cart.jsp 1... 15 cart.jsp 2... 17 JSP...

More information

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

~モバイルを知る~ 日常生活とモバイルコンピューティング 政策情報学部 渡辺恭人 riho-m@cuc.ac.jp 作業 1: 前回分を少し改造 1 行目の place = 那覇 の 那覇 の部分を他の地名に変えてみる 南西諸島地域以外の場合は 2 行目も変更する必要がある xmlfile = http://weather.livedoor.com/forecast/rss/amedas/temp/ 10/47.xml http://weather.livedoor.com/weather_hacks/rss_feed_lis

More information

1 JIS X 8341-3:2016 WCAG2.0 http://waic.jp/docs/wcag2/understanding.html WCAG2.0 http://waic.jp/docs/wcag2/techs.html 2 ... 1... 3... 6 1.1... 6 1.2... 7... 8 1.1.1... 8 1.2.1... 13 1.2.2... 14 1.2.3...

More information

コンピュータ概論

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

More information

untitled

untitled Visual Basic.NET 1 ... P.3 Visual Studio.NET... P.4 2-1 Visual Studio.NET... P.4 2-2... P.5 2-3... P.6 2-4 VS.NET(VB.NET)... P.9 2-5.NET... P.9 2-6 MSDN... P.11 Visual Basic.NET... P.12 3-1 Visual Basic.NET...

More information

D0090.PDF

D0090.PDF 400. 1 1 1 3 500g 180cm A A 0g 500g 500g 500g 0.2 0.3 cm 500g 1kg 12 2 4 2 1 2 1 500g 500g 500g 2 A FreeFall 2 VBEditor 1 1 Option Explicit Declare Sub Sleep Lib "kernel32" (ByVal dwmilliseconds As Long)

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション VBA (Visual BASIC for Applications) で Body Mass Index 判定プログラムを作る ユーザーフォームを用いたプログラムの作成 Graphic User Interface ( GUI ) の利用法 構造化プログラムの作成 複雑なプログラムを 関数に分割して作る方法 VBA(Visual BASIC for Applications) のテキストは たくさんあります

More information

30 2014.08 2 1985 Koblitz Miller 2.1 0 field Fp p prime field Fp E Fp Fp Hasse Weil 2.2 Fp 2 P Q R R P Q O P O R Q Q O R P P xp, yp Q xq, yq yp yq R=O

30 2014.08 2 1985 Koblitz Miller 2.1 0 field Fp p prime field Fp E Fp Fp Hasse Weil 2.2 Fp 2 P Q R R P Q O P O R Q Q O R P P xp, yp Q xq, yq yp yq R=O An Internet Vote Using the Elliptic Curve Cryptosystem TAKABAYASHI Shigeki Nowadays various changes are taking place in the society by the spread of the Internet, and we will vote by the Internet using

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 全コース Web フォロー付!! Excel VBA 初心者の方から始められる入門コースから 基本文法が学べるベーシックや 高度なプログラミングが学べるスタンダードまでしっかりと学習できます!! 学習の流れ Excel VBA 入門 VBA 初心者の方 Excel の基本知識をお持ちの方 Excel VBA ベーシック 基本文法を理解し 読解 ( 編集 ) 能力を身につけたい方 Exce lvba

More information

74 No.3 0999500 999500 ACCESS

74 No.3 0999500 999500 ACCESS Mar.2003 73 ACCESS ACCESS EXCEL EXCEL 74 No.3 0999500 999500 ACCESS Mar.2003 75 76 No.3 Mar.2003 77 temp EXCEL EXCEL No.3 78 seikika.txt Mar.2003 79 EXCEL Personal.xls Visual Basic Editor VBA Project(PERSONAL.XLS)

More information

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

08‘͆i”O“Z†j

08‘͆i”O“Z†j 1 2 3 4 5 6 7 9 10 11 1 7 1 126 Microsoft Excel VBA Microsoft Excel VBA 127 Sub () ' ' []A2 A3A19 ' B19C19 ' ' []ABC ' DE ' ' ' [] ' ' [] ' ' Dim KaisyaName As String ' Dim TantouName As String ' Dim ShouhinName

More information

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

~モバイルを知る~ 日常生活とモバイルコンピューティング テーマ研究会 (2011/04/27) ~ Web アプリ プログラミング入門 (2)~ 政策情報学部 渡辺恭人 riho-m@cuc.ac.jp 資料ページ : http://www.cuc.ac.jp/~riho-m/rg11/ 作業 1: 前回分を少し改造 1 行目の place = 那覇 の 那覇 の部分を他の地名に変えてみる 南西諸島地域以外の場合は 2 行目も変更する必要がある xmlfile

More information

Excel Excel Excel = Excel ( ) 1

Excel Excel Excel = Excel ( ) 1 10 VBA / 10 (2016 06 21 ) Excel Excel Excel 20132 20 = 1048576 Excel 201316 100 10 (2016 06 21 ) 1 Excel VBA Excel Excel 2 20 Excel QR Excel R QR QR BLASLAPACK 10 (2016 06 21 ) 2 VBA VBA (Visual Basic

More information

94 expression True False expression FalseMSDN IsNumber WorksheetFunctionIsNumberexpression expression True Office support.office.com/ja-jp/ S

94 expression True False expression FalseMSDN IsNumber WorksheetFunctionIsNumberexpression expression True Office   support.office.com/ja-jp/ S Excel VBA a Excel VBA VBA IsNumeric IsNumber SpecialCells SpecialCells MSDNMicrosoft Developer NetworkIsNumeric IsNumber SpecialCells IsNumeric VBA IsNumericexpression SpecialCells 94 expression True False

More information

1. 入力画面

1. 入力画面 指定した時刻に指定したマクロ (VBA) を実行するプログラム (VBA) 益永八尋 様々な業務を行っている場合には 指定した時刻に指定したマクロ (Macro VBA) を実行したくなる場合がある たとえば 9:00 17: 00 や 1 時間 6 時間間隔に指定したマクロ (Macro VBA) を実行する また 月に 1 回 毎週 1 回定期的または不定期的にある時刻になれば指定したプログラムを実行させる

More information

ExcelVBA Excel VBA Microsoft Excel VBA Visual Basic for Applications Excel Excel VBA ExcelVBA Excel ExcelVBA Excel VBA Excel ExcelVBA ExcelVBA VBA Ran

ExcelVBA Excel VBA Microsoft Excel VBA Visual Basic for Applications Excel Excel VBA ExcelVBA Excel ExcelVBA Excel VBA Excel ExcelVBA ExcelVBA VBA Ran Excel VBA Microsoft Excel VBA Visual Basic for ApplicationsExcel Excel VBA Excel ExcelVBA Excel VBA Excel ExcelVBA VBA Range Excel 174 VBA VisualBasicforApplications Microsoft ExcelWordAccessPowerPoint

More information

csv csv

csv csv 2009 1 9 2 1. 1 2. 2 2.1......................................... 2 2.2 csv.................................... 3 2.3 csv.................................. 3 3. 4 3.1.........................................

More information

BASICとVisual Basic

BASICとVisual Basic Visual Basic BASIC Visual Basic BASICBeginner's All purpose Symbolic Instruction Code Visual Basic Windows BASIC BASIC Visual Basic Visual Basic End Sub .Visual Basic Visual Basic VB 1-1.Visual Basic

More information

情報基礎A

情報基礎A 情報基礎 A 第 10 週 プログラミング入門 マクロ基本文法 4 1 配列 FOR~NEXT 全眞嬉 東北大学情報科学研究科システム情報科学専攻情報システム評価学分野 http://www.dais.is.tohoku.ac.jp/~jinhee/jyoho-19.html 6 人分の合計を計算 2 socre(0) socre(1) socre(2) socre(3) socre(4) socre(5)

More information

2 1 F M m r G F = GMm r 2 (1.1) (1.1) (r = r ) F = GMmr r 3 (1.2) a F m F = kma k 1 F = ma (1.3) (1.2) (1.3) ma = GMmr r 3 (1.4)

2 1 F M m r G F = GMm r 2 (1.1) (1.1) (r = r ) F = GMmr r 3 (1.2) a F m F = kma k 1 F = ma (1.3) (1.2) (1.3) ma = GMmr r 3 (1.4) 1 1 1.1 2 1 F M m r G F = GMm r 2 (1.1) (1.1) (r = r ) F = GMmr r 3 (1.2) a F m F = kma k 1 F = ma (1.3) (1.2) (1.3) ma = GMmr r 3 (1.4) 1.1 3 M m r a a = d2 r dt 2 (1.4) r d 2 r dt 2 = GM r 3 r (1.5)

More information

工夫したエクセルの使い方

工夫したエクセルの使い方 Excel95 Excel97 Excel97 VisualBasic6 Excel2000 VBA Excel VBA VisualBasic6 Excel2000 OK Delete W AutoSize True Caption Enabled True False Sheet W Delete Sheet1( ) Cmd Click frm.show Sheet2 C ( ) Caption

More information

Excel Excel Excel 20132 20 = 1048576 Excel 201316 100 III 7 (2014 11 18 ) 1

Excel Excel Excel 20132 20 = 1048576 Excel 201316 100 III 7 (2014 11 18 ) 1 III 7 VBA / III 7 (2014 11 18 ) Excel Excel Excel 20132 20 = 1048576 Excel 201316 100 III 7 (2014 11 18 ) 1 Excel VBA Excel Excel 2 20 Excel QR Excel R QR QR BLASLAPACK III 7 (2014 11 18 ) 2 VBA VBA (Visual

More information

soturon2013

soturon2013 4.4. CGI, CGI Web. UNIX, UNIX Windows. UNIX CGI. i ( ). mi- http://www.mimikaki.net/ 67 (mi- ),mi-, http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt,.

More information

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

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

More information

B 5 (2) VBA R / B 5 ( ) / 34

B 5 (2) VBA R / B 5 ( ) / 34 B 5 (2) VBAR / B 5 (2014 11 17 ) / 34 VBA VBA (Visual Basic for Applications) Visual Basic VBAVisual Basic Visual BasicC B 5 (2014 11 17 ) 1 / 34 VBA 2 Excel.xlsm 01 Sub test() 02 Dim tmp As Double 03

More information

untitled

untitled Ajax Web Ajax http://www.openspc2.org/javascript/ajax/ajax_stu dy/index.html Life is beautiful Ajax http://satoshi.blogs.com/life/2005/06/ajax.html Ajax Ajax Asynchronous JavaScript + XML JavaScript XML

More information

untitled

untitled StiLL StiLL Excel VBA IT Excel2000 2003 StiLL StiLL! Excel2007 StiLL -- -- Excel!!!! DB CSV VBA VBA ' VBA Public Sub SampleProgramDAO1() Dim SheetName As String Dim strname As String SheetName = "Sheet2"

More information

商学論叢 第55巻 第1号

商学論叢 第55巻 第1号 1) 1) 2) 2) 3) 4) 5) 6) 3) 4) 5) 6) 2 7) 8) ebay Yahoo 7) 8) Yahoo URL 9) 10) 11) 9) Roth and Ockenfels (2002) Wilcox (2000) 10) 11) Engelbrecht-Wiggans, Milgrom, and Weber (1983) Yahoo 12) ID 13) 14)

More information

橡vb_kikai0.PDF

橡vb_kikai0.PDF Visual Basic OS Windows Visual Basic GPIBRS232C A/D Visual Basic Windows Visual Basic Visual Basic Visual Basic Visual Basic Windows GUI( ) OS Visual Basic Form Form 1 Visual Basic Microsoft Visual Basic

More information

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++

More information

プログラミング演習

プログラミング演習 プログラミング入門 Ⅰ (No.10) Ⅰ10-1 [1]Excel VBA を使ってみる VBA とは Visual Basic for Applications の略で Microsoft 社が自社の Office 製品 (Word, Excel PowerPoint Aceess, Outlook など ) で簡単にマクロを作れるように開発したプログラミング言語です 名前のとおり Visual

More information

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. このサンプルページの内容は, 初版 1 刷発行時のものです.

Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます.   このサンプルページの内容は, 初版 1 刷発行時のものです. Excel ではじめる数値解析 サンプルページ この本の定価 判型などは, 以下の URL からご覧いただけます. http://www.morikita.co.jp/books/mid/009631 このサンプルページの内容は, 初版 1 刷発行時のものです. Excel URL http://www.morikita.co.jp/books/mid/009631 i Microsoft Windows

More information

受動的攻撃について

受動的攻撃について 1 Microsoft Internet Explorer 5.01 and Access 2000 VBA Code Execution Vulnerability Eiji James Yoshida zaddik@geocities.co.jp penetration technique research site http://www.geocities.co.jp/siliconvalley/1667/index.htm

More information

2 X Y Y X θ 1,θ 2,... Y = f (X,θ 1,θ 2,...) θ k III 8 ( ) 1 / 39

2 X Y Y X θ 1,θ 2,... Y = f (X,θ 1,θ 2,...) θ k III 8 ( ) 1 / 39 III 8 (3) VBA, R / III 8 (2013 11 26 ) / 39 2 X Y Y X θ 1,θ 2,... Y = f (X,θ 1,θ 2,...) θ k III 8 (2013 11 26 ) 1 / 39 Y X 1, X 2,..., X n Y = f (X 1, X 2,..., X n,θ 1,θ 2,...) (y k, x k,1, x k,2,...)

More information

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

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

More information

_IMv2.key

_IMv2.key 飯島基 文 customb2b@me.com $ ssh ladmin@im.example.com $ cd /Library/Server/Web/Data/Sites/Default/ $ git clone https://github.com/msyk/inter-mediator.git

More information

Taro php.jtdc

Taro php.jtdc 4-5 PHP 演習問題 演習 1 フォルダ \data\dbserver\php のPHPスクリプト randamu.php を使い, データベース testdb のテーブル table1 を取り込み, ランダムにデータを表示させるWebサーバを構築し, クライアント( Windows 側 ) のブラウザURL epc**.cen.hic.ac.jp/randamu.php を入力し, 確認する

More information

2009 Web B012-1

2009 Web B012-1 2009 Web 2010 2 1 5108B012-1 1 4 1.1....................................... 4 1.2................................... 4 2 Web 5 2.1 Web............................... 5 2.2 Web.................................

More information

Lesson 1 1 EXVBA2000 Lesson01 Lesson01.xls 2

Lesson 1 1 EXVBA2000 Lesson01 Lesson01.xls 2 Excel2000VBA L e a r n i n g S c h o o l 1 Lesson 1 1 EXVBA2000 Lesson01 Lesson01.xls 2 3 Module1:(General)- Public Sub () Dim WS As Object Dim DiffDate As Integer Dim MaxRows As Integer, CopyRows As Integer

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション レッスン (1) あるワークシート中のあるセルを指定する Worksheets(" ワークシート名 ").Range(" セル ").Value ( 例 ) Worksheets(" データ収集 ").Range("A2").Value あるワークシートのセルから 別のワークシートのセルへ転記する Worksheets(" シート A").Range(" セル ").Value = Worksheets("

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

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 演習課題レッスン (1) '(1) ワークシートどうしのやりとり ' ワークシート 請求書 1 から ワークシート データ収集 にデータを転記しましょう Sub example01() ' 請求書番号 ( 請求書 1のE2からデータ収集のA2へ ) Worksheets(" データ収集 ").Range("A2").Value = Worksheets(" 請求書 1").Range("E2").Value

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

FileList Convert a pdf file!

FileList Convert a pdf file! Tamadaigakufuzokuhijirigaokac yugakukoutougakkoupasocom butamadaigakufuzokuhijirigaok acyugakukoutougakkoupasoco mbutamadaigakufuzokuhijiriga 2009 09 20 21 okacyugakukoutougakkoupaso combutamadaigakufuzokuhijiri

More information

PowerPoint Presentation

PowerPoint Presentation プログラミング Java III 第 4 回 : サーブレットの HTTP Request の処理 Ivan Tanev 講義の構造 1. サーブレットの HTTP Request の処理 2. 演習 2 第 3 回のまとめ Internet Explorer のアドレス バー : http://isd-si.doshisha.ac.jp/teaching/programming_3/xxxxxxxx/lecture3_form1.html

More information

土木工事共通仕様書(その2)

土木工事共通仕様書(その2) 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 2 3 22 578 582 27 4 5 6 567 7 21 8 9 (9), 10 11 12 13 14 (1) (2) 16 532 35 15 (3) (4) (1) (1) 16 (4) () () () 17 () 18 170 19 20 21 10 22 23 24 25 26 27

More information

untitled

untitled 2005 HP -1-2005 8 29 30 HP 1 ( ) 1. Web 2. HTML HTML 1 PDF HTML 1 Web HTML http://www.media.ritsumei.ac.jp/kodais2005 2 2.1 WWW HTML Hyper Text Markup Language) HTML Web HTML Internet Explorer http://www.ritsumei.ac.jp

More information

卒業論文.PDF

卒業論文.PDF 234 1 1 1.1 1 1.2 4 1.3 4 2 5 2.1 5 2.2 6 2.3 7 2.3.1 7 2.3.2 8 2.3.3 9 2.3.4 9 2.3.5 9 2.3.6 9 3 1 3.1 3.2 3.3 11 3.4 14 3.4.1 14 3.4.2 15 3.5 16 3.6 17 i 4 2 18 4.1 18 4.2 19 4.2.1 2m/sec 2 4.2.2 3m/sec

More information

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4. http://www1.iwate-ed.jp/ JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.d 5.4.e 5.5.a 5.5.b 5.5.c

More information

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

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

More information

ii

ii Excel VBA VBA 2002 ii CONTENTS 1 2 3 4 5 6 7 8 9 10 1 2 2 EXVBA2_2002 1-2 1-2.xls 12 Sub () Dim FstValue(6) As Integer Dim NextValue(6) As Integer Dim TtlValue(6) As Integer Dim i As Integer Set WS =

More information

Microsoft PowerPoint - Lecture_3

Microsoft PowerPoint - Lecture_3 プログラミング III 第 3 回 : サーブレットリクエスト & サーブレットレスポンス処理入門 Ivan Tanev 講義の構造 1. サーブレットの構造 2. サーブレットリクエスト サーブレットレスポンスとは 3. 演習 2 Lecture2_Form.htm 第 2 回のまとめ Web サーバ Web 1 フォーム static 2 Internet サーブレ4 HTML 5 ットテキスト

More information

2 1,384,000 2,000,000 1,296,211 1,793,925 38,000 54,500 27,804 43,187 41,000 60,000 31,776 49,017 8,781 18,663 25,000 35,300 3 4 5 6 1,296,211 1,793,925 27,804 43,187 1,275,648 1,753,306 29,387 43,025

More information

D0020.PDF

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

More information

SNS 14,917,000,000 10,780,000 SNS 8,850,000,000 14,900,000 MobileSpace 8,000,000,000 3,000,000 SNS 6,000,000,000 6,000,000 3,863,000,000 22,100,000 3,790,000,000 8,970,000 i i 3,500,000,000 6,000,000 2,001,000,000-1,900,000,000

More information

ホームページ (URL) を開く 閉じる 益永八尋 VBA からホームページを開いたり 閉じたりします ホームページを開くはシート名 HP_Open で操作し ホームページを閉じるはシート名 "HP_Close" で操作します ホームページを開く方法はいくつかありますがここでは 1 例のみを表示します なお これは Web から入手したサンプルプログラムから使い勝手が良いように修正 追加したものです

More information

はじめに

はじめに IT 1 NPO (IPEC) 55.7 29.5 Web TOEIC Nice to meet you. How are you doing? 1 type (2002 5 )66 15 1 IT Java (IZUMA, Tsuyuki) James Robinson James James James Oh, YOU are Tsuyuki! Finally, huh? What's going

More information

Since

Since Since 1885 16.4 15.6 14.2.8 39.4 13.6 21 211 212 213 214 8,88 227 186,164 181,869 184,412 197,495 21,995 11,466 11,67 15,474 16,899 22,1 1, 24, 3,54 5,686 7,518 9,615 17,467 8,88 8,37 8,288 8,29 8,319

More information

プレポスト【問題】

プレポスト【問題】 コース名 : 基礎から学ぶ!Excel VBA による業務の自動化 受講日 氏名 1 Excel VBA を使用するメリットとして誤っているものを 1 つ選びなさい 1. 手作業では手間のかかる作業も プログラムに記述した処理は一括して実行されるため 何段階ものメニュー操作を行う必要がなくなる 2. プログラムに書いた処理は記述どおりに実行されるため だれがいつ何回行っても確実な処理がなされ 誤動作を防ぐことができる

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

システム分析とデータベース設計

システム分析とデータベース設計 システム設計 1. 構造化システム設計 DFD からモジュール設計 2. プログラミング HTML,VBScript,ASP, データベース 3. プログラミング作法 レイアウト, プログラム 3 構造 4. プログラミング補題 ( 会員登録 ) システム設計技法 - 受注処理の DFD を例に 受注処理の DFD さらなるプロセスの詳細化 商品ファイル 在庫ファイル 会員 会員番号 商品番号 商品番号

More information

図 2 Excel スプレッドシートの世界 のウィンドウ 図 3 Visual Basic の世界 のウィンドウ 図 3 の VBA ウィンドウは 図 2 の Excel ウィンドウのメニューの ツール をクリックし 開か れるプルダウンメニューで マクロ /Visual Basic Editor

図 2 Excel スプレッドシートの世界 のウィンドウ 図 3 Visual Basic の世界 のウィンドウ 図 3 の VBA ウィンドウは 図 2 の Excel ウィンドウのメニューの ツール をクリックし 開か れるプルダウンメニューで マクロ /Visual Basic Editor Excel マクロ -Visual Basic の基本 - 1.Excel ファイルの構成 Excel ファイルは 右図のように 構成されている 一般に Excel と言えば 右図で Excel スプレッドシートの世界 と名付けた部分 すなわち Excel を起動したときに表示されるスプレッドシート (1ページの場合もあり 数ページの場合もある ) のみであるように思われている Excel ファイルには

More information

データを TreeView コントロールで表示 VisualStudio2017 の Web サイトプロジェクトで bootstrap, 及び script フォルダの js ファイルが使用できるマスターページを親とする TestTreeView.aspx ページを作成します 下記の html コー

データを TreeView コントロールで表示 VisualStudio2017 の Web サイトプロジェクトで bootstrap, 及び script フォルダの js ファイルが使用できるマスターページを親とする TestTreeView.aspx ページを作成します 下記の html コー データを TreeView コントロールで表示 VisualStudio2017 の Web サイトプロジェクトで bootstrap, 及び script フォルダの js ファイルが使用できるマスターページを親とする TestTreeView.aspx ページを作成します 下記の html コードのスタイルを作成します html コード 1

More information

untitled

untitled ST0001-1- -2- -3- -4- BorderStyle ControlBox, MinButton, MaxButton True False True False Top Left Height,Width Caption Icon True/False -5- Basic Command1 Click MsgBox " " Command1 Click Command1 Click

More information

i

i 5.0 138 5.1 139 5.2 IE 141 5.3 URL 142 5.4 143 5.5 144 5.6 IE 145 5.7 145 5.8 147 5.9 148 5.10 154 5.11 157 5.12 160 5.13 163 5.14 Web 165 5.15 167 5.16 168 5.17 169 5.18 172 5.19 173 5.20 Web 174 5.21

More information

プログラミング演習

プログラミング演習 プログラミング入門 Ⅰ (No.11) Ⅰ11-1 [1] プログラムを修正する (1-1) 既にあるプログラムを開く 前回作ったプログラム prog1-10.xlsm を開いてみよう 既に保存してある VBA プログラムを開くには 以下のようにする ドキュメントから開く 1 Excel VBA のプログラムは Excel ファイルの中に入っているので Excel ファイルをダブルクリックする 2

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

ÉvÉçPM_02

ÉvÉçPM_02 2 JavaScript 2JavaScript JavaScript 2-11hello1.html hello

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

オンラインテスト

オンラインテスト 1. 2. JavaScript 3. Perl 4. CGI 1. WWW HTML WWW World Wide Web HTML Hyper Text Markup Language XML, XHTML Java (.java) JavaApplet (.class,.jar) JavaServlet (.jsp) JavaScript (.html) CGI (.cgi) SSI (.shtml)

More information

compiler-text.dvi

compiler-text.dvi 2018.4 1 2 2.1 1 1 1 1: 1. (source program) 2. (object code) 3. 1 2.2 C if while return C input() output() fun var ( ) main() C (C-Prime) C A B C 2.3 Pascal P 1 C LDC load constant LOD load STR store AOP

More information

SVG資料第10回目(その2) Ajaxによる同期通信と非同期通信の違い

SVG資料第10回目(その2) Ajaxによる同期通信と非同期通信の違い 10 ( SVG 10 ( Ajax Ajax I(SVG) 2017/6/27 10 ( Ajax 10 ( Ajax 100 10 HTML 1 2 3 4 5 6

More information

2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39

2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39 III 8 (3) VBA, R / III 8 (2013 05 28 ) / 39 2X Y Y X θ 1, θ 2,... Y = f(x, θ 1, θ 2,...) θ k III 8 (2013 05 28 ) 1 / 39 Y X 1, X 2,..., X n Y = f(x 1, X 2,..., X n, θ 1, θ 2,...) (y k, x 1,k, x 2,k,...)

More information

IS-LM (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2)

IS-LM (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2) 1 2 2 2 2.1 IS-LM 1 2.2 1 1 (interest) 100 (net rate of interest) (rate of interest) ( ) = 100 (2.1) (gross rate of interest) ( ) = 100 (2.2) 1 1. 2. 1 1 ( ) 2.3. 3 2.3 1 (yield to maturity) (rate of return)

More information

VBM01#解答解説# indd

VBM01#解答解説# indd 業務を効率化! ExcelVBA 実践コースレポート問題集解答 解説 第 1 単位 VBM-01-1 1406 問 2~ 問 5の解答は グレーのあみかけで示しています 本レポート問題集では テキストで学習したなかでも 特に 実務でよく使われる項目や 注意が必要なポイントについて出題しています 誤った設問については 解答を確認する前に 再度プロシージャを実行してみてください エラーが発生する場合は

More information

ギリシャ文字の読み方を教えてください

ギリシャ文字の読み方を教えてください 埼 玉 工 業 大 学 技 術 資 料 ( 小 西 克 享 ) Excel によるデジタルフィルタ-1/14 テーマ: Excel によるデジタルフィルタ 観 測 波 形 をフーリエ 変 換 してフーリエ スペクトルを 求 めたのち, 成 分 の 一 部 を 減 衰 さ せたスペクトルを 逆 フーリエ 変 換 すると, 元 の 観 測 波 形 にフィルタを 掛 けた 波 形 が 得 られ る.これをデジタルフィルタという.Excel

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション -1- -2- HTML HTML HTML 10 10 1 100 1 200 -3- Web Web -4-1. CGI URL 2. 3. OK 4. -5- ------------------------------------------------------------- - 1. 2. 3. 4. 5. -------------------------------------------------------------

More information

Title.PDF

Title.PDF WebServer Option Ver 2.0: IIS Web VisualBasic 6 MapExpert WebServer MetaWare Research WebServer Option 2.0 WebServer Option 1.0 WebServer Option Ver 2.0 MapExpert Ver 4.45 MapExpert Ver 4.45 WebServer

More information

54 5 PHP Web hellow.php 1:<?php 2: echo "Hellow, PHP!Y=n"; 3:?> echo PHP C 2: printf("hellow, PHP!Y=n"); PHP (php) $ php hellow.php Hellow, PHP! 5.1.2

54 5 PHP Web hellow.php 1:<?php 2: echo Hellow, PHP!Y=n; 3:?> echo PHP C 2: printf(hellow, PHP!Y=n); PHP (php) $ php hellow.php Hellow, PHP! 5.1.2 53 5 PHP Web Web 1 Web OS (Web) HTML Web Web Web 5.1 PHP Web PHP ( ) 5.1.1 hellow.php ( ) Hellow, PHP! PHP hellow.php PHP HTML PHP 54 5 PHP Web hellow.php 1:

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information