Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1.

Size: px
Start display at page:

Download "Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1."

Transcription

1 練習問題 1-1 Label1 Label1.Text = Label1.Text + 2 練習問題 1-2 Button2 Label1 Label1.Text = Label1.Text+ 2 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Label1.Text = Label1.Text - 2 練習問題 2-1 Dim a, h As Double a = Val(.Text) h = Val(.Text).Text = a * h / 2

2 練習問題 2-2 TextBox4 Dim a, b, h As Double a = Val(.Text) b = Val(.Text) h = Val(.Text) TextBox4.Text = (a + b) * h / 2 練習問題 2-3 Dim r As Double r = Val(.Text).Text = 4 * Math.PI * r ^ 2.Text = 4 * Math.PI * r ^ 3 / 3 練習問題 3-1 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged Dim a, b As Integer

3 a = Val(.Text) b = a Mod 2 If b = 0 Then.Text = " 偶数 " Else.Text = " 奇数 " 練習問題 3-2 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged,.TextChanged Dim a, b, c As Single a = Val(.Text) b = Val(.Text) c = (a - 100) * 0.9 If b > c * 1.1 Then.Text = " ふとりすぎです " ElseIf b < c * 0.9 Then.Text = " やせすぎです " Else.Text = " ちょうどいい体重です " 練習問題 3-3 GroupBox1 Radio RadioButton2 RadioButton3 Private Sub Radio_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Radio.CheckedChanged, RadioButton2.CheckedChanged, RadioButton3.CheckedChanged If (Radio.Checked = True) Then.Text = 5000

4 ElseIf (RadioButton2.Checked = True) Then.Text = 8000 ElseIf (RadioButton3.Checked = True) Then.Text = 練習問題 4-1 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged Dim i, n, s As Integer n = Val(.Text) s = 1 For i = 1 To n s = s * i Next.Text = s 練習問題 4-2 TextBox4 TextBox5 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged Dim i, s, limit As Integer limit = Val(.Text) Do i = i + 1 s = i *(i + 1) *(i + 2) Loop While s <= limit.text = i.text = i + 1

5 TextBox4.Text = i + 2 TextBox5.Text = s 練習問題 4-3 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged,.TextChanged Dim i, j, s, n, m As Integer n = Val(.Text) m = Val(.Text) s = 0 For i = n To m For j = 1 To 9 s = s + i * j Next j.text = s 練習問題 5-1 Dim n As Integer Dim min As Integer n =.Lines.Length Dim a(n - 1) As Integer For i = 0 To n - 1

6 a(i) = Val(.Lines(i)) min = a(0) For i = 1 To n - 1 If min > a(i) Then min = a(i).text = min 練習問題 5-2 Button2 Dim j As Integer Dim n As Integer Dim work As Integer n =.Lines.Length Dim a(n - 1) As Integer For i = 0 To n - 1 a(i) = Val(.Lines(i)) For i = 0 To n - 2 For j = i + 1 To n - 1 If a(i) > a(j) Then work = a(i) a(i) = a(j) a(j) = work Next j.text = "" For i = 0 To n - 1.Text =.Text & a(i) & vbcrlf

7 Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim j As Integer Dim n As Integer Dim work As Integer n =.Lines.Length Dim a(n - 1) As Integer For i = 0 To n - 1 a(i) = Val(.Lines(i)) For i = 0 To n - 2 For j = i + 1 To n - 1 If a(i) < a(j) Then work = a(i) a(i) = a(j) a(j) = work Next j.text = "" For i = 0 To n - 1.Text =.Text & a(i) & vbcrlf 練習問題 5-3 TextBox4 TextBox6 TextBox5 TextBox7 Dim i, j, k, data(2, 5), work(2), heikinn(2) As Integer Dim simei(5), worksimei As String For i = 0 To 5 simei(i) =.Lines(i) data(0, i) = Val(.Lines(i)) data(1, i) = Val(.Lines(i))

8 For i = 0 To 5 data(2, i) = data(0, i) + data(1, i) For i = 0 To 2 For j = 0 To 5 heikinn(i) = heikinn(i) + data(i, j) Next j heikinn(i) = heikinn(i) / 6 TextBox5.Text = heikinn(0) TextBox6.Text = heikinn(1) TextBox7.Text = heikinn(2) For i = 0 To 4 For j = i + 1 To 5 If data(2, i) < data(2, j) Then worksimei = simei(i) simei(i) = simei(j) simei(j) = worksimei For k = 0 To 2 work(k) = data(k, i) data(k, i) = data(k, j) data(k, j) = work(k) Next k Next j.text = "".Text = "".Text = "" TextBox4.Text = "" For i = 0 To 5.Text =.Text & simei(i) & vbcrlf.text =.Text & data(0, i) & vbcrlf.text =.Text & data(1, i) & vbcrlf TextBox4.Text = TextBox4.Text & data(2, i) & vbcrlf 練習問題 6-1 Button 1

9 Dim n, s, a As Integer FileOpen(1, "data.txt", OpenMode.Input) n = 0 s = 0 Do Until EOF(1) Input(1, a) n = n + 1 s = s + a Loop.Text = n.text = s / n FileClose() 練習問題 6-2 Button 1 Dim a, maxa As Integer Dim namae, maxnamae As String FileOpen(1, "data.txt", OpenMode.Input) maxnamae = "" maxa = 0 namae = "" Do Until EOF(1) Input(1, namae) Input(1, a) If (a > maxa) Then maxnamae = namae maxa = a Loop.Text = maxnamae.text = maxa FileClose()

