Code: Write a Program for perform Money Conversion. Public Class Form1

Size: px
Start display at page:

Download "Code: Write a Program for perform Money Conversion. Public Class Form1"

Transcription

1 Write a Program for perform Money Conversion. Code: Public Class Form1 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Dim a As Double a = TextBox1.Text If ComboBox1.SelectedItem = "Rupees" And ComboBox2.SelectedItem = "Doller" Then Label4.Text = a * & "$" ElseIf ComboBox1.SelectedItem = "Rupees" And ComboBox2.SelectedItem = "OMR" Then Label4.Text = a * & "OMR" ElseIf ComboBox1.SelectedItem = "Rupees" And ComboBox2.SelectedItem = "Yen" Then Label4.Text = a * 42 & "Y" ElseIf ComboBox1.SelectedItem = "Doller" And ComboBox2.SelectedItem = "Rupees" Then Label4.Text = a * 68 & "R" ElseIf ComboBox1.SelectedItem = "Doller" And ComboBox2.SelectedItem = "OMR" Then Label4.Text = a * 0.39 & "OMR" ElseIf ComboBox1.SelectedItem = "Doller" And ComboBox2.SelectedItem = "Yen" Then Label4.Text = a / 31 & "y" ElseIf ComboBox1.SelectedItem = "OMR" And ComboBox2.SelectedItem = "Rupees" Then Label4.Text = a * 176 & "R" ElseIf ComboBox1.SelectedItem = "OMR" And ComboBox2.SelectedItem = "Doller" Then Label4.Text = a * 2.6 & "$" ElseIf ComboBox1.SelectedItem = "OMR" And ComboBox2.SelectedItem = "Yen" Then Label4.Text = a * 47 & "Y" ElseIf ComboBox1.SelectedItem = "Yen" And ComboBox2.SelectedItem = "Rupees" Then Label4.Text = a / 34 & "R" ElseIf ComboBox1.SelectedItem = "Yen" And ComboBox2.SelectedItem = "Doller" Then Label4.Text = a / 35 & "$" ElseIf ComboBox1.SelectedItem = "Yen" And ComboBox2.SelectedItem = "OMR" Then Label4.Text = a / 36 & "Z" Else : ComboBox1.SelectedItem = ComboBox2.SelectedItem = "OMR"

2 MsgBox("You Select Same Currency") End Class Design & Develop an application for facilitating purchasing order. Value came from run time not design time. Code: Public Class Form1 Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load cmb_cars.items.add("car1") cmb_cars.items.add("car2") cmb_cars.items.add("car3") cmb_cars.text = "Select One" Private Sub cmb_cars_selectedindexchanged(sender As System.Object, e As System.EventArgs) Handles cmb_cars.selectedindexchanged lst_model.items.clear() txt_price.clear() cmb_colors.items.clear() cmb_colors.text = "Select One" Dim str As String = cmb_cars.selecteditem.tostring() 'MsgBox(str) If str = "car1" Then cmb_colors.items.add("red") cmb_colors.items.add("blue") cmb_colors.items.add("black") lst_model.items.add("model1") lst_model.items.add("model2") lst_model.items.add("model3") ElseIf cmb_cars.selecteditem.tostring() = "car2" Then cmb_colors.items.add("white") LAB RECORD SAD-INFS-280/L Page 1

3 cmb_colors.items.add("silver") cmb_colors.items.add("black") lst_model.items.add("model4") lst_model.items.add("model5") lst_model.items.add("model6") ElseIf cmb_cars.selecteditem.tostring() = "car3" Then cmb_colors.items.add("darkgreen") cmb_colors.items.add("green") cmb_colors.items.add("black") lst_model.items.add("model7") lst_model.items.add("model8") lst_model.items.add("model9") Private Sub lst_model_selectedindexchanged(sender As System.Object, e As System.EventArgs) Handles lst_model.selectedindexchanged Dim str As String = lst_model.selecteditem.tostring() If str = "Model1" Or str = "Model4" Or str = "Model7" Then txt_price.text = "4,000" ElseIf str = "Model2" Or str = "Model5" Or str = "Model8" Then txt_price.text = "3,500" ElseIf str = "Model3" Or str = "Model6" Or str = "Model9" Then txt_price.text = "6,000" Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click MsgBox("Thank for purchasing " & cmb_cars.selecteditem.tostring()) Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click End End Class LAB RECORD SAD-INFS-280/L Page 2

