Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub

Size: px
Start display at page:

Download "Private Sub Command2_Click() End End Sub. Private Sub Command3_Click() frmchangepassword.show End Sub. Private Sub Form_Activate() check_db End Sub"

Transcription

1 Private Sub Command1_Click() On Error Resume If rs.state = adstateopen Then rs.close rs.open "select * from login where UserName='" & txtusername & "' And Log_Password='" & txtpassword & "'", conn, 1, 2 rec_count = rs.recordcount If rec_count = 0 Then MsgBox "Invalid User Name Or Password" txtpassword.setfocus SendKeys "{Home}+{End}" Else If Check1.Value = 1 Then strq = "update login set flag='1' where UserName='" & txtusername & "' And Log_Password='" & txtpassword & "'" MDIForm1.Show Private Sub Command2_Click() End Private Sub Command3_Click() frmchangepassword.show Private Sub Form_Activate() check_db Private Sub check_db()

2 If rs.state = adstateopen Then rs.close strq = "select * from login where flag='1'" If rs.recordcount = 0 Then Else txtusername = rs(0) txtpassword = rs(1) Check1.Value = 1 strq = "update login set flag='0' where flag='1'" Private Sub txtpassword_keypress(keyascii As Integer) Command1_Click Private Sub txtusername_keypress(keyascii As Integer) Command1_Click Book Issue Form Private Sub Command1_Click() If Trim(Text1) = "" Then MsgBox "Please Enter Member No." Text1.SetFocus If Trim(Text2) = "" Then MsgBox "Please Enter Member No." Text2.SetFocus

3 strq = "insert into issue values('" & Create_ID & "','" & Text1 & "','" & Text2 & "','" & _ IssueDate & "','" & ReturnDate & "','" & "I" & "')" strq = "Update BookMaster set status='i' where bookno=" & Text1 & "" strq = "Update MemberMaster set status='b' where memno=" & Text2 & "" Private Function Create_ID() As String strq = "select max(id) from issue" If rs.state = adstateopen Then rs.close If IsNull(rs(0)) = True Then Create_ID = "1" Else Create_ID = Trim(Str(rs(0) + 1)) End Function Private Sub clear_textbox() Dim ctl As Control For Each ctl In Controls If TypeOf ctl Is TextBox Then ctl.text = "" For Each ctl In Controls If TypeOf ctl Is MaskEdBox Then ctl.mask = "" ctl.text = "" ctl.mask = "##/##/####"

4 Private Sub Command2_Click() Private Sub Form_Activate() clear_textbox Private Sub Form_Load() Me.Top = 1545 Me.Left = 2640 Private Sub IssueDate_GotFocus() IssueDate = Format(Date, "MM/DD/YYYY") Private Sub IssueDate_KeyPress(KeyAscii As Integer) Private Sub MaskEdBox1_KeyPress(KeyAscii As Integer) Private Sub ReturnDate_GotFocus() If IsDate(IssueDate) = False Then dd = DateAdd("d", 7, IssueDate) ReturnDate = Format(dd, "MM/DD/YYYY") Private Sub Text1_KeyPress(KeyAscii As Integer)

5 Private Sub Text1_LostFocus() If Trim(Text1) <> "" Then strq = "select * from membermaster where memno=" & Text1 & "" If rs.state = adstateopen Then rs.close If rs.recordcount = 0 Then MsgBox "Member not Found" Text1 = "" Text1.SetFocus If rs(8) <> "P" Then MsgBox "This Member have already a book or meber is expired" Text1 = "" Text1.SetFocus lblname = rs(1) lbladdress = rs(2) lblmemno = rs(0) Private Sub Text2_KeyPress(KeyAscii As Integer) Private Sub Text2_LostFocus() If Trim(Text2) <> "" Then strq = "select * from bookmaster where bookno=" & Text2 & "" If rs.state = adstateopen Then rs.close

6 If rs.recordcount = 0 Then MsgBox "Member not Found" Text1 = "" Text1.SetFocus If rs(8) <> "P" Then MsgBox "This Book is not present this time" Text2.SetFocus lblcat = rs(1) lblbname = rs(2) lblauthor = rs(4) Issue Book View form Private Sub populategrid() Grid.ColWidth(0) = 0 Grid.ColWidth(1) = 2505 Grid.ColWidth(2) = 2625 Grid.ColWidth(3) = 2025 Grid.ColWidth(4) = 1845 Grid.TextMatrix(0, 1) = "Member No." Grid.TextMatrix(0, 2) = "Book No." Grid.TextMatrix(0, 3) = "Date of Issue" Grid.TextMatrix(0, 4) = "Date Of Return" If rs.state = adstateopen Then rs.close strq = "select * from Issue where status='i'" For i = 1 To rs.recordcount If Grid.TextMatrix(1, 0) <> "" Then Grid.TextMatrix(i, 8) = rs(8) Grid.Rows = Grid.Rows + 1 Grid.TextMatrix(i, 0) = rs(0)