10 練習問題 6-3 TextBox4 Button2 Public Structure seiseki <VBFixedString(12)> Public simei As String Public kokugo As Integer Public suugaku As Integer Public eigo As Integer End Structure Dim kojinseiseki As seiseki Dim fname As String SaveFileDialog1.ShowDialog() fname = SaveFileDialog1.FileName FileOpen(1, fname, OpenMode.Random,,, Len(kojinseiseki)) For i = 1 To 6 kojinseiseki.simei =.Lines(i - 1) kojinseiseki.kokugo = Val(.Lines(i - 1)) kojinseiseki.suugaku = Val(.Lines(i - 1)) kojinseiseki.eigo = Val(TextBox4.Lines(i - 1)) FilePut(1, kojinseiseki, i) Next FileClose(1) Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim fname As String OpenFileDialog1.ShowDialog() fname = OpenFileDialog1.FileName FileOpen(1, fname, OpenMode.Random,,, Len(kojinseiseki)).Text = "".Text = "".Text = "" TextBox4.Text = "" For i = 1 To 6 FileGet(1, kojinseiseki, i)

11 .Text =.Text & kojinseiseki.simei & vbcrlf.text =.Text & kojinseiseki.kokugo & vbcrlf.text =.Text & kojinseiseki.suugaku & vbcrlf TextBox4.Text = TextBox4.Text & kojinseiseki.eigo & vbcrlf FileClose(1) 練習問題 7-1 TextBox4 Dim simei(5) As String Dim data(5, 2) As Integer nyuuryoku(simei, data) keisan(data) narabikae(simei, data) hyouji(simei, data) Private Sub nyuuryoku(byref simei() As String, ByRef data(,) As Integer) For i = 0 To 5 simei(i) =.Lines(i) data(i, 0) = Val(.Lines(i)) data(i, 1) = Val(.Lines(i)) Private Sub keisan(byref data(,) As Integer) For i = 0 To 5 data(i, 2) = data(i, 0) + data(i, 1) Private Sub narabikae(byref simei() As String, ByRef data(,) As Integer) Dim i, j, k, work As Integer Dim worksimei As String For i = 0 To 4

12 For j = i + 1 To 5 If data(i, 2) < data(j, 2) Then worksimei = simei(i) simei(i) = simei(j) simei(j) = worksimei For k = 0 To 2 work = data(i, k) data(i, k) = data(j, k) data(j, k) = work Next k Next j Private Sub hyouji(byref simei() As String, ByRef data(,) As Integer).Text = "".Text = "".Text = "" TextBox4.Text = "" For i = 0 To 5.Text =.Text & simei(i) & vbcrlf.text =.Text & data(i, 0) & vbcrlf.text =.Text & data(i, 1) & vbcrlf TextBox4.Text = TextBox4.Text & data(i, 2) & vbcrlf 練習問題 7-2 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged Dim a As Integer a = Val(.Text).Text = hantei(a) Function hantei(byval a As Integer) As String If a >= 80 Then

13 hantei = "A" ElseIf a >= 70 Then hantei = "B" ElseIf a >= 60 Then hantei = "C" Else hantei = "D" End Function 練習問題 7-3 TextBox4 Private Sub _TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles.TextChanged,.TextChanged,.TextChanged Dim k, a As Double Dim n As Integer a = Val(.Text) k = Val(.Text) n = Val(.Text) TextBox4.Text = fukuri(a, k, n) Function fukuri(byval a As Double, ByVal k As Double, ByVal n As Integer) As Integer For i = 1 To n a = a *(1 + k / 100) fukuri = a End Function

14 練習問題 8-1 PictureBox1 Dim a As Graphics = PictureBox1.CreateGraphics() For i = 0 To 330 Step 30 a.drawpie(pens.red, 0, 0, 100, 100, i, 30) 練習問題 8-2 PictureBox1 Dim a As Graphics = PictureBox1.CreateGraphics() Dim i, xs As Integer Dim s As Double For i = 0 To 720 s = i / 360 * 2 * Math.PI xs = -50*(Math.Sin(s) + 1 / 3 * Math.Sin(3 * s) + 1 / 5 * Math.Sin(5 * s)) + 60 a.fillrectangle(brushes.red, i, xs, 2, 2)

15 練習問題 8-3 Button2 PictureBox1 PictureBox2 Button3 Button4 Dim fname As String OpenFileDialog1.Filter = "Bitmap Image *.bmp JPeg Image *.jpg Gif Image *.gif" OpenFileDialog1.ShowDialog() fname = OpenFileDialog1.FileName Dim bmap As Bitmap = New Bitmap(fname) PictureBox1.Image = bmap PictureBox2.Size = PictureBox1.Size Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim fname As String OpenFileDialog1.Filter = "Bitmap Image *.bmp JPeg Image *.jpg Gif Image *.gif" OpenFileDialog1.ShowDialog() fname = OpenFileDialog1.FileName Dim bmap As Bitmap = New Bitmap(fname) PictureBox2.Image = bmap Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim bmpa As Bitmap = PictureBox1.Image Dim bmpb As Bitmap = PictureBox2.Image Dim iroa As Color Dim heikin As Integer Dim j As Integer For i = 0 To bmpa.width - 1 For j = 0 To bmpa.height - 1 iroa = bmpa.getpixel(i, j) heikin = Int((Val(iroa.R) + Val(iroa.G) + Val(iroa.B)) / 3) If (heikin < 250) Then bmpb.setpixel(i, j, iroa) Next