4 Design & Develop an application for Billing in supermarket. Value in combo box came from run time not design time, according to quantity selected system automatically calculate the price of product. Code: Public Class marketnew Private Sub marketnew_load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load ComboBox1.Items.Add("Apple") ComboBox1.Items.Add("Orange") ComboBox1.Items.Add("Grapes") ComboBox4.Items.Add("1") ComboBox4.Items.Add("2") ComboBox4.Items.Add("3") ComboBox4.Items.Add("4") ComboBox2.Items.Add("Apple") ComboBox2.Items.Add("Orange") ComboBox2.Items.Add("Grapes") ComboBox5.Items.Add("1") ComboBox5.Items.Add("2") ComboBox5.Items.Add("3") ComboBox5.Items.Add("4") ComboBox3.Items.Add("Apple") ComboBox3.Items.Add("Orange") ComboBox3.Items.Add("Grapes") ComboBox6.Items.Add("1") ComboBox6.Items.Add("2") ComboBox6.Items.Add("3") ComboBox6.Items.Add("4") Private Sub ComboBox4_SelectedIndexChanged(sender As System.Object, e As System.EventArgs) Handles ComboBox4.SelectedIndexChanged If ComboBox1.SelectedItem = "Apple" Then TextBox1.Text = ComboBox4.SelectedItem * 20 ElseIf ComboBox1.SelectedItem = "Orange" Then TextBox1.Text = ComboBox4.SelectedItem * 10 ElseIf ComboBox1.SelectedItem = "Grapes" Then LAB RECORD SAD-INFS-280/L Page 3

5 TextBox1.Text = ComboBox4.SelectedItem * 30 Private Sub ComboBox5_SelectedIndexChanged(sender As System.Object, e As System.EventArgs) Handles ComboBox5.SelectedIndexChanged If ComboBox2.SelectedItem = "Apple" Then TextBox2.Text = ComboBox5.SelectedItem * 20 ElseIf ComboBox2.SelectedItem = "Orange" Then TextBox2.Text = ComboBox5.SelectedItem * 10 ElseIf ComboBox2.SelectedItem = "Grapes" Then TextBox2.Text = ComboBox5.SelectedItem * 30 Private Sub ComboBox6_SelectedIndexChanged(sender As System.Object, e As System.EventArgs) Handles ComboBox6.SelectedIndexChanged If ComboBox3.SelectedItem = "Apple" Then TextBox3.Text = ComboBox5.SelectedItem * 20 ElseIf ComboBox3.SelectedItem = "Orange" Then TextBox3.Text = ComboBox5.SelectedItem * 10 ElseIf ComboBox3.SelectedItem = "Grapes" Then TextBox3.Text = ComboBox5.SelectedItem * 30 Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Dim a, b, c As Integer a = TextBox1.Text b = TextBox2.Text c = TextBox3.Text TextBox4.Text = a + b + c End Class LAB RECORD SAD-INFS-280/L Page 4