7 Grid.TextMatrix(i, 1) = rs(1) Grid.TextMatrix(i, 2) = rs(2) Grid.TextMatrix(i, 3) = rs(3) Grid.TextMatrix(i, 4) = rs(4) rs.move Private Sub Command1_Click() Private Sub CmdClo_Click() Private Sub Form_Activate() populategrid Private Sub Form_Load() Me.Top = 1545 Me.Left = 2640 New Member Form Private Sub Command1_Click() strq = "insert into membermaster values('" & lblmemno & "','" & _ txtname & "','" & txtaddress & "','" & txttele1 & "','" & txttele2 & "','" & txt & "','" & DOJ & "','" & DOE & "','" & "P" & "')" Form_Activate Public Function MEMno() As String strq = "select max(memno) from membermaster"

8 If rs.state = adstateopen Then rs.close If IsNull(rs(0)) = True Then lblmemno = "100" Else lblmemno = Trim(Str(rs(0) + 1)) End Function Private Sub clear_textbox() Dim ctl As Control For Each ctl In Controls If TypeOf ctl Is TextBox Then ctl.text = "" For Each ctl In Controls If TypeOf ctl Is MaskEdBox Then ctl.mask = "" ctl.text = "" ctl.mask = "##/##/####" Private Sub Command3_Click() Private Sub Form_Activate() clear_textbox MEMno Private Sub Form_Load() Me.Top = 1545 Me.Left = 2640

9 Member View Form Private Sub populategrid() Grid.ColWidth(0) = 945 Grid.ColWidth(1) = 1875 Grid.ColWidth(2) = 2535 Grid.ColWidth(3) = 1100 Grid.ColWidth(4) = 1100 Grid.ColWidth(5) = 1300 Grid.ColWidth(6) = 945 Grid.ColWidth(7) = 945 Grid.ColWidth(8) = 600 Grid.TextMatrix(0, 0) = "Mem. No." Grid.TextMatrix(0, 1) = "Name" Grid.TextMatrix(0, 2) = "Address" Grid.TextMatrix(0, 3) = "Telephone1" Grid.TextMatrix(0, 4) = "Telephone2" Grid.TextMatrix(0, 5) = " " Grid.TextMatrix(0, 6) = "DOJ" Grid.TextMatrix(0, 7) = "DOE" Grid.TextMatrix(0, 8) = "Status" If rs.state = adstateopen Then rs.close strq = "select * from membermaster" For i = 1 To rs.recordcount If Grid.TextMatrix(1, 0) <> "" Then Grid.TextMatrix(i, 8) = rs(8) Grid.Rows = Grid.Rows + 1 Grid.TextMatrix(i, 0) = rs(0) Grid.TextMatrix(i, 1) = rs(1) Grid.TextMatrix(i, 2) = rs(2) Grid.TextMatrix(i, 3) = rs(3) Grid.TextMatrix(i, 4) = rs(4) Grid.TextMatrix(i, 5) = rs(5) Grid.TextMatrix(i, 6) = rs(6)

10 Grid.TextMatrix(i, 7) = rs(7) Grid.TextMatrix(i, 8) = rs(8) rs.move Private Sub Command1_Click() Private Sub Form_Activate() Me.Top = 0 Me.Left = 0 populategrid New Book Form Public Function Create_ID() As String strq = "select max(id) from bookmaster" If rs.state = adstateopen Then rs.close If IsNull(rs(0)) = True Then Create_ID = "1" Else Create_ID = Trim(Str(rs(0) + 1)) End Function Public Function Bookno() As String strq = "select max(bookno) from bookmaster" If rs.state = adstateopen Then rs.close If IsNull(rs(0)) = True Then lblbookno = "100"

11 Else lblbookno = Trim(Str(rs(0) + 1)) End Function Private Sub AuCombo_KeyPress(KeyAscii As Integer) Private Sub CatCombo_KeyPress(KeyAscii As Integer) Private Sub Command1_Click() strq = "insert into bookmaster values('" & Create_ID & "','" & _ CatCombo & "','" & txtbookname & "','" & lblbookno & "','" & AuCombo & "','" & txtprice & "','" & txtpage & "','" & Date & "','" & "P" & "')" Form_Activate Private Sub Command2_Click() Private Sub Form_Activate() clear_textbox Bookno popcombo populategrid Private Sub clear_textbox() Dim ctl As Control For Each ctl In Controls

12 If TypeOf ctl Is TextBox Then ctl.text = "" Private Sub popcombo() If rs.state = adstateopen Then rs.close strq = "select * from authormaster" For i = 1 To rs.recordcount AuCombo.AddItem rs(1) rs.move If rs.state = adstateopen Then rs.close strq = "select * from catmaster" For i = 1 To rs.recordcount CatCombo.AddItem rs(1) rs.move Private Sub populategrid() Grid.ColWidth(0) = 0 Grid.ColWidth(1) = 2260 Grid.ColWidth(2) = 2370 Grid.ColWidth(3) = 2355 Grid.ColWidth(4) = 1500 Grid.ColWidth(5) = 1500 Grid.ColWidth(6) = 1500 Grid.TextMatrix(0, 1) = "Category" Grid.TextMatrix(0, 2) = "Name Of Book" Grid.TextMatrix(0, 3) = "Author" Grid.TextMatrix(0, 4) = "Book No." Grid.TextMatrix(0, 5) = "Price" Grid.TextMatrix(0, 6) = "Date" Private Sub Grid_Click() MsgBox Grid.CellWidth