16 Next PictureBox2.Image = bmpb Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Dim fname As String SaveFileDialog1.Filter = "Bitmap Image *.bmp" SaveFileDialog1.ShowDialog() fname = SaveFileDialog1.FileName Dim bmap As Bitmap bmap = PictureBox2.Image bmap.save(fname, System.Drawing.Imaging.ImageFormat.Bmp) 練習問題 9-1 Label1 PictureBox1 PictureBox3 PictureBox5 PictureBox7 PictureBox9 PictureBox11 PictureBox2 PictureBox4 PictureBox6 PictureBox8 PictureBox10 PictureBox12 Timer1 Enable を True Interval を 700 PictureBox1 から PictureBox6 の上に PictureBox7 から PictureBox12 を重ねる

17 Dim a As Integer Dim pic(6) As PictureBox Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load pic(1) = PictureBox7 pic(2) = PictureBox8 pic(3) = PictureBox9 pic(4) = PictureBox10 pic(5) = PictureBox11 pic(6) = PictureBox12 For i = 1 To 6 pic(i).visible = False Randomize() a = Int(Rnd() * 6) + 1 pic(a).visible = True Private Sub PictureBox7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox7.Click, PictureBox8.Click, PictureBox9.Click, PictureBox10.Click, PictureBox11.Click, PictureBox12.Click Label1.Text = Val(Label1.Text) + 1 Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick pic(a).visible = False a = Int(Rnd() * 6 + 1) pic(a).visible = True

18 練習問題 9-2 TextBox 2 TextBox4 TextBox7 TextBox 5 TextBox 8 TextBox6 TextBox9 Button4 Button2 Button3 Label1 Timer1 Enable を True Interval を 700 Dim f1 As Integer Dim f2 As Integer Dim f3 As Integer Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Randomize() Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click Label1.Text = Label1.Text - 1 f1 = 1 f2 = 1 f3 = 1 If (f1 = 1) Then f1 = 0 hantei() Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If (f2 = 1) Then f2 = 0

19 hantei() Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click If (f3 = 1) Then f3 = 0 hantei() Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick If (f1 = 1) Then.Text = Int(Rnd() * 9) TextBox4.Text = Int(Rnd() * 9) TextBox7.Text = Int(Rnd() * 9) If (f2 = 1) Then.Text = Int(Rnd() * 9) TextBox5.Text = Int(Rnd() * 9) TextBox8.Text = Int(Rnd() * 9) If (f3 = 1) Then.Text = Int(Rnd() * 9) TextBox6.Text = Int(Rnd() * 9) TextBox9.Text = Int(Rnd() * 9) Private Sub hantei() If (f1 = 0 And f2 = 0 And f3 = 0) Then If (.Text =.Text And.Text =.Text) Then Label1.Text = Label1.Text + 50 If (.Text = 7) Then Label1.Text = Label1.Text + 50 If (TextBox4.Text = TextBox5.Text And TextBox4.Text = TextBox6.Text) Then Label1.Text = Label1.Text + 50 If (TextBox4.Text = 7) Then Label1.Text = Label1.Text + 50 If (TextBox7.Text = TextBox8.Text And TextBox7.Text = TextBox9.Text) Then Label1.Text = Label1.Text + 50 If (TextBox7.Text = 7) Then Label1.Text = Label1.Text + 50

