internal lab registeration labreg/lab/signup.aspx labreg/lab/signup.aspx

19
Internal Lab Registeration http://www.cit.just .edu.jo/labreg/lab/ signup.aspx http:// www.just.edu.jo/ munzer/ Chapter 1- Visual Basic Schneider 1

Upload: donna-higgins

Post on 05-Jan-2016

212 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Internal Lab Registeration

• http://www.cit.just.edu.jo/labreg/lab/signup.aspx

• http://www.just.edu.jo/munzer/

Chapter 1- Visual Basic Schneider 1

Page 2: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 2

Chapter 1

An Introduction to Computers and Visual Basic

Page 3: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 3

Outline and Objectives

–Introduction to Computers–Using Windows–Files and Folders–An Introduction to Visual Basic

Page 4: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 4

Parts of a Computer System:

• Hardware: Electronic Devices

• Software: Instructions and Computer Programs

Page 5: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 5

Main components of Hardware:

• Input : Keyboard, Mouse

• System unit: – Random Access Memory (RAM)– Central Processing Unit (CPU)

• Output: Monitor, Printer

• Secondary Storage: Disk Drive

Page 6: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 6

Random Access Memory (RAM)

• Stores program instructions and data needed for processing.

• Stores intermediate and final results of processing.

• Contents are erased when computer is turned off or reset.

Page 7: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 7

Programming Languages:

• Machine Language

• High level Language

Page 8: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 8

Machine Language

• The fundamental language of the computer’s processor, also called Low Level Language.

• All programs are converted into machine language before they can be executed.

Page 9: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 9

High Level Language

• Computer (programming) languages that are easier to learn.

• Uses English like statements.

• Examples are C++, Visual Basic, and Java

Page 10: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 10

Software:

• Instructions for the hardware.

• A collection of instructions is called a program.

Page 11: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 11

Using Windows

• Basic techniques to use the mouse:– Pointing– Clicking– Dragging– Double-Clicking– Hovering

Page 12: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 12

Key Terms in using Windows

• Title Bar

• Active window

• Dragging a window

Page 13: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 13

Using Windows

– Reviewing Notepad to learn more about Windows applications

– Notepad is an item in the Accessories menu

Page 14: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 14

Files & Folders:

• A disk can store thousands of files.• To organize your files you have to store them in

different folders (directories).• File name consists of letters, digits, periods and

other assorted characters.• The following character cannot be used in a file or

folder name /, \, ?, *, :, ”, <, >, |• A File name can contain up to 215 characters

Page 15: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 15

Key Terms in using Folders

• Root folder

• Path: A nested sequence of folders– Example: A:\Temp\MyProjects\

• File Specification: A drive letter, path, and filename– Example: A:\Temp\MyProjects\Example.vbp

Page 16: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 16

History of Visual Basic:

• BASIC stands for Beginner’s All-purpose Symbolic Instruction Code.

• BASIC was developed by John Kemeny and Thomas Kurtz in mid-1960s.

• Visual Basic was released in 1991 by the Microsoft Corporation.

Page 17: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 17

Introduction to Visual Basic:

• A language used to create windows applications.

• Programs are developed with a Graphical User Interface or GUI.

• The instructions executed in the program are controlled by events.

Page 18: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 18

Terminology used in Visual Basic:

• Form

• Control

• Object

• Properties

• Event

Page 19: Internal Lab Registeration  labreg/lab/signup.aspx labreg/lab/signup.aspx

Chapter 1- Visual Basic Schneider 19

Steps to Design a Visual Basic Application

• Design the appearance of the window that the user sees.

• Determine the events that the controls on the window should recognize.

• Write the event procedures for those events.