13 Private Sub txtbookname_keypress(keyascii As Integer) Private Sub txtpage_keypress(keyascii As Integer) Private Sub txtprice_keypress(keyascii As Integer) Book return Form Private Sub Command1_Click() If rs.state = adstateopen Then rs.close strq = "select * from issue where status='i' and bookno=" & Text1 & " and memno=" & Text2 & "" If rs.recordcount = 0 Then MsgBox "Invalid Entry" Text1.SetFocus strq = "Update issue set status='p' where bookno=" & Text1 & " and memno=" & Text2 & "" strq = "Update BookMaster set status='p' where bookno=" & Text1 & ""

14 strq = "Update MemberMaster set status='p' where memno=" & Text2 & "" Form_Activate Private Sub clear_textbox() Dim ctl As Control For Each ctl In Controls If TypeOf ctl Is TextBox Then ctl.text = "" Private Sub Command2_Click() Private Sub Form_Activate() clear_textbox Private Sub Form_Load() Me.Top = 1545 Me.Left = 2640 Private Sub Text1_KeyPress(KeyAscii As Integer) Private Sub Text2_KeyPress(KeyAscii As Integer)

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub

LISTING PROGRAM. 1. Form Login. Private Sub BATAL_Click() End End Sub LISTING PROGRAM 1. Form Login Private Sub BATAL_Click() End Sub Bersih() USERNAME.Text = "" PASSWORD.Text = "" Private Sub Form_Load() Bersih Private Sub OK_Click() Sql = "select*from tbl_login where username='"

More information

ต วอย างการสร างฟอร ม เมน การใช งาน

ต วอย างการสร างฟอร ม เมน การใช งาน ต วอย างการสร างฟอร ม เมน การใช งาน Option Explicit Dim conn As New ADODB.Connection Dim rs As New ADODB.Recordset Dim Sql As String Private Sub Command6_Click() Form2.Hide Form3.Show Private Sub Command7_Click()

More information

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara

LAMPIRAN FORM 1 Universitas Sumatera Universitas Utara LAMPIRAN FORM 1 Private Sub Text2_KeyPress(KeyAscii As Integer) If KeyAscii = vbkeyreturn Then Set tbladministrator = New ADODB.Recordset With tbladministrator.open "SELECT * FROM Administrator WHERE userid

More information

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses.

IS 320 Spring 96 Page 1 Exam 1. Please use your own paper to answer the following questions. Point values are shown in parentheses. IS 320 Spring 96 Page 1 Please use your own paper to answer the following questions. Point values are shown in parentheses. 1. (10) Consider the following segment of code: If txtansicode.text < "0" Or

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

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 61 LAMPIRAN 61 Listing Program Form 1 ( Barang ) Dim CnSuzuya As ADODB.Connection Dim CommBar As ADODB.Command Dim rsbar As ADODB.Recordset Dim StrSql As String Dim psn As Byte Private Sub Form_Load()

More information

PROGRAM 1: SIMPLE CALCULATOR

PROGRAM 1: SIMPLE CALCULATOR PROGRAM 1: SIMPLE CALCULATOR Option Explicit Dim operand1 As Double, operand2 As Double Dim op1 As Double, op2 As Double Dim operator As String Dim cleardisplay As Boolean Private Sub Cmdclear_Click()

More information

151 Mixed bag of HOTS questions from VB 15 A VB program accepts a number in a text box and rounds the number to 0 decimal places. Write the VB code under the button cmdround to achieve this feature. Do

More information

Tutorial, Source code, Request Program Visual Basic

Tutorial, Source code, Request Program Visual Basic Tutorial, Source code, Request Program Visual Basic Oleh : Moh. A Azis Membuat Form Data Barang Program Persediaan Barang Form Data Barang digunakan untuk menyimpan data barang dan memberikan info mengenai

More information

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara

LAMPIRAN A LISTING PROGRAM. Universitas Sumatera Utara LAMPIRAN A LISTING PROGRAM LISTING PROGRAM MENU UTAMA Dim T As String Dim i Private Sub Dafsis_Click() Form5.Show Private Sub Dafwai_Click() Form5.Show Private Sub Dasis_Click() Form2.Show Private Sub

More information

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System

Create a Login System in Visual Basic. Creating a login system. Start a new visual basic Windows Forms application project. Call it Login System Creating a login system Start a new visual basic Windows Forms application project Call it Login System Change the form TITLE from Form1 to Login System Add the following to the form Component Text Name

More information

LAMPIRAN LIST PROGRAM

LAMPIRAN LIST PROGRAM LAMPIRAN LIST PROGRAM 1. Modules Public conn As New ADODB.Connection Public rstb_pendekatan As ADODB.Recordset Public rstb_solusi As ADODB.Recordset Public rstb_alasan As ADODB.Recordset Public rstb_pilihan

More information

Frequently Asked Questions: Online Assessments