20 If (.Text = TextBox5.Text And.Text = TextBox9.Text) Then Label1.Text = Label1.Text + 50 If (.Text = 7) Then Label1.Text = Label1.Text + 50 If (.Text = TextBox5.Text And.Text = TextBox7.Text) Then Label1.Text = Label1.Text + 50 If (.Text = 7) Then Label1.Text = Label1.Text + 50

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M.

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M. フラクタル 1 ( ジュリア集合 ) PictureBox 1 TextBox 1 TextBox 2 解説 : ジュリア集合 ( 自己平方フラクタル ) TextBox 3 複素平面 (= PictureBox1 ) 上の点 ( に対して, x, y) 初期値 ( 複素数 ) z x iy を決める. 0 k 1 z k 1 f ( z) z 2 k a 写像 ( 複素関数 ) (a : 複素定数

More information

โปรแกรมช วยทดสอบหม อแปลงกระแส

โปรแกรมช วยทดสอบหม อแปลงกระแส โปรแกรมช วยทดสอบหม อแปลงกระแส 1.เมน ของโปรแกรม ภาพท 1 หน าเมน ของโปรแกรม Public Class frmmain Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

More information

Mr.Khaled Anwar ( )

Mr.Khaled Anwar ( ) The Rnd() function generates random numbers. Every time Rnd() is executed, it returns a different random fraction (greater than or equal to 0 and less than 1). If you end execution and run the program

More information

Else. End If End Sub End Class. PDF created with pdffactory trial version

Else. End If End Sub End Class. PDF created with pdffactory trial version Dim a, b, r, m As Single Randomize() a = Fix(Rnd() * 13) b = Fix(Rnd() * 13) Label1.Text = a Label3.Text = b TextBox1.Clear() TextBox1.Focus() Private Sub Button2_Click(ByVal sender As System.Object, ByVal

More information

To enter the number in decimals Label 1 To show total. Text:...

To enter the number in decimals Label 1 To show total. Text:... Visual Basic tutorial - currency converter We will use visual studio to create a currency converter where we can convert a UK currency pound to other currencies. This is the interface for the application.

More information

Revision for Final Examination (Second Semester) Grade 9

Revision for Final Examination (Second Semester) Grade 9 Revision for Final Examination (Second Semester) Grade 9 Name: Date: Part 1: Answer the questions given below based on your knowledge about Visual Basic 2008: Question 1 What is the benefit of using Visual

More information

In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result.

In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result. Simple Calculator In this tutorial we will create a simple calculator to Add/Subtract/Multiply and Divide two numbers and show a simple message box result. Let s get started First create a new Visual Basic

More information

Unit 3. Lesson Designing User Interface-2. TreeView Control. TreeView Contol

Unit 3. Lesson Designing User Interface-2. TreeView Control. TreeView Contol Designing User Interface-2 Unit 3 Designing User Interface-2 Lesson 3.1-3 TreeView Control A TreeView control is designed to present a list in a hierarchical structure. It is similar to a directory listing.

More information

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants

IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants IMS1906: Business Software Fundamentals Tutorial exercises Week 5: Variables and Constants These notes are available on the IMS1906 Web site http://www.sims.monash.edu.au Tutorial Sheet 4/Week 5 Please

More information

My first game. 'function which adds objects with bug tag to bugarray array. Saturday, November 23, :06 AM

My first game. 'function which adds objects with bug tag to bugarray array. Saturday, November 23, :06 AM My first game Saturday, November 23, 2013 5:06 AM Public Class Form1 Dim moveright As Boolean = False Dim moveup As Boolean = False Dim moveleft As Boolean = False Dim movedown As Boolean = False Dim score

More information

超音波モータ制御プログラムの作成 (v1.2.1)

超音波モータ制御プログラムの作成 (v1.2.1) 超音波モータ制御プログラムの作成 (v1.2.1) 2008 年 11 月 28 日 Masaaki MATSUO 構成機器 モータ本体 : フコク ロータリーエンコーダー内蔵型超音波モータ USB-60E モータ制御部 : フコク 位置決制御ドライバ DCONT-3-60 (SD13) コントローラ : Interface 2 軸絶縁パルスモーションコントローラ ( 直線補間エンコーダ入力 5V)

More information

S.2 Computer Literacy Question-Answer Book

S.2 Computer Literacy Question-Answer Book S.2 C.L. Half-yearly Examination (2012-13) 1 12-13 S.2 C.L. Question- Answer Book Hong Kong Taoist Association Tang Hin Memorial Secondary School 2012-2013 Half-yearly Examination S.2 Computer Literacy

More information

DO NOT COPY AMIT PHOTOSTUDIO

DO NOT COPY AMIT PHOTOSTUDIO AMIT PHOTOSTUDIO These codes are provided ONLY for reference / Help developers. And also SUBMITTED IN PARTIAL FULFILLMENT OF THE REQUERMENT FOR THE AWARD OF BACHELOR OF COMPUTER APPLICATION (BCA) All rights

More information

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism

Objectives. After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Polymorphism Objectives After completing this topic, the students will: Understand of the concept of polymorphism Know on How to implement 2 types of polymorphism Definition Polymorphism provides the ability

More information

"!#... )*! "!# )+, -./ 01 $

!#... )*! !# )+, -./ 01 $ Email engauday@hotmail.com! "!#... $ %&'... )*! "!# )+, -./ 01 $ ) 1+ 2#3./ 01 %.. 7# 89 ; )! 5/< 3! = ;, >! 5 6/.?

More information

VB.NET Programs. ADO.NET (insert, update, view records)

VB.NET Programs. ADO.NET (insert, update, view records) ADO.NET (insert, update, view records) VB.NET Programs Database: Student Table : Studtab (adno, name, age, place) Controls: DataGridView, Insert button, View button, Update button, TextBox1 (for Admission

More information

Interacting with External Applications

Interacting with External Applications Interacting with External Applications DLLs - dynamic linked libraries: Libraries of compiled procedures/functions that applications link to at run time DLL can be updated independently of apps using them

More information

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources

FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources FOR 240 Homework Assignment 4 Using DBGridView and Other VB Controls to Manipulate Database Introduction to Computing in Natural Resources This application demonstrates how a DataGridView control can be

More information

Computing Science Unit 1

Computing Science Unit 1 Computing Science Unit 1 Software Design and Development Programming Practical Tasks Business Information Technology and Enterprise Contents Input Validation Find Min Find Max Linear Search Count Occurrences

More information

VISUAL BASIC II CC111 INTRODUCTION TO COMPUTERS

VISUAL BASIC II CC111 INTRODUCTION TO COMPUTERS VISUAL BASIC II CC111 INTRODUCTION TO COMPUTERS Intended Learning Objectives Able to build a simple Visual Basic Application. 2 The Sub Statement Private Sub ControlName_eventName(ByVal sender As System.Object,

More information

Visual Basic: Opdracht Structuur

Visual Basic: Opdracht Structuur Visual Basic: Opdracht Structuur HoofdMenu.vb SubMenu_Kwadraat.vb Form1.vb Form2.vb Submenu_Som.vb Form3.vb Form4.vb SubMenu_Gem.vb Form5.vb Form6.vb Form10.vb SubMenu_Naam.vb Form7.vb Form11.vb Form8.vb

More information

A Complete Tutorial for Beginners LIEW VOON KIONG

A Complete Tutorial for Beginners LIEW VOON KIONG I A Complete Tutorial for Beginners LIEW VOON KIONG Disclaimer II Visual Basic 2008 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been

More information

Form Connection. Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel

Form Connection. Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel Form Connection Imports System Imports System.Threading Imports System.IO.Ports Imports System.ComponentModel Public Class connection '------------------------------------------------ Dim myport As Array

More information

Programming with Visual Studio Higher (v. 2013)

Programming with Visual Studio Higher (v. 2013) Programming with Visual Studio Higher (v. 2013) Contents/Requirements Checklist Multiple selection: using ifs & case While Loops Using arrays Filling arrays Displaying array contents Types of variables:

More information

C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions

C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions C4.3, 4 Lab: Conditionals - Select Statement and Additional Input Controls Solutions Between the comments included with the code and the code itself, you shouldn t have any problems understanding what

More information

Learning VB.Net. Tutorial 10 Collections

Learning VB.Net. Tutorial 10 Collections Learning VB.Net Tutorial 10 Collections Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it.

More information

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 )

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち この雑誌に載ってます! 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) このミステリー (?) の中でメイントリックに使われました! 主な文献 Dawei Xu, Takashi

More information

Preparing Information Design-Oriented. Posters. easy to. easy to. See! Understand! easy to. Convey!

Preparing Information Design-Oriented. Posters. easy to. easy to. See! Understand! easy to. Convey! Preparing Information Design-Oriented Posters easy to Convey! easy to See! easy to Understand! Introduction What is the purpose of a presentation? It is to convey accurately what you want to convey to

More information

LAMPIRAN A: Listing Program

LAMPIRAN A: Listing Program 67 1. Form Menu Utama LAMPIRAN A: Listing Program Public Class MScreen Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Me.Hide() Form1.Show()

More information

Code: Week 13. Write a Program to perform Money Conversion. Public Class Form1

Code: Week 13. Write a Program to perform Money Conversion. Public Class Form1 Write a Program to perform Money Conversion. Week 13 Code: Public Class Form1 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Dim a As Double a = TextBox1.Text If ComboBox1.SelectedItem

More information

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~ LESSON GOAL: Can read about movies. 映画に関する文章を読めるようになろう Choose the word to match the underlined word. 下線の単語から考えて どんな映画かを言いましょう 1. The (thriller movie, sports video) I watched yesterday was scary. 2. My

More information

Lab 3 The High-Low Game

Lab 3 The High-Low Game Lab 3 The High-Low Game LAB GOALS To develop a simple windows-based game named High-Low using VB.Net. You will use: Buttons, Textboxes, Labels, Dim, integer, arithmetic operations, conditionals [if-then-else],

More information

Androidプログラミング 2 回目 迫紀徳

Androidプログラミング 2 回目 迫紀徳 Androidプログラミング 2 回目 迫紀徳 前回の復習もかねて BMI 計算アプリを作ってみよう! 2 3 BMI の計算方法 BMI = 体重 [kg] 身長 [m] 2 状態も表示できると GOOD 状態低体重 ( 痩せ型 ) 普通体重肥満 (1 度 ) 肥満 (2 度 ) 肥満 (3 度 ) 肥満 (4 度 ) 指標 18.5 未満 18.5 以上 25 未満 25 以上 30 未満 30

More information

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する 2018/03/26 10:04 - Tamura Shinji ステータス : 新規開始日 : 2018/03/26 優先度 : 通常期日 : 担当者 : 進捗率 : 0% カテゴリ : 予定工数 : 0.00 時間 対象バージョン : 作業時間 : 0.00 時間

More information

Dream the sky. Make it yours.

Dream the sky. Make it yours. Dream the sky. Make it yours. Index Please note this is an interactive (so clickable) guideline. Visual identity Logo Visual elements Imagery Visual identity Logo Visual elements Imagery Visual identity

More information

Function: function procedures and sub procedures share the same characteristics, with

Function: function procedures and sub procedures share the same characteristics, with Function: function procedures and sub procedures share the same characteristics, with one important difference- function procedures return a value (e.g., give a value back) to the caller, whereas sub procedures

More information

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 今日の予定 このミステリー (?) の中でメイントリックに使われました! 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 Some nets are available at http://www.jaist.ac.jp/~uehara/etc/origami/nets/index-e.html

More information

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan IRS16: 4 byte ASN Version: 1.0 Date: April 22, 2008 Cisco Systems hkanemat@cisco.com 1 目次 4 byte ASN の対応状況 運用での変更点 2 4 byte ASN の対応状況 3 4 byte ASN の対応状況 IOS XR 3.4 IOS: 12.0S 12.2SR 12.2SB 12.2SX 12.5T

More information

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3)

CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration. MIS 15 Introduction to Business Programming. Programming Assignment 3 (P3) CALIFORNIA STATE UNIVERSITY, SACRAMENTO College of Business Administration MIS 15 Introduction to Business Programming Programming Assignment 3 (P3) Points: 50 Due Date: Tuesday, May 10 The purpose of

More information

J の Lab システムの舞台裏 - パワーポイントはいらない -

J の Lab システムの舞台裏 - パワーポイントはいらない - JAPLA 研究会資料 2011/6/25 J の Lab システムの舞台裏 - パワーポイントはいらない - 西川利男 学会の発表などでは 私は J の Lab を活用している 多くの人が使っているパワーポイントなぞ使う気にはならない J の Lab システムは会場の大きなスクリーンで説明文書が出来ることはもちろんだが システム自身が J の上で動いていることから J のプログラムが即実行出来て

More information

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic 構造体 構造体のサイズ Marshal.SizeOf メソッド 整数型等型のサイズが定義されて居る構造体の場合 Marshal.SizeOf メソッドを使う事に依り型のサイズ ( バイト数 ) を取得する事が出来る 引数に値やオブジェクトを直接指定するか typeof や GetType で取得した型情報を渡す事に依り 其の型のサイズを取得する事が出来る 下記のプログラムを実行する事に依り Marshal.SizeOf

More information

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K.

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K. Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS Ken ichiro Hashimoto Brocade Communications Systems, K.K. September, 14 th, 2009 BGP Malformed AS_PATH そもそもうちは as0 を出せるのか? NetIron MLX-4 Router(config-bgp)#router

More information

Learning VB.Net. Tutorial 19 Classes and Inheritance

Learning VB.Net. Tutorial 19 Classes and Inheritance Learning VB.Net Tutorial 19 Classes and Inheritance Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you

More information

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara A-1 LISTING PROGRAM mainform.vb Imports System.IO Public Class mainform Private Sub mainform_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load enkripsirb.checked = True

More information

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485)