6 Assume you are system developer. You received a design from the system designer to develop a billingsystem for a fruit shop. By using following business-case develop the system. You can use any language for the development, but visual basic is recommended. The font color of the Total price should change according to the product color (i.e. For Apple color is Red, Mango color is yellow, Grapes color is Green). Code: Public Class fruitbilling Private Sub fruitbilling_load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load lbl_text.visible = False txt_price.readonly = True Private Sub txt_qty_keyup(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles txt_qty.keyup If e.keycode >= "65" And e.keycode <= "90" Or e.keycode = 16 Then MsgBox("Enter only numbers") txt_qty.clear() txt_qty.focus() Private Sub txt_price_keyup(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles txt_price.keyup If e.keycode >= "65" And e.keycode <= "90" Or e.keycode = 16 Then MsgBox("Enter only numbers") txt_price.clear() txt_price.focus() LAB RECORD SAD-INFS-280/L Page 5

7 Private Sub btn_calculate_click(sender As System.Object, e As System.EventArgs) Handles btn_calculate.click lbl_text.visible = True If rb_apple.checked = True Then txt_price.text = 2.4 lbl_text.forecolor = Color.Red lbl_text.text = "The total cost is: " & txt_qty.text * txt_price.text & " OMR" ElseIf rb_grapes.checked = True Then txt_price.text = 1.6 lbl_text.forecolor = Color.Green lbl_text.text = "The total cost is: " & txt_qty.text * txt_price.text & " OMR" ElseIf rb_mango.checked = True Then txt_price.text = 2.3 lbl_text.forecolor = Color.Yellow lbl_text.text = "The total cost is: " & txt_qty.text * txt_price.text & " OMR" Private Sub btn_cancel_click(sender As System.Object, e As System.EventArgs) Handles btn_cancel.click End End Class Design and develop an application for a payment system. In your application you should have payment option e.g. cash and credit card. Prior to making the payment the application must calculate the total amount based on specific order. Code: LAB RECORD SAD-INFS-280/L Page 6

8 Public Class billingsystemcoffe Private Sub billingsystemcoffe_load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load lbl_cardno.visible = False txt_card.visible = False Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Dim ws, wos, cc, hc, tc, tt, tot As Double ws = 5 wos = 8 cc = 20 hc = 10 If txt_tea.text <> "" Then If chk_tea.checked = True Then tt = txt_tea.text * wos ElseIf chk_tea.checked = False Then tt = txt_tea.text * ws If txt_coffee.text <> "" Then If chk_coffee.checked = True Then tc = txt_coffee.text * cc ElseIf chk_coffee.checked = False Then tc = txt_coffee.text * hc tot = tt + tc If rdo_cash.checked = True Then txt_amt.text = tot MsgBox("Payment received in Cash!Thank U u select" & chk_tea.text & "and " & chk_coffee.text) ElseIf rdo_card.checked = True Then If txt_card.text = "" Then MsgBox("U must enter pin number") txt_card.focus() Else txt_amt.text = tot MsgBox("Payment is deduced from ur account") ElseIf rdo_cash.checked = False And rdo_card.checked = False Then MsgBox("U must choose payment mode") Private Sub rdo_card_checkedchanged(sender As System.Object, e As System.EventArgs) Handles rdo_card.checkedchanged lbl_cardno.visible = True txt_card.visible = True Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click End End Class LAB RECORD SAD-INFS-280/L Page 7

9 Design and develop a system for grade analysis for the department of Information Systems (IS). Your system should calculate the total mark, grade point and the average of each course. It must display overall grade point and result. System should also display current time and date on the top of the form. Code: Public Class Form1 Dim a, b, c, d, p, q, r, s, u, h As Integer Dim avg As Double Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click a = Val(TextBox5.Text) + Val(TextBox10.Text) + Val(TextBox16.Text) + Val(TextBox13.Text) TextBox19.Text = a b = Val(TextBox6.Text) + Val(TextBox9.Text) + Val(TextBox15.Text) + Val(TextBox12.Text) TextBox18.Text = b 'd = Val(TextBox6.Text) + Val(TextBox9.Text) + Val(TextBox15.Text) + Val(TextBox12.Text) 'TextBox18.Text = b TextBox7.Text = Val(TextBox5.Text) + Val(TextBox6.Text) p = TextBox7.Text If (TextBox7.Text >= 90 And TextBox7.Text <= 100) Then TextBox23.Text = "S" ElseIf (TextBox7.Text >= 80 And TextBox7.Text <= 89) Then TextBox23.Text = "A" ElseIf (TextBox7.Text >= 70 And TextBox7.Text <= 79) Then TextBox23.Text = "B" ElseIf (TextBox7.Text >= 60 And TextBox7.Text <= 69) Then TextBox23.Text = "c" ElseIf (TextBox7.Text >= 55 And TextBox7.Text <= 59) Then TextBox23.Text = "D" ElseIf (TextBox7.Text >= 50 And TextBox7.Text <= 54) Then LAB RECORD SAD-INFS-280/L Page 8

10 TextBox23.Text = "E" ElseIf (TextBox7.Text <= 50) Then TextBox23.Text = "F" TextBox8.Text = Val(TextBox9.Text) + Val(TextBox10.Text) q = TextBox8.Text If (TextBox7.Text >= 90 And TextBox7.Text <= 100) Then TextBox22.Text = "S" ElseIf (q >= 80 And q <= 89) Then TextBox22.Text = "A" ElseIf (q >= 70 And q <= 79) Then TextBox22.Text = "B" ElseIf (q >= 60 And q <= 69) Then TextBox22.Text = "c" ElseIf (q >= 55 And q <= 59) Then TextBox22.Text = "D" ElseIf (q >= 50 And q <= 54) Then TextBox22.Text = "E" ElseIf (q <= 50) Then TextBox22.Text = "F" TextBox14.Text = Val(TextBox15.Text) + Val(TextBox16.Text) r = TextBox14.Text If (r >= 90 And r <= 100) Then TextBox20.Text = "s" ElseIf (r >= 80 And r <= 89) Then TextBox20.Text = "A" ElseIf (r >= 70 And r <= 79) Then TextBox20.Text = "B" ElseIf (r >= 60 And r <= 69) Then TextBox20.Text = "c" ElseIf (r >= 55 And r <= 59) Then TextBox20.Text = "D" ElseIf (r >= 50 And r <= 54) Then TextBox20.Text = "E" ElseIf (r <= 50) Then TextBox20.Text = "F" TextBox11.Text = Val(TextBox12.Text) + Val(TextBox13.Text) s = TextBox11.Text If (s >= 90 And s <= 100) Then TextBox21.Text = "s" ElseIf (s >= 80 And s <= 89) Then TextBox21.Text = "A" ElseIf (s >= 70 And s <= 79) Then TextBox21.Text = "B" ElseIf (s >= 60 And s <= 69) Then TextBox21.Text = "c" ElseIf (s >= 55 And s <= 59) Then TextBox21.Text = "D" ElseIf (s >= 50 And s <= 54) Then TextBox21.Text = "E" ElseIf (s <= 50) Then TextBox21.Text = "F" c = Val(p) + Val(q) + Val(r) + Val(s) TextBox17.Text = c Label29.Text = Val(TextBox17.Text) avg = c / 4 Label32.Text = avg LAB RECORD SAD-INFS-280/L Page 9

11 If p < 50 Or q < 50 Or r < 50 Or s < 50 Then Label30.Text = "Fail" Else Label30.Text = "Pass" If p < 50 Or q < 50 Or r < 50 Or s < 50 Then Label34.Text = "Re appear" ElseIf (avg.tostring >= 90 And avg.tostring <= 100) Then Label34.Text = "S" ElseIf (avg.tostring >= 80 And avg.tostring <= 89) Then Label34.Text = "A" ElseIf (avg.tostring >= 70 And avg.tostring <= 79) Then Label34.Text = "B" ElseIf (avg.tostring >= 60 And avg.tostring <= 69) Then Label34.Text = "C" ElseIf (avg.tostring >= 55 And avg.tostring <= 59) Then Label34.Text = "D" ElseIf (avg.tostring >= 50 And avg.tostring <= 54) Then Label34.Text = "E" ElseIf (avg.tostring <= 50) Then Label34.Text = "F" Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click TextBox1.Text = "" TextBox2.Text = "" TextBox3.Text = "" TextBox4.Text = "" TextBox5.Text = "" TextBox6.Text = "" TextBox7.Text = "" TextBox8.Text = "" TextBox9.Text = "" TextBox10.Text = "" TextBox11.Text = "" TextBox12.Text = "" TextBox13.Text = "" TextBox14.Text = "" TextBox15.Text = "" TextBox16.Text = "" TextBox17.Text = "" TextBox18.Text = "" TextBox19.Text = "" TextBox20.Text = "" TextBox21.Text = "" TextBox22.Text = "" TextBox23.Text = "" Label29.Text = "" Label30.Text = "" Label32.Text = "" Label34.Text = "" Private Sub Button3_Click(sender As System.Object, e As System.EventArgs) Handles Button3.Click End LAB RECORD SAD-INFS-280/L Page 10

12 Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load Label10.Text = Today Label9.Text = TimeOfDay Me.Top = False End Class LAB RECORD SAD-INFS-280/L Page 11

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

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

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

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

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

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

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

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

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

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

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

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

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

Introduction to. A revised course with - Concise concepts - Hands on class work. - Plenty of examples - Programming exercises

Introduction to. A revised course with - Concise concepts - Hands on class work. - Plenty of examples - Programming exercises Introduction to 1 A revised course with - Concise concepts - Hands on class work TextBox1 - Plenty of examples - Programming exercises Copyright HKTA Tang Hin Memorial Secondary School 2012 Contents Chapter

More information

AUTOMATIC PUBLIC DISTRIBUTION SYSTEM

AUTOMATIC PUBLIC DISTRIBUTION SYSTEM Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320 088X IJCSMC, Vol. 2, Issue.

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

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

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

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara LAMPIRAN 1. Modul Imports System.Data Imports System.Data.OleDb Module Module1 Public conn As OleDbConnection Public CMD As OleDbCommand Public DS As New DataSet Public DA As OleDbDataAdapter Public RD

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

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

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

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

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

More information

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

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Label1. 練習問題 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

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

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

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

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

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

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

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

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

Lab 6B Coin Collection

Lab 6B Coin Collection HNHS Computer Programming I / IPFW CS 11400 Bower - Page 1 Lab 6B Coin Collection You will create a program that allows users to enter the quantities of an assortment of coins (quarters, dimes, nickels,

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

MenuStrip Control. The MenuStrip control represents the container for the menu structure.

MenuStrip Control. The MenuStrip control represents the container for the menu structure. MenuStrip Control The MenuStrip control represents the container for the menu structure. The MenuStrip control works as the top-level container for the menu structure. The ToolStripMenuItem class and the

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

DEVELOPING OBJECT ORIENTED APPLICATIONS

DEVELOPING OBJECT ORIENTED APPLICATIONS DEVELOPING OBJECT ORIENTED APPLICATIONS By now, everybody should be comfortable using form controls, their properties, along with methods and events of the form class. In this unit, we discuss creating

More information

E-wallet - Magento 2 USER MANUAL MAGEDELIGHT.COM

E-wallet - Magento 2 USER MANUAL MAGEDELIGHT.COM E-wallet - Magento 2 USER MANUAL MAGEDELIGHT.COM EMAIL: SUPPORT@MAGEDELIGHT.COM Introduction: E-wallet extension is to allow customers do shopping using online wallet credited with some amount. It works

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

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

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Public Class Cours Private nc As Integer Private Sub Cours_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'TODO : cette ligne de code charge les données dans la table

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

VARIABLES. 1. STRINGS Data with letters and/or characters 2. INTEGERS Numbers without decimals 3. FLOATING POINT NUMBERS Numbers with decimals

VARIABLES. 1. STRINGS Data with letters and/or characters 2. INTEGERS Numbers without decimals 3. FLOATING POINT NUMBERS Numbers with decimals VARIABLES WHAT IS A VARIABLE? A variable is a storage location in the computer s memory, used for holding information while the program is running. The information that is stored in a variable may change,

More information

CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011

CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011 Name: USC loginid (e.g., ttrojan): CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011 There are 4 problems on the exam, with 50 points total available. There are 7 pages to the exam, including this

More information

フラクタル 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

超音波モータ制御プログラムの作成 (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

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

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

How to Validate DataGridView Input

How to Validate DataGridView Input How to Validate DataGridView Input This example explains how to use DR.net to set validation criteria for a DataGridView control on a Visual Studio.NET form. Why You Should Use This To add extensible and

More information

Session Booklet Transacting Online

Session Booklet Transacting Online Session Booklet Transacting Online Online shopping, whether it be ordering your groceries online, buying Christmas presents or comparing car insurance, needs to be done safely. Knowing what details are

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

PTP Registration: Credit Card

PTP Registration: Credit Card Page 1/7 PTP Registration: Credit Card 1. Visit www.aatcc.org/test/proficiency/#register. 2. To register and pay for AATCC Proficiency Testing Programs by credit card, click Register online. To pay by

More information

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS

TIS HELP FOR INDEPENDENT OPERATORS CONTENTS TIS HELP FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 TIE... 3 1.2 Account set up in TIS... 3 1.3 VAT number (EU only)... 3 1.4 Business license number (China only)... 3 1.5 Access levels...

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

CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011

CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011 Name: SOLUTION USC loginid (e.g., ttrojan): CS 455 Midterm Exam 1 Spring 2011 [Bono] Feb. 17, 2011 There are 4 problems on the exam, with 50 points total available. There are 7 pages to the exam, including

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

INVENTORY MANAGEMENT SYSTEM FOR TELE SOON PHONE SHOP

INVENTORY MANAGEMENT SYSTEM FOR TELE SOON PHONE SHOP INVENTORY MANAGEMENT SYSTEM FOR TELE SOON PHONE SHOP MRS. UMASHANKAR JASUTHA Index Number 0605298 Client Telesoon phone shop Supervisor Mr. K.Venugobnan 2017 November University of Colombo School of Computing

More information

Security Now. Howard Verne. Is My Private Information Safe?

Security Now. Howard Verne. Is My Private Information Safe? Security Now Howard Verne Is My Private Information Safe? NO!! Millions of people s Information has been stolen to date Target, Home Depot Even Albertsons have been some of the largest/well known break-ins

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

C16 Visual Basic Net Programming

C16 Visual Basic Net Programming C16 Visual Basic Net Programming Student ID Student Name Date - Module Tutor - 1 P a g e Report Contents Introduction... 2 Software Development Process... 3 Self Reflection... 6 References... 6 Appendices...

More information

FAQs. Frequently Asked Questions

FAQs. Frequently Asked Questions FAQs Frequently Asked Questions 1 1. How do I order a new phone? 2. How do I upgrade my existing phone? 3. How do I order a SIM card? 4. How do I order an accessory? 5. How do I check the status of my

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

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

Lab 6: Making a program persistent

Lab 6: Making a program persistent Lab 6: Making a program persistent In this lab, you will cover the following topics: Using the windows registry to make parts of the user interface sticky Using serialization to save application data in

More information

First name (printed): a. DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN.

First name (printed): a. DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN. CSE 231 F 13 Exam #1 Last name (printed): First name (printed): Form 1 X Directions: a. DO NOT OPEN YOUR EXAM BOOKLET UNTIL YOU HAVE BEEN TOLD TO BEGIN. b. This exam booklet contains 25 questions, each

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

Higher Reach Online Registration

Higher Reach Online Registration Higher Reach Online Registration July 12, 2013 (Version 1) kc This procedure guide contains information for students and administration. QUICK ADMIT Define three roles that someone can use to log in to

More information

Repetition Structures

Repetition Structures Repetition Structures There are three main structures used in programming: sequential, decision and repetition structures. Sequential structures follow one line of code after another. Decision structures

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

IT3101 -Rapid Application Development Second Year- First Semester. Practical 01. Visual Basic.NET Environment.

IT3101 -Rapid Application Development Second Year- First Semester. Practical 01. Visual Basic.NET Environment. IT3101 -Rapid Application Development Second Year- First Semester Practical 01 Visual Basic.NET Environment. Main Area Menu bar Tool bar Run button Solution Explorer Toolbox Properties Window Q1) Creating

More information

Tutorial 03 understanding controls : buttons, text boxes

Tutorial 03 understanding controls : buttons, text boxes Learning VB.Net Tutorial 03 understanding controls : buttons, text boxes Hello everyone welcome to vb.net tutorials. These are going to be very basic tutorials about using the language to create simple

More information

easypurchase Magellan User Reference Guide

easypurchase Magellan User Reference Guide 1 easypurchase Magellan User Reference Guide v1.12.13 Table of Contents Getting Started... 3 Initiating your Account... 3 Logging In... 3 Shop... 4 Creating an Order... 4 Hosted Catalogs... 4 Punchout

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen277X214\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen277X214\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschema

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

Form Adapter Example. DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date :

Form Adapter Example. DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date : Form Adapter Example DRAFT Document ID : Form_Adapter.PDF Author : Michele Harris Version : 1.1 Date : 2009-06-19 Form_Adapter.doc DRAFT page 1 Table of Contents Creating Form_Adapter.vb... 2 Adding the

More information

Objectives/Outcomes. Introduction: If we have a set "collection" of fruits : Banana, Apple and Grapes.

Objectives/Outcomes. Introduction: If we have a set collection of fruits : Banana, Apple and Grapes. 1 September 26 September One: Sets Introduction to Sets Define a set Introduction: If we have a set "collection" of fruits : Banana, Apple Grapes. 4 F={,, } Banana is member "an element" of the set F.

More information

2. Design the form. 1. Create DATABASE DESIGN. Tables: Queries: Design View: Database Name: CompShop.mdb

2. Design the form. 1. Create DATABASE DESIGN. Tables: Queries: Design View: Database Name: CompShop.mdb 2. Design the form Design View: 1. Create DATABASE DESIGN Database Name: CompShop.mdb Tables: ItemFile [ ItemCode (N), ItemName(T), Brand (T), UnitCost (N), UnitPrice(N), Description(T), Measure(T)] POSale

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

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

Delegates (Visual Basic)

Delegates (Visual Basic) Delegates (Visual Basic) https://msdn.microsoft.com/en-us/library/ms172879(d=printer).aspx 1 of 4 02.09.2016 18:00 Delegates (Visual Basic) Visual Studio 2015 Delegates are objects that refer to methods.

More information

How to create and delete a journal voucher (JV)?

How to create and delete a journal voucher (JV)? How to create and delete a journal voucher (JV)? To create and delete a Journal Voucher (JV) in HDPOS smart, follow the steps below. 1. Run HDPOSsmart. 2. From main screen click on Set-Up button. 3. From

More information

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen835X221A1\Form1.vb Imports Edidev.FrameworkEDI

C:\EDIdEv\Examples\HIPAA\5010\VbNet\vbNet_Gen835X221A1\Form1.vb Imports Edidev.FrameworkEDI Imports Edidev.FrameworkEDI 1 Public Class Form1 Private Sub btngenerate_click(byval sender As System.Object, ByVal e As System.EventArgs) Handles btngenerate.click Dim oedidoc As edidocument Dim oschemas

More information

Quick Reference Guide Welcome to the SUNY TierOne Diversity Site

Quick Reference Guide Welcome to the SUNY TierOne Diversity Site Quick Reference Guide Welcome to the SUNY TierOne Diversity Site HOMEPAGE CONTRACT Select Contract from your location dropdown to shop SUNY Pre-approved items. NON-CONTRACT Select NonContract from your

More information

ISM 3253 Exam I Spring 2009

ISM 3253 Exam I Spring 2009 ISM 3253 Exam I Spring 2009 Directions: You have exactly 75 minutes to complete this test. Time available is part of the exam conditions and all work must cease when "Stop work" is announced. Failing to

More information

e.g. D6 contains =bmi($a6,$d$4)

e.g. D6 contains =bmi($a6,$d$4) e) Produce a table which labels columns by heights from 1.55m to 1.95m in steps of 5 cm and rows by weights from 50kg to 95kg in steps of 5kg. At each intersection compute the corresponding body mass index.

More information

How to Use Do While Loop in Excel VBA

How to Use Do While Loop in Excel VBA We have already covered an introduction to looping and the simplest type of loops, namely the For Next Loop and the For Each Next Loop, in previous tutorials. We discovered that the For Next Loop and the

More information

BB&T Credit Card Connection for Company Administrators

BB&T Credit Card Connection for Company Administrators BB&T Credit Card Connection for Company Administrators Instructional Guide 1 Welcome to BB&T Credit Card Connection! With BB&T Credit Card Connection you can manage your company Purchasing card program

More information

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS

TIS HELP VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS VCCS TECHNICAL INFORMATION SHOP (TIS) INSTRUCTION FOR INDEPENDENT OPERATORS CONTENTS 1 INTRODUCTION... 3 1.1 Account set up... 3 1.1.1 Independent operators with TIE access... 3 1.2 Login for registered

More information

Contents. This manual is a work in progress. If you see procedures that could be improved, please your suggestions to

Contents. This manual is a work in progress. If you see procedures that could be improved, please  your suggestions to This manual is a work in progress. If you see procedures that could be improved, please email your suggestions to MSUEVend@anr.msu.edu The directions in this manual are compatible with the ipad app with

More information

SAMS Club Web Sites Online Store

SAMS Club Web Sites Online Store SAMS Club Web Sites Online Store Last Updated: November 14, 2007 Copyright 2007 Innuity, Inc. All Rights Reserved No part of this document may be reproduced or distributed in any form or by any means,

More information

Write the code for the click event for the Move>> button that emulates the behavior described above. Assume you already have the following code:

Write the code for the click event for the Move>> button that emulates the behavior described above. Assume you already have the following code: IS 320 Spring 2000 page 1 1. (13) The figures below show two list boxes before and after the user has clicked on the Move>> button. Notice that the selected items have been moved to the new list in the

More information

How to obtain log-in Information. How to log-in to FNB Online Catalog

How to obtain log-in Information. How to log-in to FNB Online Catalog Table of Contents 1. How to obtain log-in information and log-in pg. 2 2. Start your order pg. 3 3. Choose product details, confirm and check-out pg. 4 4. Select Purchase Type: Affiliate or Personal pg.

More information

Welcome to Your. Online Banking Experience

Welcome to Your. Online Banking Experience Welcome to Your Online Banking Experience Take your Orlando Federal accounts with you where ever you go - Access your account information with online banking and mobile banking. Check balances, pay bills,

More information

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat

1. What is AAE Travel Card? Currency Currency Code US Dollar Euro Pound Sterling Australian Dollar Canadian Dollar Hong Kong Dollar Thai Bhat 1. What is AAE Travel Card? It s a reloadable pre-paid Visa Platinum Card that can hold multiple foreign currencies on one card. It can be used to pay for goods and services or to withdraw money from ATMs

More information

How to Create a PayPal Account

How to Create a PayPal Account How to Create a PayPal Account Step 1 Go to PayPal.com In this video we are going to be setting up a U.S. based PayPal account. Here I can click the sign up for free here, or I can click at the top right.

More information

CPE Summer 2015 Exam I (150 pts) June 18, 2015

CPE Summer 2015 Exam I (150 pts) June 18, 2015 Name Closed notes and book. If you have any questions ask them. Write clearly and make sure the case of a letter is clear (where applicable) since C++ is case sensitive. You can assume that there is one

More information

Review for Exam 2. IF Blocks. Nested IF Blocks. School of Business Eastern Illinois University. Represent computers abilities to make decisions

Review for Exam 2. IF Blocks. Nested IF Blocks. School of Business Eastern Illinois University. Represent computers abilities to make decisions School of Business Eastern Illinois University Review for Exam 2 - IF Blocks - Do s - Select Case Blocks (Week 10, Friday 3/21/2003) Abdou Illia, Spring 2003 IF Blocks 2 Represent computers abilities to

More information

Brolly Sheets Wholesale Login

Brolly Sheets Wholesale Login Brolly Sheets Wholesale Login Logging into your Account Go to our Wholesale website to login using the URL below. www.brollysheetswholesale.co.nz (for NZ customers) www.brollysheetswholesale.com.au (for

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