Frequently Asked Questions: Online Assessments Frequently Asked Questions: Online Assessments Can t remember Username and Password? 1. On the Login screen, click on the link Have you forgotten your User Name or Password. 2. On the next screen, either

More information

File Organization and Management

File Organization and Management 1 UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY File Organization and Management YEAR II- SE MESTER I PRACTICAL Version 1: December

More information

Remainder Cordial Labeling of Graphs

Remainder Cordial Labeling of Graphs Journal of Algorithms and Computation journal homepage: http://jac.ut.ac.ir Remainder Cordial Labeling of Graphs R. Ponraj 1, K. Annathurai and R. Kala 3 1 Department of Mathematics, Sri Paramakalyani

More information

LISTING PROGRAM. Form Splash

LISTING PROGRAM. Form Splash LISTING PROGRAM Form Splash Private Sub Form_Load() lblversion.caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblproductname.caption = App.Title lblcopyright.caption = App.LegalCopyright

More information

STEP 1: CREATING THE DATABASE

STEP 1: CREATING THE DATABASE Date: 18/02/2013 Procedure: Creating a simple registration form in ASP.NET (Programming) Source: LINK Permalink: LINK Created by: HeelpBook Staff Document Version: 1.0 CREATING A SIMPLE REGISTRATION FORM

More information

FRAMEWORK CODE: On Error Resume Next Dim objapp As Object Dim ObjSEEC As Object

FRAMEWORK CODE: On Error Resume Next Dim objapp As Object Dim ObjSEEC As Object Here is a piece of the sample Visual Basic code for the framework. Following are the steps mentions to specify about how to use the given sample code. Prerequisite: It is assumed that the action trigger

More information

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software

AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software Ex. No.1 Date: ONLINE COURSE RESERVATION AIM To analyze, design and develop code for Online Course Reservation System using Rational Rose software PROBLEM STATEMENT As the head of information systems for

More information

The Control Properties

The Control Properties The Control Properties Figure Before writing an event procedure for the control to response to a user's input, you have to set certain properties for the control to determine its appearance and how it

More information

The design and implementation of UML-based students information management system

The design and implementation of UML-based students information management system The design and implementation of UML-based students information management system Abstract Yunli Cheng 1, a, ChuanQin Li 2, b 1 Guangzhou Nanyang Polytechnic, Guangzhou 510925, China 2 Guangzhou Huaxia

More information

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY

NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY UNESCO-NIGERIA TECHNICAL & VOCATIONAL EDUCATION REVITALISATION PROJECT-PHASE II NATIONAL DIPLOMA IN COMPUTER TECHNOLOGY OOBASIC/VISUAL BASIC PROGRAMMING COURSE CODE: COM 211 YEAR I SEMESTER II PRACTICAL

More information

Errors, Warnings, and Issues WARNING #2077

Errors, Warnings, and Issues WARNING #2077 WARNING #2077 Change the default 0 index in the Rows property with the correct one. Description When upgrading an ADO Recordset object to native ADO.Net, the VBUC converts all the Recordset objects to

More information

Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated):

Financial Functions (all with subtypes: Normal, Stairs, Points, Height, Hollow, Colors, Marks, No Border except where indicated): Financial Charting in TeeChart Pro TeeChart Pro has always been at the cutting edge of Financial Charting and the ActiveX v6 makes this very clear; with three distinct financial series and fourteen dedicated

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Grade 10 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Duration: 3.00 Hours Part 1 Choose the appropriate answer 1) Find the correct type

More information

Level 2 Creating an event driven computer program using Visual Basic ( )

Level 2 Creating an event driven computer program using Visual Basic ( ) Level 2 Creating an event driven computer program using Visual Basic (7540-006) Systems and Principles (QCF) Assignment guide for Candidates Assignment C www.cityandguilds.com January 2010 Version 1.0

More information

An Introduction to Custom WebBrowsers for the Qualitative Study of Hypertext Navigation

An Introduction to Custom WebBrowsers for the Qualitative Study of Hypertext Navigation Jl. of Educational Multimedia and Hypermedia (2002) 11(3), 221-235 An Introduction to Custom WebBrowsers for the Qualitative Study of Hypertext Navigation PATRICIA M. BOECHLER AND MICHAEL R.W. DAWSON University

More information

Visual Basic 6 Lecture 7. The List Box:

Visual Basic 6 Lecture 7. The List Box: The List Box: The function of the List Box is to present a list of items where the user can click and select the items from the list or we can use the List Box control as a simple memory to save data.

More information

Programming with visual Basic:

Programming with visual Basic: Programming with visual Basic: 1-Introdution to Visual Basics 2-Forms and Control tools. 3-Project explorer, properties and events. 4-make project, save it and its applications. 5- Files projects and exercises.

More information

2-26 Learn Visual Basic 6.0

2-26 Learn Visual Basic 6.0 2-26 Learn Visual Basic 6.0 cmdcompute Click Event: Private Sub cmdcompute_click() Dim Mean As Single Dim StdDev As Single txtinput.setfocus Make sure there are at least two values If NumValues < 2 Then

More information

CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications

CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications CS130/230 Lecture 12 Advanced Forms and Visual Basic for Applications Friday, January 23, 2004 We are going to continue using the vending machine example to illustrate some more of Access properties. Advanced