VISUAL BASIC PROGRAMMING (44) Technical Task KEY. Regional 2013 TOTAL POINTS (485) 5 Pages VISUAL BASIC PROGRAMMING (44) Technical Task KEY Regional 2013 TOTAL POINTS (485) Graders: Please double-check and verify all scores! Property of Business Professionals of America. May be reproduced

More information

COPYRIGHTED MATERIAL. Taking Web Services for a Test Drive. Chapter 1. What s a Web Service?

COPYRIGHTED MATERIAL. Taking Web Services for a Test Drive. Chapter 1. What s a Web Service? Chapter 1 Taking Web Services for a Test Drive What s a Web Service? Understanding Operations That Are Well Suited for Web Services Retrieving Weather Information Using a Web Service 101 Retrieving Stock

More information

Module mjlgsys. End Module. Imports MySql.Data.MySqlClient. Public Class frmgsys 'SQL 関連の定数宣言はフォーム間共通にしておく

Module mjlgsys. End Module. Imports MySql.Data.MySqlClient. Public Class frmgsys 'SQL 関連の定数宣言はフォーム間共通にしておく Module mjlgsys Public Wkhdr As String Public Myhdr As String Public Setno As String Public Custm As String Public Umflg As Long 起動ホルダー ホルダー指定 電話番号 お客様名前 更新確認用 Public TEL_NO As String 電話番号 Public SEQ_NO

More information

Serial-out Color Sensor. Overview. Features

Serial-out Color Sensor. Overview. Features Visit us @ www.thearyatechnologies.com Email: aryaprotech@gmail.com / info@thearyatechnologies.com Contact us@ 0253-2512131 Serial-out Color Sensor Overview Color sensor identifies primary colors (Red,

More information

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68 Synchronization with shared memory AMANO, Hideharu Textbook pp.60-68 Fork-join: Starting and finishing parallel processes fork Usually, these processes (threads) can share variables fork join Fork/Join

More information

Lecture 4 Branch & cut algorithm

Lecture 4 Branch & cut algorithm Lecture 4 Branch & cut algorithm 1.Basic of branch & bound 2.Branch & bound algorithm 3.Implicit enumeration method 4.B&B for mixed integer program 5.Cutting plane method 6.Branch & cut algorithm Slide

More information

A Second Visual BASIC Application : Greetings

A Second Visual BASIC Application : Greetings The Greetings Program A Second Visual BASIC Application : Greetings The following instructions take you through the steps to create a simple application. A greeting is displayed in one of four different

More information

Disclaimer. Trademarks. Liability

Disclaimer. Trademarks. Liability Disclaimer II Visual Basic 2010 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been authorized, sponsored, or otherwise approved by Microsoft

More information

(0,0) (600, 400) CS109. PictureBox and Timer Controls

(0,0) (600, 400) CS109. PictureBox and Timer Controls CS109 PictureBox and Timer Controls Let s take a little diversion and discuss how to draw some simple graphics. Graphics are not covered in the book, so you ll have to use these notes (or the built-in

More information

Learning VB.Net. Tutorial 17 Classes

Learning VB.Net. Tutorial 17 Classes Learning VB.Net Tutorial 17 Classes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it. If

More information

C# Continued. Learning Objectives:

C# Continued. Learning Objectives: Learning Objectives: C# Continued Open File Dialog and Save File Dialog File Input/Output Importing Pictures from Files and saving Bitmaps Reading and Writing Text Files Try and Catch Working with Strings

More information

Unit 4. Lesson 4.1. Managing Data. Data types. Introduction. Data type. Visual Basic 2008 Data types

Unit 4. Lesson 4.1. Managing Data. Data types. Introduction. Data type. Visual Basic 2008 Data types Managing Data Unit 4 Managing Data Introduction Lesson 4.1 Data types We come across many types of information and data in our daily life. For example, we need to handle data such as name, address, money,

More information

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved.

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved. Zabbix ログ解析方法 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ Zabbix ログ解析方法 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ 2 自己紹介 MIRACLE ZBXサポート担当 Zabbixソースコード調査 ドキュメント作成 ( 当社ブログも執筆 ) ときどき新規機能追加もしたりします 4.0 へ向けての機能紹介等

More information

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original.

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original. 暗い Lena トーンマッピング とは? tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) / 2 original 元の Lena 明るい Lena tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) tone mapped 画素値 ( ) output

More information

Developing Student Programming and Problem-Solving Skills With Visual Basic

Developing Student Programming and Problem-Solving Skills With Visual Basic t e c h n o l o g y Del Siegle, Ph.D. Developing Student Programming and Problem-Solving Skills With Visual Basic TThree decades have passed since computers were first introduced into American classrooms.

More information

Yamaha Steinberg USB Driver V for Mac Release Notes

Yamaha Steinberg USB Driver V for Mac Release Notes Yamaha Steinberg USB Driver V1.10.2 for Mac Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Peering 101 August 2017 TPF Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Who is Walt Wollny? Hurricane Electric AS6939 3 years Director Interconnection Strategy supporting the

More information

DürrConnect the clever connection. The quick connection with the Click

DürrConnect the clever connection. The quick connection with the Click DürrConnect the clever connection The quick connection with the Click 90d Elbow Securing clip 45d Elbow O-rings Double plug Plug D36 Double socket Double socket with valve カチッ と接続早い 確実 便利 新しく開発された接続システム

More information

Unit 4 Advanced Features of VB.Net

Unit 4 Advanced Features of VB.Net Dialog Boxes There are many built-in dialog boxes to be used in Windows forms for various tasks like opening and saving files, printing a page, providing choices for colors, fonts, page setup, etc., to

More information