More information

CMPT 110 MIDTERM OCTOBER 18, 2001

CMPT 110 MIDTERM OCTOBER 18, 2001 CMPT 110 MIDTERM OCTOBER 18, 2001 1 What will be displayed when the command button is clicked? 7% Level of difficulty 7 (out of 10) Assume there is a command button called cmdbutton Assume there is a picturebox

More information

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is

An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is InputBox( ) Function An InputBox( ) function will display an input Box window where the user can enter a value or a text. The format is A = InputBox ( Question or Phrase, Window Title, ) Example1: Integer:

More information

New Password Reset for Dental Connect Provider

New Password Reset for Dental Connect Provider New Password Reset for Dental Connect Provider 1 INDEX Access Dental Connect for Providers:... 3 1. Username verification:... 4 1.1 user name not provided:... 5 1.2 Invalid user name:... 6 1.3 Invalid

More information

Angel International School - Manipay 1 st Term Examination November, 2015

Angel International School - Manipay 1 st Term Examination November, 2015 Angel International School - Manipay 1 st Term Examination November, 2015 Information & Communication Technology Grade 11A & C Duration: 3.00 Hours Part 1 Choose the most appropriate answer. 1) Find the

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

More information

Password Protect an Access Database

Password Protect an Access Database Access a Password Protected Microsoft Access Database from within Visual Basic 6 Have you ever wanted to password protect an Access Database that is a Data Store (a repository of Data) used in one of your

More information

IP Network Camera J2ME (Java) Application

IP Network Camera J2ME (Java) Application IP Network Camera J2ME (Java) Application Revision 1.0 User Manual Information provided in this manual was made as accurate as possible. If there are discrepancies among the manuals in different languages,

More information

2Practicals Visual Basic 6.0

2Practicals Visual Basic 6.0 2Practicals Visual Basic 6.0 Practical 1: 1. Navigation of Visual Basic Integrated Development Environment The Visual Basic IDE is made up of a number of components Menu Bar Tool Bar Project Explorer Properties

More information

Chapter 2.4: Common facilities of procedural languages

Chapter 2.4: Common facilities of procedural languages Chapter 2.4: Common facilities of procedural languages 2.4 (a) Understand and use assignment statements. Assignment An assignment is an instruction in a program that places a value into a specified variable.

More information

On Railway Reservation. U G D C A Semester VI. Roll No DA

On Railway Reservation. U G D C A Semester VI. Roll No DA On Railway Reservation U G D C A Semester VI Submitted to: Dr. P. K. Sen (Co-ordinator) Submitted By: (Name of Student) Roll No. 14836DA Contents 1. Acknowledgement 2. Objectives 3. Declaration 4. Analysis

More information

Microsoft Access 2010 Level III

Microsoft Access 2010 Level III Microsoft Access 2010 Level III Handout Objectives I. Creating a Password Table II. Designing a Form III. Entering Codes Overview: With its Microsoft Office Fluent user interface and interactive design

More information

Firelands FCU Fireline Online Banking Enrollment Steps

Firelands FCU Fireline Online Banking Enrollment Steps Firelands FCU Fireline Online Banking Enrollment Steps Listed below are the steps to enroll in the new Online banking system. View Frequently Asked Questions about the new system by clicking on the link

More information

Lawrence Shepperd Candidate number: 9128 Centre Number: 26202

Lawrence Shepperd Candidate number: 9128 Centre Number: 26202 Data Structures and variables Data Structure Documentation Table Users Field name Data Type Description Usercode Text Contains the username, which the user will enter in order to log in. FullNames Text

More information

Example File Manipulation in Visual Basic

Example File Manipulation in Visual Basic Example File Manipulation in Visual Basic Obtain the file from your lecturer: Ex-files.vbp Ex-Files.bas Stock.dat Ex-Files.frm ex-files.vbw Prices.dat One of the most important functions of programming

More information

Please answer questions in the space provided. Question point values are shown in parentheses.

Please answer questions in the space provided. Question point values are shown in parentheses. IS 320 Spring 99 Page 1 Please answer questions in the space provided. Question point values are shown in parentheses. 1. (15) Assume you have the following variable declarations and assignments: Dim A

More information

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x

HELP - VB TIPS. ANIMATE AN IMAGE BOX Insert a module. In this module, create a global variable: Global x HELP - VB TIPS Load an image to an image box from a certain folder If you use this method, won t work on N:\ To load an image to a image control Image1.Picture = LoadPicture("H:\MyVBfolder\stop.gif") Load

More information

Allow local or remote applications to access the functionality in the VisualCron server through an easy to use interface.

Allow local or remote applications to access the functionality in the VisualCron server through an easy to use interface. VisualCron API VisualCron API... 1 Purpose... 2 COM support... 2 VB6 example... 2 VB6 code sample... 2 Architecture... 2 Object model... 3 Methods... 3 Events... 4 Communication... 5 Local... 5 Remote...

More information

GOQUO AGENT PORTAL USER GUIDE