WEEK 1. Event: Tick: Occurs when the specified timer interval has elapsed and the timer is enabled.

WEEK 1. Event: Tick: Occurs when the specified timer interval has elapsed and the timer is enabled. WEEK 1 Timer: A Timer is used to raise an event at user-defined intervals. It is optimized for use in Windows Forms applications. Timer is used to control and manage events that are time related. For example:

More information

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix 1 2017 Citrix Cloud Connector 徹底解説 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア 小宮山 哲司 (Satoshi Komiyama) 2 2017 Citrix このセッションのもくじ Cloud Connector 徹底解説 Cloud Connector

More information

ก Microsoft Visual Studio 2008

ก Microsoft Visual Studio 2008 ก 58 ก ก ก ก ก 58 59 ก Microsoft Visual Studio 2008 1. DVD ก MSVS2008 ก MSVS2008 ก ก MSVS2008 ก ก 180 DVD DVD ก MSVS2008 ก ก Install Visual Studio 2008 2. ก ก ก ก ก Next 3. ก ก Options Page ก Custom ก

More information

Final Exam 7:00-10:00pm, April 14, 2008

Final Exam 7:00-10:00pm, April 14, 2008 Name:, (last) (first) Student Number: Section: Instructor: _P. Cribb_ L. Lowther_(circle) York University Faculty of Science and Engineering Department of Computer Science and Engineering Final Exam 7:00-10:00pm,

More information

PROGRAMMING ASSIGNMENT: MOVIE QUIZ

PROGRAMMING ASSIGNMENT: MOVIE QUIZ PROGRAMMING ASSIGNMENT: MOVIE QUIZ For this assignment you will be responsible for creating a Movie Quiz application that tests the user s of movies. Your program will require two arrays: one that stores

More information

Introduction to Information and Communication Technology (a)

Introduction to Information and Communication Technology (a) Introduction to Information and Communication Technology (a) 6 th week: 1.5 Information security and management Kazumasa Yamamoto Dept. Computer Science & Engineering Introduction to ICT(a) 6th week 1

More information

Software for Auto-Generating Electrode Block Order Sheet: Study Case in Mold Machining Workshop

Software for Auto-Generating Electrode Block Order Sheet: Study Case in Mold Machining Workshop Journal of Mechanical Engineering and Mechatronics Submitted : 2016-10-03 ISSN: 2527-6212, Vol. 1 No. 2, pp. 106-117 Accepted : 2016-10-07 2016 Pres Univ Press Publication, Indonesia Software for Auto-Generating

More information

A 2-by-6-Button Japanese Software Keyboard for Tablets

A 2-by-6-Button Japanese Software Keyboard for Tablets A 2-by-6-Button Japanese Software Keyboard for Tablets Kei Takei and Hiroshi Hosobe Faculty of Computer and Information Sciences, Hosei University, Tokyo, Japan kei.takei@hosobe.cis.k.hosei.ac.jp, hosobe@acm.org

More information

Disclaimer. Trademarks. Liability

Disclaimer. Trademarks. Liability Disclaimer II Visual Basic 2010 Made Easy- A complete tutorial for beginners is an independent publication and is not affiliated with, nor has it been authorized, sponsored, or otherwise approved by Microsoft

More information

Apéndice E Código de software de ayuda en Visual Basic 2005 Public Class Form1

Apéndice E Código de software de ayuda en Visual Basic 2005 Public Class Form1 Apéndice E Código de software de ayuda en Visual Basic 2005 Public Class Form1 Dim checkcont As Integer = 0, foto = 0 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

More information

ﻢﻗ هﺎﮕﺸﻧاد ﻊﻳﺎﻨﺻ ﻲﺳﺪﻨﻬﻣ هوﺮﮔ س : رد يﺎﻫﺖ ﺷاددﺎﻳ ﺮﺗﻮﻴﭙﻣﺎﻛ ﻲ ﺴﻳﻮﻧﻪ ﻣﺎﻧﺮﺑ V

ﻢﻗ هﺎﮕﺸﻧاد ﻊﻳﺎﻨﺻ ﻲﺳﺪﻨﻬﻣ هوﺮﮔ س : رد يﺎﻫﺖ ﺷاددﺎﻳ ﺮﺗﻮﻴﭙﻣﺎﻛ ﻲ ﺴﻳﻮﻧﻪ ﻣﺎﻧﺮﺑ V : (Visual Basic 2010) : 92 1 3 6 8 54 (event-driven) (visual) Visual Basic : : 2 . Visual Basic 2010 :.. VB Visual Microsoft Office Visual Basic : ( 1 4) 4 6 7 3 :. 2010. flash memory pdf : ) ( ( ). ).

More information

Check out the demo video of this application so you know what you will be making in this tutorial.

Check out the demo video of this application so you know what you will be making in this tutorial. Visual Basic - System Information Viewer Welcome to our special tutorial of visual basic. In this tutorial we will use Microsoft visual studio 2010 version. You can download it for free from their website.

More information

Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m. Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m

Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m. Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m C# property method Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 0m Radius= 10 cm, Color= Red, Weight= 200g, X= 3m, Y= 5m, Z= 2m Radius= 10 cm, Color= Blue, Weight= 200g, X= 3m, Y= 5m, Z= 0m

More information

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.   1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

More information

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu Centralized (Indirect) switching networks Computer Architecture AMANO, Hideharu Textbook pp.92~130 Centralized interconnection networks Symmetric: MIN (Multistage Interconnection Networks) Each node is

More information

Computer Programming I (Advanced)

Computer Programming I (Advanced) Computer Programming I (Advanced) 7 th week Kazumasa Yamamoto Dept. Comp. Sci. & Eng. Computer Programming I (Adv.) 7th week 1 Exercise of last week 1. Sorting by bubble sort Compare the bubble sort with