GOQUO AGENT PORTAL USER GUIDE 1 GOQUO AGENT PORTAL USER GUIDE 2 1. General Overview This document is designed for the purpose of providing users (Agents as well as Admin user) with all main steps in the whole process, as well as detailed

More information

Visual Basic

Visual Basic 12-1 12-2 12-3 12-1.1 12-1.2 12-2.1 12-2.2 12-3.1 12-3.2 12-4 12-5 12-4.1 12-4.2 12-5.1 12-5.2 140 II 12-1 data file 12-1.1 record field 4 12-1 4 12 141 12-1... 12-1.2 sequential file random file binary

More information

MAILING SERVICES ORDER SYSTEM Security Login User Manual

MAILING SERVICES ORDER SYSTEM Security Login User Manual DEPARTMENT of MANAGEMENT & BUDGET AGENCY SERVICES / MAILING SERVICES MAILING SERVICES ORDER SYSTEM Security Login User Manual - 1 - Table of Contents Introduction... 3 Overview Web Page Descriptions 3

More information

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

Horizon Bullhorn Add-in User Guide v1.0

Horizon Bullhorn Add-in User Guide v1.0 Horizon Contents Introduction... 3 Information you will need... 3 Configuration... 3 Testing... 5 Dialling configuration... 5 Introduction This page will guide you through configuration and basic use of

More information

2. Click on the "FREE JAVA DOWNLOAD" button. Note: It will check their PC first and tell them if they have the latest version of Java.