More information

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3)

Herefordshire College of Technology Centre Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Student: Candidate Number: Assessor: Len Shand Herefordshire College of Technology Centre 24150 Edexcel BTEC Level 3 Extended Diploma in Information Technology (Assignment 1 of 3) Course: Unit: Title:

More information

...015\Projects\Two_Channel_V1.0\Two_Channel_V1.0\Form1.vb 1

...015\Projects\Two_Channel_V1.0\Two_Channel_V1.0\Form1.vb 1 ...015\Projects\Two_Channel_V1.0\Two_Channel_V1.0\Form1.vb 1 Imports System.IO.Ports Public Class Form1 Dim comport As String Dim receiveddata As String = "" Dim command_app_1 As String = "T,1,500,500>"

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. SC-02L の SAR / About SAR of SC-02L ( 本語 ) この機種 SC-02L の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライ ンに適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. Z-01K の SAR / About SAR of Z-01K ( 本語 ) この機種 Z-01K の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライン に適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

: CREATING WEB BASED APPLICATIONS FOR INSTRUMENT DATA TRANSFER USING VISUAL STUDIO.NET

: CREATING WEB BASED APPLICATIONS FOR INSTRUMENT DATA TRANSFER USING VISUAL STUDIO.NET 2006-938: CREATING WEB BASED APPLICATIONS FOR INSTRUMENT DATA TRANSFER USING VISUAL STUDIO.NET David Hergert, Miami University American Society for Engineering Education, 2006 Page 11.371.1 Creating Web

More information

Year 12 : Visual Basic Tutorial.

Year 12 : Visual Basic Tutorial. Year 12 : Visual Basic Tutorial. STUDY THIS Input and Output (Text Boxes) The three stages of a computer process Input Processing Output Data is usually input using TextBoxes. [1] Create a new Windows

More information

System Analysis and Design

System Analysis and Design System Analysis and Design LAB RECORD-INFS -280/L Information Systems Department University of Nizwa, Sultanate of Oman Table of Contents Task. No: Title Page Nos. Date 1) VB Text box and Message Button

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.9.11 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

'The following GUID is for the ID of the typelib if this project is exposed to COM <Assembly: Guid("8b a5-46bb-a6a9-87b4949d1f4c")>

'The following GUID is for the ID of the typelib if this project is exposed to COM <Assembly: Guid(8b a5-46bb-a6a9-87b4949d1f4c)> LAMPIRAN A : LISTING PROGRAM Imports System Imports System.Reflection Imports System.Runtime.InteropServices ' General Information about an assembly is controlled through the following ' set of attributes.

More information

1. Create your First VB.Net Program Hello World

1. Create your First VB.Net Program Hello World 1. Create your First VB.Net Program Hello World 1. Open Microsoft Visual Studio and start a new project by select File New Project. 2. Select Windows Forms Application and name it as HelloWorld. Copyright

More information

Running the Altair SIMH from.net programs

Running the Altair SIMH from.net programs Running the Altair SIMH from.net programs The Altair SIMH simulator can emulate a wide range of computers and one of its very useful features is that it can emulate a machine running 50 to 100 times faster

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.10.4 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Methods to Detect Malicious MS Document File using File Structure Inspection

Methods to Detect Malicious MS Document File using File Structure Inspection MS 1,a) 2,b) 2 MS Rich Text Compound File Binary MS MS MS 98.4% MS MS Methods to Detect Malicious MS Document File using File Structure Inspection Abstract: Today, the number of targeted attacks is increasing,

More information

Learning VB.Net. Tutorial 15 Structures

Learning VB.Net. Tutorial 15 Structures Learning VB.Net Tutorial 15 Structures Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple applications, hope you enjoy it.

More information

Modern editor-independent development environment for PHP

Modern editor-independent development environment for PHP エディタ中立な PHP 開発環境の現在 Modern editor-independent development environment for PHP 2018-11-23 Akiba Tokyo, Japan VimConf 2018 #vimconf 日本語でおk 筆者の英語は残念なので 発表済みの日本語資料を 先に読むことをおすすめ Who am I...? aka @tadsan Kenta

More information

API サーバの URL. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM "

API サーバの URL. <?xml version=1.0 encoding=utf-8?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM Policy Compliance PC スキャン結果の XML Policy Compliance(PC) スキャンの結果は ユーザインタフェースのスキャン履歴リストから XML 形式でダウンロードできます UI からダウンロードした XML 形式の PC スキャン結果には その他のサポートされている形式 (PDF HTML MHT および CSV) の PC スキャン結果と同じ内容が表示されます

More information

Analysis on the Multi-stakeholder Structure in the IGF Discussions

Analysis on the Multi-stakeholder Structure in the IGF Discussions Voicemail & FAX +1-650-653-2501 +81-3-4496-6014 m-yokozawa@i.kyoto-u.ac.jp http://yokozawa.mois.asia/ Analysis on the Multi-stakeholder Structure in the IGF 2008-2013 Discussions February 22, 2014 Shinnosuke

More information

Saki is a Japanese high school student who/ has just started to study/ in the US.//

Saki is a Japanese high school student who/ has just started to study/ in the US.// L3 gr8 or great? Part 1 Saki is a Japanese high school student who/ has just started to study/ in the US.// Recently,/ she received/ the following cellphone e-mail.// It says that/ her friends are going

More information

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.  1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

More information

Verify99. Axis Systems

Verify99. Axis Systems Axis Systems Axis Systems Mission Axis Systems, Inc. is a technology leader in the logic design verification market. Founded in 1996, the company offers breakthrough technologies and high-speed simulation

More information