2. Click on the FREE JAVA DOWNLOAD button. Note: It will check their PC first and tell them if they have the latest version of Java. SKILLPORT INSTRUCTIONS Skillport is a computer-based training website that you can access from any computer with internet access. Please note that the Skillport system requires Java (download available

More information

This project was originally conceived as a pocket database application for a mobile platform, allowing a

This project was originally conceived as a pocket database application for a mobile platform, allowing a Dynamic Database ISYS 540 Final Project Executive Summary This project was originally conceived as a pocket database application for a mobile platform, allowing a user to dynamically build, update, and

More information

SQL INJECTION IN WEB APPLICATIONS By Roshmi Choudhury,Officer (IT) Numaligarh Refinery Limited

SQL INJECTION IN WEB APPLICATIONS By Roshmi Choudhury,Officer (IT) Numaligarh Refinery Limited SQL INJECTION IN WEB APPLICATIONS By Roshmi Choudhury,Officer (IT) Numaligarh Refinery Limited Abstract It may be too late to shut the stable door after the horse has been stolen. Most companies in the

More information

STRING Represents group of characters Each character 1 byte CIE, AB304 BOOLEAN Logical Datatype, return true or False Memory Required 1

STRING Represents group of characters Each character 1 byte CIE, AB304 BOOLEAN Logical Datatype, return true or False Memory Required 1 2.2 Data representation 2.2.1 Data types A data type is a method of interpreting a pattern of bits. There are numerous different data types but here explained ones are according to CIE syllabus: Integer

More information

To start, go type in icatcard.ucmerced.edu in the the Address Bar and press enter to go the icatcard System.

To start, go type in icatcard.ucmerced.edu in the the Address Bar and press enter to go the icatcard System. 1. Enter the URL To start, go type in icatcard.ucmerced.edu in the the Address Bar and press enter to go the icatcard System. NOTE: If the page does not load, it is because of the following: You must be

More information

Addin Guide Microsoft Dynamics CRM

Addin Guide Microsoft Dynamics CRM Addin Guide Microsoft Dynamics CRM Summer 2012 v2.3 Licence Requirements: Go Integrator DB Page 2 Microsoft Dynamics CRM Addin Guide This document will guide you through configuration of the Microsoft

More information

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0

UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 UNIT 1 INTRODUCTION TO VISUAL BASICS 6.0 The VB6 IDE (Integrated Development Environment) is a very simple and fully featured IDE. If you start out programming in VB6 you may end up being too spoiled to

More information

NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE

NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE NE1R EAST UNIVERSITY, FA-CULTYOF ENGINEERING DEPARTMENT OF COMPUTER ENGINEERING COM400 GRADUATION PROJECT LIBRARY AND BOOKSTORE AND DATABASE SUBMITTED TO MRS BESiME ERIN SUBMITTED BY IMRAN SOHAIL & BEDRiYE

More information

Universitas Sumatera Utara

Universitas Sumatera Utara 43 L A M P I R A N 44 Penulisan Kode Program Aplikasi Game Tetris A. Kode program aplikasi game tetris untuk form1 ( MainF.frm ) adalah sebagai berikut. Dim BANK As Database Dim RS As DAO.Recordset Private

More information

CRM Integration. SalesForce 06/01/2016

CRM Integration. SalesForce 06/01/2016 CRM Integration SalesForce 06/01/2016 CRM Integration Contents Intro... 2 Information You ll Need... 2 Configuration... 2 Testing... 3 (407) Proxy Authentication Required Error... 3 Functionality... 4

More information

Visual Basic. The Integrated Development Environment. Menu Bar

Visual Basic. The Integrated Development Environment. Menu Bar Visual Basic Visual Basic is initiated by using the Programs option > Microsoft Visual Basic 6.0 > Visual Basic 6.0. Clicking the Visual Basic icon, we can view a copyright screen enlisting the details

More information

Horizon Integrator CRM. EMIS Add-in Guide

Horizon Integrator CRM. EMIS Add-in Guide Horizon Integrator CRM EMIS Add-in Guide Contents Introduction... 5 Information you will need... 5 Configuration... 6 Testing... 7 Dialling Configuration... 8 Introduction This page will guide you through

More information

Crystal Reports. Overview. Contents. Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic

Crystal Reports. Overview. Contents. Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic Using Crystal Reports Print Engine calls (API) in Microsoft Visual Basic Overview Contents This document describes how to preview a report using Microsoft (MS) Visual Basic, by making direct API calls

More information

To write a query with a functions of DDL commands such as create, alter, drop.

To write a query with a functions of DDL commands such as create, alter, drop. AIM: DBMS Lab Manual 1. DDL COMMANDS To write a query with a functions of DDL commands such as create, alter, drop. DDL COMMANDS: 1. CREATE A TABLE Syntax: create table tablename(columnname1 datatype1,

More information

Horizon Integrator CRM. Bullhorn Add-in Guide

Horizon Integrator CRM. Bullhorn Add-in Guide Horizon Integrator CRM Bullhorn Add-in Guide Contents Introduction... 5 Information You'll Need... 5 Configuration... 5 Testing... 7 Dialing configuration... 7 Introduction This page will guide you through

More information

NOTES: Procedures (module 15)

NOTES: Procedures (module 15) Computer Science 110 NAME: NOTES: Procedures (module 15) Introduction to Procedures When you use a top-down, structured program design, you take a problem, analyze it to determine what the outcome should

More information

VISUAL BASIC REVISION TOUR AND CONTROL STRUCTURE

VISUAL BASIC REVISION TOUR AND CONTROL STRUCTURE VISUAL BASIC REVISION TOUR AND CONTROL STRUCTURE Q1. Change the following code using FOR loop without effecting the output Dim count as integer ans = 1 count = 20 DO ans = ans * count count = count -2

More information

PG-MSR207 manual swipe magnetic card Reader/Writer User s Guide

PG-MSR207 manual swipe magnetic card Reader/Writer User s Guide PG-MSR207 manual swipe magnetic card Reader/Writer User s Guide Ver.7.01 Table of the contents Introduction.....3 Hardware specifications......3 Accessories of PG-MSR207...4 Using the PG-MSR207 Software...4

More information

Computer Science 330 Assignment

Computer Science 330 Assignment Computer Science 330 Assignment Note: All questions are compulsory. The marks for each question are given at the same place. Max. Marks: 20 (ii) Write your name, enrolment number, AI name and subject etc.

More information

WEB PROGRAMMING SCV1223. PHP : Authentication Example. Dr. Md Sah bin Hj Salam En. Jumail bin Taliba

WEB PROGRAMMING SCV1223. PHP : Authentication Example. Dr. Md Sah bin Hj Salam En. Jumail bin Taliba WEB PROGRAMMING SCV1223 PHP : Authentication Example Dr. Md Sah bin Hj Salam En. Jumail bin Taliba Topics Form Handling Redirection Connecting to Database User Authentication Session Authentication Case

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

3. Can every Do-Loop loop be written as a For-Next loop? Why or why not? 4. Name two types of files that can be opened and used in a VB program.

3. Can every Do-Loop loop be written as a For-Next loop? Why or why not? 4. Name two types of files that can be opened and used in a VB program. CE 311 K Fall 005 Second Exam - Examples Answers at the bottom. 1. What are two categories of flow control structures?. Name three logical operators in Visual Basic (VB). 3. Can every Do-Loop loop be written

More information

accounts in Administration.docx

accounts in Administration.docx Technology Help Desk 412 624 HELP [4357] technology.pitt.edu Accounts Administration for RC Administrators This document is intended for Responsibility Center Account Administrators and explains how to

More information

Connecting VirtueMart To PayPal (Live)

Connecting VirtueMart To PayPal (Live) Connecting VirtueMart To PayPal (Live) After testing is complete in the PayPal Sandbox and you are satisfied all is well, then its time to disconnect VirtueMart from the PayPal Sandbox and connect Virtuemart

More information

Webmail Instructions

Webmail Instructions Medway Grid for Learning Policies and Guidance Webmail Instructions (Version 1.10-29/04/2005) Connecting to the webmail service... 1 Accessing old email... 1 To Send a New Message... 3 Organising your

More information

Using CSE Cisco Anyconnect with 2FA

Using CSE Cisco Anyconnect with 2FA Using CSE Cisco Anyconnect with 2FA If you are using the Duo Mobile App in push mode: you open Anyconnect. 3. Enter your CSE UserName for the Username. 4. A new window will open. 5. Enter your CSE UserName

More information

Download the files from you will use these files to finish the following exercises.

Download the files from  you will use these files to finish the following exercises. Exercise 6 Download the files from http://www.peter-lo.com/teaching/x4-xt-cdp-0071-a/source6.zip, you will use these files to finish the following exercises. 1. This exercise will guide you how to create

More information

ElseIf: Another Conditional Statement

ElseIf: Another Conditional Statement If This, Then What? If color = true Then If thecolor = blue Then lblsuess.caption = blue fish lblsuess.caption = red fish lblsuess.caption = thenumber & & fish Take out a piece of paper. Write your name

More information

Albridge Integration User Guide

Albridge Integration User Guide Albridge Integration User Guide Copyright 1998-2006, E-Z Data, Inc. All Rights Reserved. No part of this documentation may be copied, reproduced, or translated in any form without the prior written consent

More information

Figure 1 - The password is 'Smith'

Figure 1 - The password is 'Smith' Using the Puppy School Booking system Setting up... 1 Your profile... 3 Add New... 4 New Venue... 6 New Course... 7 New Booking... 7 View & Edit... 8 View Venues... 10 Edit Venue... 10 View Courses...

More information

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM

PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM PROJECT ELECTRONIC CONTROL GAS INJECTION SYSTEM SOURCE CODE VISUAL BASIC Dim WR As Boolean Dim pw Dim data Dim oxg Public index1 Dim index2 Dim k Dim u Dim refd Dim datar1$(1000, 9) Dim c_data Dim A$(10)

More information

User Guide. The Bluffs Ocean South website Page 1. November, 2015

User Guide. The Bluffs Ocean South website Page 1. November, 2015 November 2015 User Guide The Bluffs Ocean South website Page 1 Alphabetical Table of Contents Alerts...3 Bulletin Board..7 Calendar...5,6 COA...3,4 Create your account / Register (First time users)...8-10

More information

Catalyst Development Corporation An Introduction to TCP/IP Programming With SocketWrench

Catalyst Development Corporation   An Introduction to TCP/IP Programming With SocketWrench Catalyst Development Corporation www.catalyst.com An Introduction to TCP/IP Programming With SocketWrench Copyright 1995-1998, Catalyst Development Corporation. All rights reserved. SocketWrench and SocketTools

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

Fast Food Store Group Boxes and Other User Controls

Fast Food Store Group Boxes and Other User Controls VISUAL BASIC Fast Food Store Group Boxes and Other User Controls Copyright 2014 Dan McElroy Sample Program Execution The customer receipt is updated each time another selection is made and the Enter button

More information

Internet Society Association Management System 2009 Chapter Portal. Member Portal Guide

Internet Society Association Management System 2009 Chapter Portal. Member Portal Guide Internet Society Association Management System 2009 Chapter Portal Member Portal Guide Introduction Welcome to the new Internet Society AMS Chapter Portal! ISOC has spent a good part of 2009 ensuring that

More information

Network Online Services How to Register Guide

Network Online Services How to Register Guide Network Online Services How to Register Guide June 2016 How to Register... 2 Subscription... 5 Update My Profile... 7 Update Registration Details... 7 Contact Details / Postal Address... 15 How To Register

More information

The following steps guide you through logging in to the Virtual Gateway:

The following steps guide you through logging in to the Virtual Gateway: Logon Process for the Virtual Gateway The following steps guide you through logging in to the Virtual Gateway: 1. Access the Virtual Gateway home page at www.mass.gov/vg and click the Logon link: Click

More information

EMPLOYEE PAYROLL SYSTEM

EMPLOYEE PAYROLL SYSTEM EX.NO:1 DATE: EMPLOYEE PAYROLL SYSTEM AIM: To develop a Employee Payroll System using visual Basic. PROCEDURE: 1. Problem statement Software is to be designed for supporting a computerized employee payroll

More information

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope.

7 The system should allow administrator to close a user profile. 8 The system shall make the old events invisible to avoid crowded geo scope. Requirement 1 2 3 4 5 6 Description The system shall upload pictures to a hashtag specified by the user, or to their current location The system shall allow a user to reserve a hashtag, allowing the user

More information

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer

Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer (9) Propose a mathematical formula to verify the authenticity of any product of the integers using a scale (9) and verified using computer. (9). Abstract This research aims to propose a mathematical formula

More information

Imports System.Data.SqlClient. Public Class Phonebook

Imports System.Data.SqlClient. Public Class Phonebook Imports System.Data.SqlClient Public Class Phonebook Dim vbdatabasedataset As New vbdatabasedataset() Dim PhonebookTableAdapter As New vbdatabasedatasettableadapters.phonebooktableadapter() Dim selection

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

Creating Your Parent Account

Creating Your Parent Account Parent Portal Guide for Parents 2016-2017 Creating Your Parent Account Before using the parent portal, you must pick up your access id and password from the school. This information must be picked up in

More information

Control Properties. Example: Program to change background color

Control Properties. Example: Program to change background color Control Properties Before writing an event procedure for the control to response to an event, you have to set certain properties for the control to determine its appearance and how will it work with the

More information

Prerequisites Before working on this exercise, you should be familiar with the following:

Prerequisites Before working on this exercise, you should be familiar with the following: Note: To complete this exercise, you need Microsoft Visual Basic 5.0 or Later. Objectives By the end of this Exercise, you will be familiar to: Logon to SAP from VB. Use of BAPI. Creation of Sales Order

More information