1. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( )

Size: px
Start display at page:

Download "1. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( )"

Transcription

1 st Q: Put ( ) or ( ) for the following sentence:. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( ) 3. VB.Net allows adding new Controls to ToolBox ( ) 4. We can use Window Media Player to view Text File ( ) 5. User can insert animated picture in ToolBox tool and view animated when run the program ( ) 6. The control tool AxWindowsMediaPlayer is one of toolbox default items ( ) 7. To use the control tool AxWindowsMediaPlayer we should first add it to toolbox ( ) 8. State maps saved in folder named Flags ( ) 9. To open Code Window press F5 button on key board ( ) 0. The return value type from the function GetDatafromExcelSheet is Data Table( ). Declaration function GetDatafromExcelSheet start with word Sub ( ) 2. Functions can t allow parameter ( ) 3. The Function GetDatafromExcelSheet have parameters FilePath and Sql ( ) second term - net revision

2 6. The returned Value from finction GetDatafromExcelSheet(FilePath As String, sql As String) As DataTable from type string ( ) 7. To open Code Window press F5 button on key board ( ) 8. The return value type from the function GetDatafromExcelSheet is Data Table( ) 9. Declaration function GetDatafromExcelSheet start with word Sub ( ) 20. Functions can t allow parameter ( ) 2. The Function GetDatafromExcelSheet have parameters FilePath and Sql ( ) 22. The returned Value from finction GetDatafromExcelSheet(FilePath As String, sql As String) As DataTable from type string ( ) 23. We use the word SUB to declare (Function) ( ) 24. The CoboBox tool have 2 valiues one is visible (DisplayMember) and one unvisible (ValueMember) ( ) 25. VB.Net language not allow to change default control s name ( ) 26. SelectedIndexChanged Event Test the selected item within the control ComboBox ( ) 27. We use the Try/Catch statement to catch and handling with runtime error ( ) second term - Net revision 2

3 28. Me reserved word Me used in the code window to indicate the end of the Method ( ) 29. Variable declaration start with the word Dim ( ) 30. VB.Net not allow declaration Variables without assignment value ( ) 3. VB.Net not allow declaration Constant without assignment value ( ) 32. There is many common properties for the major controls like Item property ( ) 33. To run the program in VB.Net press F4 ( ) 34. To add button to the program interface we click twice on it from ToolBox ( ) Q2:Compleet using words between bracts (Function 2 Dim FilePath Methods - Events). Function GetDatafromExcelSheet have parameter 2. Parameter in the function GetDatafromExcelSheet is the Excel file physical Location 3. Declaration function GetDatafromExcelSheet statrt by the word 4. To declare variables MyConnection and MyCommand using 5. In the code window te menu Class Name show but Name Method show second term - Net revision 3

4 Q3: Choose the correct answer. The connection between VB.Net and Data Base (DataAdapter Command Connection) 2. To open code window in VB.Net we press the key (Name F7 - Provider) 3. To change the name of lable tool we use the property (Name Text - Provider) 4. To change the text on the Button tool we use the property (Name Text - Provider) second term - Net revision 4

5 Q4: From the code below find: (Important) Function GetDataFromExcelSheet(ByVal FilePath As String, ByVal sql As String) As DataTable Dim MyConnection As New OleDb.OleDbConnection Dim MyCommand As New OleDb.OleDbCommand Dim da As New OleDb.OleDbDataAdapter Dim dt As New DataTable End Function Function Name. Parameters Name & Parameter Type The return value data type contain the Excel file path on the storage media contain The Command which deal with data in the Excel file We use the command Dim to declare the variables We declare the functions a. Variable to open connection with data file b. Variable run the query to collect the data c. Variable convert data from Excel file to dt d. Variable has a table to store data from Excel file second term - Net revision 5

6 Q5: Choose from A what is suitable in B A - DataTable 2 - DataSet 3 - Select 4 - Provider 5 - DataSource B A - Is one of SQL statment B - Source of data C - The connection between database and visual basic D - Is a class we can create variable from it in the memory to store database E - Is a class we can create variable from it in the memory to store database table Q6:Complete using words between bracts (Private Sub Try/Catch Me - & - Dim New DataTable dt twice). To open Code windows for any control tool click on the tool in design mood 2. The Event in the code window start with 3. In the command Dim dt As New DataTable, the variable name is and its datatype is 4. The word refer to the current form 5. We use statement to prevent runtime errors 6. We use the symbol to join many strings together to be one string 7. To declare variable we use the command second term - Net revision 6

7 Q7: Read the code and chose the correct result of using it. Me.lblDC.Text = dt.rows (0).Item(2).Tostring The Text property of the lbldc assign by the value of - The second row and first column in the table dt 2- The first row and second column in the table dt 3- The first row and third column in the table dt (counting start from 0) 2. Me.lblWR.Text = dt.rows (2).Item(4).Tostring The Text property of the lblwr assign by the value of - The second row and fourth column in the table dt 2- The third row and fifth column in the table dt (counting start from 0) 3- The second row and fifth column in the table dt Q8:Choose the correct answer:. Programming language used in the Arabic atlas project is (Visual J Visual C Visual Basic.Net) 2. (SelectedIndexChanged - SelectedIndex Index) is the default Event for ComboBox control 3. It is prefer the name of the button control start with (frm btm uro) 4. It is prefer the name of the label control start with (lbl btm cmb) 5. To use the variable in more than Event without errors, we should declare it in the ( Class Control Event) 6. If statement end with (Stop Sub End If Final If) 7. When we use If statement, if the condition is false so the program run the code after (Then Else End Sub) 8. The code V = ComboBox.SelectedItem mean - Put the ComboBox selected Item name in the variable V 2- Put the value in the Variable V in the ComboBox second term - Net revision 7

8 Q9:Arrange the steps to bring data from data base to the control tools ( ) Transfer data to the data table in the computer memory ( ) Connect with the data base that contains the data to be collected ( ) View the data by the Controls in the form ( ) Collect data from a database stored on any storage medium second term - Net revision 8

9 Answers Q: Put ( ) or (X) for the fowling sentences:. We insert elements inside (CompoBox) tool through Items property ( ) 2. ComboBox tool use to choose just one item from the list ( ) 3. VB.Net allows adding new Controls to ToolBox ( ) 4. We can use Window Media Player to view Text File (X) 5. User can insert animated picture in ToolBox tool and view animated when run the program (X) 6. The control tool AxWindowsMediaPlayer is one of toolbox default items (X) 7. To use the control tool AxWindowsMediaPlayer we should first add it to toolbox ( ) 8. State maps saved in folder named Flags (X) 9. To open Code Window press F5 button on key board ( ) 0. The return value type from the function GetDatafromExcelSheet is Data Table ( ). Declaration function GetDatafromExcelSheet start with word Sub ( ) second term - Net revision 9

10 2. Functions can t allow parameter ( ) 3. The Function GetDatafromExcelSheet have parameters FilePath and Sql ( ) 6. The returned Value from finction GetDatafromExcelSheet(FilePath As String, sql As String) As DataTable from type string ( ) 7. To open Code Window press F5 button on key board ( ) 8. The return value type from the function GetDatafromExcelSheet is Data Table ( ) 9. Declaration function GetDatafromExcelSheet start with word Sub ( ) 20. Functions can t allow parameter ( ) 2. The Function GetDatafromExcelSheet have parameters FilePath and Sql ( ) 22. The returned Value from finction GetDatafromExcelSheet(FilePath As String, sql As String) As DataTable from type string ( ) 23. We use the word SUB to declare (Function) ( ) 24. The CoboBox tool have 2 valiues one is visible (DisplayMember) and one unvisible (ValueMember) ( ) 25. VB.Net language not allow to change default control s name ( ) 26. SelectedIndexChanged Event Test the selected item within the control ComboBox ( ) second term - Net revision 0

11 27. We use the Try/Catch statement to catch and handling with runtime error ( ) 28. Me reserved word Me used in the code window to indicate the end of the Method ( ) 29. Variable declaration start with the word Dim ( ) 30. VB.Net not allow declaration Variables without assignment value ( ) 3. VB.Net not allow declaration Constant without assignment value ( ) 32. There is many common properties for the major controls like Item property ( ) 33. To run the program in VB.Net press F4 ( ) 34. To add button to the program interface we click twice on it from ToolBox ( ) Q2:Complet using words between bracts: (Function 2 Dim FilePath Methods - Events). Function GetDatafromExcelSheet have 2 parameter 2. Parameter FilePath in the function GetDatafromExcelSheet is the Excel file 3. Declaration function GetDatafromExcelSheet statrt by the word Function 4. To declare variables MyConnection and MyCommand using Dim 5. In the code window te menu Class Name show Events but Name Method show Methods second term - Net revision

12 Q3: Choose the correct answer:. The connection between VB.Net and Data Base (DataAdapter Command -Connection) 2. To open code window in VB.Net we press the key (Name F7 - Provider) 3. To change the name of lable tool we use the property (Name Text - Provider) 4. To change the text on the Button tool we use the property (Name Text - Provider) Q4: From the code below find: (Important) Function GetDataFromExcelSheet(ByVal FilePath As String, ByVal sql As String) As DataTable Dim MyConnection As New OleDb.OleDbConnection Dim MyCommand As New OleDb.OleDbCommand Dim da As New OleDb.OleDbDataAdapter Dim dt As New DataTable End Function Function Name GetDataFromExcelSheet Parameters Name FilePath & sql Parameter Type String The return value data type DataTable FilePath contain the Excel file path on the storage media Sql contain The Command which deal with data in the Excel file We use the command Dim to declare the variables We declare the functions a. Variable Myconnection to open connection with data file b. Variable Mycommand run the query to collect the data c. Variable da convert data from Excel file to dt d. Variable dt has a table to store data from Excel file second term - Net revision 2

13 Q5: Choose from A what is suitable in B A - DataTable 2 - DataSet 3 - Select 4 - Provider 5 - DataSource B A - Is one of SQL statment B - Source of data C - The connection between database and visual basic D - Is a class we can create variable from it in the memory to store database E - Is a class we can create variable from it in the memory to store database table Answer E 2 D 3 A 4 C 5 B second term - Net revision 3

14 Q6:Complete using words between bractes (Private Sub Try/Catch Me - & - Dim New DataTable dt twice). To open Code windows for any control tool click twice on the tool in design mood 2. The Event in the code window start with Private Sub 3. In the command Dim dt As New DataTable, the variable name is dt and its datatype is DataTable 4. The word Me refer to the current form 5. We use statement Try/Catch to prevent runtime errors 6. We use the symbol & to join many strings together to be one string 7. To declare variable we use the command Dim Q7: Read the code and choose the correct result of using it. Me.lblDC.Text = dt.rows (0).Item(2).Tostring The Text property of the lbldc assign by the value of - The second row and first column in the table dt 2- The first row and second column in the table dt 3- The first row and third column in the table dt (counting start from 0) 2. Me.lblWR.Text = dt.rows (2).Item(4).Tostring The Text property of the lblwr assign by the value of - The second row and fourth column in the table dt 2- The theird row and fifth column in the table dt (counting start from 0) 3- The second row and fifth column in the table dt second term - Net revision 4

15 Q8:Choose the correct answer:. Programming language used in the Arabic atlas project is (Visual J Visual C Visual Basic.Net 2. (SelectedIndexChanged - SelectedIndex Index) is the default Event for ComboBox control 3. It is prefer the name of the button control start with (frm btm uro) 4. It is prefer the name of the label control start with (lbl btm cmb) 5. To use the variable in more than Event without errors, we should declare it in the ( Class Control Event) 6. If statement end with (Stop Sub End If Final If) 7. When we use If statement, if the condition is false so the program run the code after (Then Else End Sub) 8. The code V = ComboBox.SelectedItem mean 9. Arrange the steps to bring data from data base to the control tools (3) Transfer data to the data table in the computer memory ( ) Connect with the data base that contains the data to be collected ( 4 ) View the data by the Controls in the form ( 2 ) Collect data from a database stored on any storage medium second term - Net revision 5

(1) First secondary. Net reision first term. 1- What solving problem steps? Rearrange solving problem steps?

(1) First secondary. Net reision first term. 1- What solving problem steps? Rearrange solving problem steps? 1- What solving problem steps? 1... 2... 3... 4... 5... 6... 2- Rearrange solving problem steps? (1) Question ( ) Prform algorithm ( ) Testing and debugging of the Program ( ) Define the outputs and inputs

More information

2017/ st Sec Final revision Final revision

2017/ st Sec Final revision Final revision Q1)Put ( ) or (x): 1. We open channel of communication between the programme that is created in Visual basic Dot Net language and Excel file by using ADO.NET tools. ( ) 2. Variable of type ( OleDbConnection)

More information

Copy Datatable Schema To Another Datatable Vb.net

Copy Datatable Schema To Another Datatable Vb.net Copy Datatable Schema To Another Datatable Vb.net NET Framework 4.6 and 4.5 The schema of the cloned DataTable is built from the columns of the first enumerated DataRow object in the source table The RowState

More information

Programming with ADO.NET

Programming with ADO.NET Programming with ADO.NET The Data Cycle The overall task of working with data in an application can be broken down into several top-level processes. For example, before you display data to a user on a

More information

Tutorial 5 Database. Adam Sek Keb Wira 12 A123 6 Amanah Tmn Mahkota

Tutorial 5 Database. Adam Sek Keb Wira 12 A123 6 Amanah Tmn Mahkota Task 1 Creating a database using Access 2010: Tutorial 5 Database 1. Using Microsoft Access create a database for; a. Name b. School c. Age d. Birth Cert No e. Year f. Address g. Date of birth 2. Type

More information

Index. AutoNumber data types, 154 6, 168 and Number data type, 181 AutoPostBack Property, 505, 511, 513 5, 527 8, AVG, 242, 247 8

Index. AutoNumber data types, 154 6, 168 and Number data type, 181 AutoPostBack Property, 505, 511, 513 5, 527 8, AVG, 242, 247 8 Index A Access queries, 10, 146, 191, 212, 220, 426 7 query design view, 403 types, 190, 236 table design, 141 tables, 10, 133, 136, 150, 426 Access Data Object, 136 7, 148 Access database, 136 8 table,

More information

Windows Database Applications

Windows Database Applications 3-1 Windows Database Applications Chapter 3 In this chapter, you learn to access and display database data on a Windows form. You will follow good OOP principles and perform the database access in a datatier

More information

OPC Systems.NET. Real-time HMI and SCADA software for.net applications.

OPC Systems.NET. Real-time HMI and SCADA software for.net applications. OPC Systems.NET Real-time HMI and SCADA software for.net applications. OPC Systems.NET central communications runs as a Windows Service. Read and write data to OPC Servers supporting Data Access 1.0a,

More information

Connection Example. Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date :

Connection Example. Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date : Connection Example Document ID : Connection_Example.PDF Author : Michele Harris Version : 1.1 Date : 2009-06-19 page 1 Table of Contents Connection Example... 2 Adding the Code... 2 Quick Watch myconnection...

More information

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank)

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank) Unit-1 (overview of Microsoft.net framework) 1. What is CLR? What is its use? (2 times) 2 2. What is garbage collection? 2 3. Explain MSIL 2 4. Explain CTS in detail 2 5. List the extension of files available

More information

This note is developed from the contents available in Fundamental to IS. Lab notes and exercises

This note is developed from the contents available in  Fundamental to IS. Lab notes and exercises Content: This note is developed from the contents available in www.homeandlearn.co.uk Fundamental to IS. Lab notes and exercises Introduction to VB.net and Databases Getting Started VB.net Forms Adding

More information

Building Windows Front Ends to SAS Software. Katie Essam Amadeus Software Limited 20 th May 2003

Building Windows Front Ends to SAS Software. Katie Essam Amadeus Software Limited 20 th May 2003 Building Windows Front Ends to SAS Software Katie Essam Amadeus Software Limited 20 th May 2003 Topics Introduction What is.net? SAS Software s Interoperability Communicating with SAS from VB.NET Conclusions

More information

VB.NET. Q.1 Explain.Net Framework Architecture. OR Components of.net Framework

VB.NET. Q.1 Explain.Net Framework Architecture. OR Components of.net Framework Q.1 Explain.Net Framework Architecture. OR Components of.net Framework Net Framework is a platform that provides tools and technologies to develop Windows, Web and Enterprise applications. It mainly contains

More information

Windows Database Updates

Windows Database Updates 5-1 Chapter 5 Windows Database Updates This chapter provides instructions on how to update the data, which includes adding records, deleting records, and making changes to existing records. TableAdapters,

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

Chapter 12. OOP: Creating Object- Oriented Programs. McGraw-Hill. Copyright 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved.

Chapter 12. OOP: Creating Object- Oriented Programs. McGraw-Hill. Copyright 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. Chapter 12 OOP: Creating Object- Oriented Programs McGraw-Hill Copyright 2011 by The McGraw-Hill Companies, Inc. All Rights Reserved. Objectives (1 of 2) Use object-oriented terminology correctly. Create

More information

Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video:

Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video: Table of Contents: Microsoft Power Tools for Data Analysis #7 Power Query 6 Types of Merges/ Joins 9 Examples Notes from Video: 1. Power Query Has Six Types of Merges / Joins... 2 2. What is a Merge /

More information

Volume CREATIVE DATA TECHNOLOGIES, INC. DATALAYER.NET. Getting Started Guide

Volume CREATIVE DATA TECHNOLOGIES, INC. DATALAYER.NET. Getting Started Guide Volume 1 CREATIVE DATA TECHNOLOGIES, INC. DATALAYER.NET Getting Started Guide TABLE OF CONTENTS Table of Contents Table of Contents... 1 Chapter 1 - Installation... 2 1.1 Installation Steps... 2 1.1 Creating

More information

C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies. Objectives (1 of 2)

C# Programming: From Problem Analysis to Program Design 2nd Edition. David McDonald, Ph.D. Director of Emerging Technologies. Objectives (1 of 2) 13 Database Using Access ADO.NET C# Programming: From Problem Analysis to Program Design 2nd Edition David McDonald, Ph.D. Director of Emerging Technologies Objectives (1 of 2) Retrieve and display data

More information

Chapter 2 Exploration of a Visual Basic.Net Application

Chapter 2 Exploration of a Visual Basic.Net Application Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the

More information

Workbooks (File) and Worksheet Handling

Workbooks (File) and Worksheet Handling Workbooks (File) and Worksheet Handling Excel Limitation Excel shortcut use and benefits Excel setting and custom list creation Excel Template and File location system Advanced Paste Special Calculation

More information

A201 Object Oriented Programming with Visual Basic.Net

A201 Object Oriented Programming with Visual Basic.Net A201 Object Oriented Programming with Visual Basic.Net By: Dr. Hossein Computer Science and Informatics IU South Bend 1 What do we need to learn in order to write computer programs? Fundamental programming

More information

Lab 4: Adding a Windows User-Interface

Lab 4: Adding a Windows User-Interface Lab 4: Adding a Windows User-Interface In this lab, you will cover the following topics: Creating a Form for use with Investment objects Writing event-handler code to interact with Investment objects Using

More information

Chapter 3. Windows Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill

Chapter 3. Windows Database Applications The McGraw-Hill Companies, Inc. All rights reserved. McGraw-Hill Chapter 3 Windows Database Applications McGraw-Hill 2010 The McGraw-Hill Companies, Inc. All rights reserved. Objectives - 1 Retrieve and display data from a SQL Server database on Windows forms Use the

More information

Create a Windows Application that Reads- Writes PI Data via PI OLEDB. Page 1

Create a Windows Application that Reads- Writes PI Data via PI OLEDB. Page 1 Create a Windows Application that Reads- Writes PI Data via PI OLEDB Page 1 1.1 Create a Windows Application that Reads-Writes PI Data via PI OLEDB 1.1.1 Description The goal of this lab is to learn how

More information

ADO.NET for Beginners

ADO.NET for Beginners Accessing Database ADO.NET for Beginners Accessing database using ADO.NET in C# or VB.NET This tutorial will teach you Database concepts and ADO.NET in a very simple and easy-to-understand manner with

More information

All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution

All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution All India Council For Technical Skill Development (AICTSD) In Association with IITians Embedded Technosolution Dot NET with SQL Chapter 1 General.NET introduction Overview of the.net Platform How.NET is

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

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

Should read: Model First Reads: AutoIncementStep and AutoIncrementSeed

Should read: Model First Reads: AutoIncementStep and AutoIncrementSeed MCTS Self-Paced Training Kit (Exam 70-516): Accessing Data with Microsoft.NET Framework 4 ISBN: 978-0-7356-2739-0 First printing: June, 2011 To ensure the ongoing accuracy of this book and its companion

More information

Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500

Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500 Mastering VB.NET using Visual Studio 2010 Course Length: 5 days Price: $2,500 Summary Each day there will be a combination of presentations, code walk-throughs, and handson projects. The final project

More information

ASP.NET Web Forms Programming Using Visual Basic.NET

ASP.NET Web Forms Programming Using Visual Basic.NET ASP.NET Web Forms Programming Using Visual Basic.NET Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

PREPARATION. Install MyGeneration and add the doodads project to your solution

PREPARATION. Install MyGeneration and add the doodads project to your solution PREPARATION Database Design Tips (MS SQL Server) 1. For each table, use a single identity column as the primary key. 2. For each table, add a column named "RowVersion" with a datatype of timestamp. (doodads

More information

HelpAndManual_unregistered_evaluation_copy NET Reports 3.0

HelpAndManual_unregistered_evaluation_copy NET Reports 3.0 HelpAndManual_unregistered_evaluation_copy NET Reports 3.0 HelpAndManual_unregistered_evaluation_copy NET Reports 3.0 All rights reserved. No parts of this work may be reproduced in any form or by any

More information

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank)

M. K. Institute Of Computer Studies, Bharuch SYBCA SEM IV VB.NET (Question Bank) Unit-1 (overview of Microsoft.net framework) 1. What is CLR? What is its use? (2 times) 2 2. What is garbage collection? 2 3. Explain MSIL (mar/apr-201) 2 times 2 4. Explain CTS in detail 2 5. List the

More information

COPYRIGHTED MATERIAL. Visual Basic: The Language. Part 1

COPYRIGHTED MATERIAL. Visual Basic: The Language. Part 1 Part 1 Visual Basic: The Language Chapter 1: Getting Started with Visual Basic 2010 Chapter 2: Handling Data Chapter 3: Visual Basic Programming Essentials COPYRIGHTED MATERIAL Chapter 1 Getting Started

More information

Main Window. Overview. Do this Click the New Report link. Create a New Report.

Main Window. Overview. Do this Click the New Report link. Create a New Report. Overview Main Window Create a new report from a table or existing view Create a new report by defining a custom join Work with your custom reports Open a recently accessed custom report Work with reports

More information

MCAD/MCSD Developing and Implementing Web Applications with Visual Basic.NET and Visual Studio.NET Training Guide: Exam

MCAD/MCSD Developing and Implementing Web Applications with Visual Basic.NET and Visual Studio.NET Training Guide: Exam MCAD/MCSD Developing and Implementing Web Applications with Visual Basic.NET and Visual Studio.NET Training Guide: Exam 70-305 Copyright 2003 by Que Publishing International Standard Book Number: 0789728184

More information

Tackle Complex Data Binding in WinForms 2.0

Tackle Complex Data Binding in WinForms 2.0 Tackle Complex Data Binding in WinForms 2.0 Brian Noyes Principal Software Architect IDesign,, Inc. (www.idesign.net( www.idesign.net) About Brian Microsoft MVP in ASP.NET Writing MSDN Magazine, CoDe Magazine,

More information

MapMatrix NetGIS Application Objects Users Guide. Version 2.3

MapMatrix NetGIS Application Objects Users Guide. Version 2.3 MapMatrix NetGIS Application Objects Users Guide Version 2.3 CONTENTS 1 Overview of MapMatrix NetGIS... 3 1.1 MapMatrix NetGIS Features... 3 1.2 Operating System Requirements... 3 1.3 The MapMatrix Architecture...

More information

To open an existing XperiDo template, go to the Connection panel by clicking the large blue XD icon in the upper left corner of the XperiDo ribbon.

To open an existing XperiDo template, go to the Connection panel by clicking the large blue XD icon in the upper left corner of the XperiDo ribbon. Templates Opening an existing template Via the templates folder Via the datasets folder Speeding up things Import and export templates Export Import Documents without a data source Opening an existing

More information

Combining kbmmw and kbmwabd for kbmwabd v and kbmmw v

Combining kbmmw and kbmwabd for kbmwabd v and kbmmw v Combining kbmmw and kbmwabd for kbmwabd v. 2.44+ and kbmmw v. 1.00+ The combination of kbmwabd and kbmmw gives a very powerful web application setup with advanced database handling and separation of business

More information

Unit 6 - Software Design and Development LESSON 4 DATA TYPES

Unit 6 - Software Design and Development LESSON 4 DATA TYPES Unit 6 - Software Design and Development LESSON 4 DATA TYPES Previously Paradigms Choice of languages Key features of programming languages sequence; selection eg case, if then else; iteration eg repeat

More information

Human Factors Engineering Short Course Topic: A Simple Numeric Entry Keypad

Human Factors Engineering Short Course Topic: A Simple Numeric Entry Keypad Human Factors Engineering Short Course 2016 Creating User Interface Prototypes with Microsoft Visual Basic for Applications 3:55 pm 4:55 pm, Wednesday, July 27, 2016 Topic: A Simple Numeric Entry Keypad

More information

Writing Reports with Report Designer and SSRS 2014 Level 1

Writing Reports with Report Designer and SSRS 2014 Level 1 Writing Reports with Report Designer and SSRS 2014 Level 1 Duration- 2days About this course In this 2-day course, students are introduced to the foundations of report writing with Microsoft SQL Server

More information

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide

TRAINING GUIDE FOR OPC SYSTEMS.NET. Simple steps to successful development and deployment. Step by Step Guide TRAINING GUIDE FOR OPC SYSTEMS.NET Simple steps to successful development and deployment. Step by Step Guide SOFTWARE DEVELOPMENT TRAINING OPC Systems.NET Training Guide Open Automation Software Evergreen,

More information

TABLE OF CONTENTS. Data binding Datagrid 10 ComboBox 10 DropdownList 10

TABLE OF CONTENTS. Data binding Datagrid 10 ComboBox 10 DropdownList 10 TABLE OF CONTENTS Preparation Database Design Tips 2 Installation and Setup 2 CRUD procedures 3 doodads for tables 3 doodads for views 3 Concrete classes 3 ConnectionString 4 Enhancing concrete classes

More information

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet

Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet Lab 7 Macros, Modules, Data Access Pages and Internet Summary Macros: How to Create and Run Modules vs. Macros 1. Jumping to Internet 1. Macros 1.1 What is a macro? A macro is a set of one or more actions

More information

Using Microsoft Access to Create Queries and Write SQL Statements

Using Microsoft Access to Create Queries and Write SQL Statements Using Microsoft Access to Create Queries and Write SQL Statements Using Microsoft Access Northwind Database Start up Access and then click the Help Sample Databases Northwind Sample Database, as illustrated

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

Microsoft MB Microsoft CRM Extending MS CRM 1.2 with.net.

Microsoft MB Microsoft CRM Extending MS CRM 1.2 with.net. Microsoft MB2-228 Microsoft CRM Extending MS CRM 1.2 with.net http://killexams.com/exam-detail/mb2-228 Answer: A, C QUESTION: 140 Which of the following statements are true for Microsoft CRM object dependencies?

More information

The following are required to duplicate the process outlined in this document.

The following are required to duplicate the process outlined in this document. Technical Note ClientAce WPF Project Example 1. Introduction Traditional Windows forms are being replaced by Windows Presentation Foundation 1 (WPF) forms. WPF forms are fundamentally different and designed

More information

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio

COPYRIGHTED MATERIAL. Contents. Part I: C# Fundamentals 1. Chapter 1: The.NET Framework 3. Chapter 2: Getting Started with Visual Studio Introduction XXV Part I: C# Fundamentals 1 Chapter 1: The.NET Framework 3 What s the.net Framework? 3 Common Language Runtime 3.NET Framework Class Library 4 Assemblies and the Microsoft Intermediate Language

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

ComponentOne. MultiSelect for WinForms

ComponentOne. MultiSelect for WinForms ComponentOne MultiSelect for WinForms GrapeCity US GrapeCity 201 South Highland Avenue, Suite 301 Pittsburgh, PA 15206 Tel: 1.800.858.2739 412.681.4343 Fax: 412.681.4384 Website: https://www.grapecity.com/en/

More information

Practical Database Programming with Visual Basic.NET

Practical Database Programming with Visual Basic.NET Practical Database Programming with Visual Basic.NET IEEE Press 445 Hoes Lane Piscataway, NJ 08854 IEEE Press Editorial Board Lajos Hanzo, Editor in Chief R. Abari M. El-Hawary S. Nahavandi J. Anderson

More information

Chapter. Web Applications

Chapter. Web Applications Chapter Web Applications 144 Essential Visual Basic.NET fast Introduction Earlier versions of Visual Basic were excellent for creating applications which ran on a Windows PC, but increasingly there is

More information

VB.NET. Exercise 1: Creating Your First Application in Visual Basic.NET

VB.NET. Exercise 1: Creating Your First Application in Visual Basic.NET VB.NET Module 1: Getting Started This module introduces Visual Basic.NET and explains how it fits into the.net platform. It explains how to use the programming tools in Microsoft Visual Studio.NET and

More information

1. What is the definition of a problem? 2. How to solve problems? 3. What is meant by Algorithm? 4. What is a Program testing? 5. What is Flowchart?

1. What is the definition of a problem? 2. How to solve problems? 3. What is meant by Algorithm? 4. What is a Program testing? 5. What is Flowchart? 1. What is the definition of a problem? 2. How to solve problems? 3. What is meant by Algorithm? 4. What is a Program testing? 5. What is Flowchart? 6. Define Visual Basic.NET? 7. Define programming language?

More information

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks)

Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Microsoft ASP.NET Whole Course Syllabus upto Developer Module (Including all three module Primary.NET + Advance Course Techniques+ Developer Tricks) Introduction of.net Framework CLR (Common Language Run

More information

GUI Design and Event- Driven Programming

GUI Design and Event- Driven Programming 4349Book.fm Page 1 Friday, December 16, 2005 1:33 AM Part 1 GUI Design and Event- Driven Programming This Section: Chapter 1: Getting Started with Visual Basic 2005 Chapter 2: Visual Basic: The Language

More information

Microsoft Visual C# 2005: Developing Applications Table of Contents

Microsoft Visual C# 2005: Developing Applications Table of Contents Table of Contents INTRODUCTION...INTRO-1 Prerequisites...INTRO-2 Installing the Practice Files...INTRO-3 Software Requirements...INTRO-3 Sample Database...INTRO-3 Security...INTRO-4 Installation...INTRO-4

More information

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II)

Start Visual Basic. Session 1. The User Interface Form (I/II) The Visual Basic Programming Environment. The Tool Box (I/II) Session 1 Start Visual Basic Use the Visual Basic programming environment Understand Essential Visual Basic menu commands and programming procedure Change Property setting Use Online Help and Exit Visual

More information

6.1 Understand Relational Database Management Systems

6.1 Understand Relational Database Management Systems L E S S O N 6 6.1 Understand Relational Database Management Systems 6.2 Understand Database Query Methods 6.3 Understand Database Connection Methods MTA Software Fundamentals 6 Test L E S S O N 6. 1 Understand

More information

Philadelphia University Faculty of Information Technology. Visual Programming. Using C# -Work Sheets-

Philadelphia University Faculty of Information Technology. Visual Programming. Using C# -Work Sheets- Philadelphia University Faculty of Information Technology Visual Programming Using C# -Work Sheets- Prepared by: Dareen Hamoudeh Eman Al Naji 2018 Work Sheet 1 Hello World! 1. Create a New Project, Name

More information

UNIT 1. Introduction to Microsoft.NET framework and Basics of VB.Net

UNIT 1. Introduction to Microsoft.NET framework and Basics of VB.Net UNIT 1 Introduction to Microsoft.NET framework and Basics of VB.Net 1 SYLLABUS 1.1 Overview of Microsoft.NET Framework 1.2 The.NET Framework components 1.3 The Common Language Runtime (CLR) Environment

More information

VB. Microsoft. MS.NET Framework 3.5 ADO.NET Application Development

VB. Microsoft. MS.NET Framework 3.5 ADO.NET Application Development Microsoft 70-561-VB MS.NET Framework 3.5 ADO.NET Application Development Download Full Version : http://killexams.com/pass4sure/exam-detail/70-561-vb B. Catch ex As System.Data.SqlClient.SqlException For

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 070-548(VB) Title : PRO:Design & Develop Wdws-Based

More information

SQL Injection. SQL injection is a code injection technique that might destroy your database.

SQL Injection. SQL injection is a code injection technique that might destroy your database. SQL Injection SQL injection is a code injection technique that might destroy your database. SQL injection is one of the most common web hacking techniques. SQL injection is the placement of malicious code

More information

SAP BAPI Connector. An ICONICS White Paper

SAP BAPI Connector. An ICONICS White Paper SAP BAPI Connector An ICONICS White Paper August 2006 100 Foxborough Blvd Foxborough, MA 02035 508.543.8600 Fax 508.543.1503 E- mail info@iconics.com www.iconics.com CONTENTS 1 INTRODUCTION 1 1.1 REVISION

More information

Data Binding with Windows Forms 2.0

Data Binding with Windows Forms 2.0 Data Binding with Windows Forms 2.0 Brian Noyes Chief Architect IDesign,, Inc. (www.idesign.net( www.idesign.net) About Brian Microsoft Solution Architect MVP Writing MSDN Magazine, CoDe Magazine, The

More information

Creating a Dynamo with VBA Scripts

Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA Scripts Creating a Dynamo with VBA 1 Table of Contents 1. CREATING A DYNAMO WITH VBA... 3 1.1 NAMING CONVENTIONS FOR DYNAMO OBJECTS...3 1.2 CREATING A DYNAMO...4 1.3 DESIGNING

More information

.NET and DB2 united with IBM DB2.NET Data Provider Objectives :.NET ADO.NET DB2 and ADO.NET DB2 - ADO.NET applications

.NET and DB2 united with IBM DB2.NET Data Provider Objectives :.NET ADO.NET DB2 and ADO.NET DB2 - ADO.NET applications .NET and DB2 united with IBM DB2.NET Data Provider Objectives :.NET ADO.NET DB2 and ADO.NET DB2 - ADO.NET applications ABIS Training & Consulting 1 DEMO Win Forms client application queries DB2 according

More information

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6

Contents. Using Interpreters... 5 Using Compilers... 5 Program Development Life Cycle... 6 Contents ***Introduction*** Introduction to Programming... 1 Introduction... 2 What is a Program?... 2 Role Played by a Program to Perform a Task... 2 What is a Programming Language?... 3 Types of Programming

More information

UNIT V - ADO.NET Database Programming with ADO.NET- Data Presentation Using the DataGridView Control- DataGridView- Updating the Original Database.

UNIT V - ADO.NET Database Programming with ADO.NET- Data Presentation Using the DataGridView Control- DataGridView- Updating the Original Database. Semester Course Code Course Title L P C IV UCS15402 Visual Basic.NET 3 2 0 UNIT I - VISUAL BASIC.NET and FRAME WORK The Common Type System- The Common Language Specification- The Common Language Runtime

More information

DATA MIRROR FOR PT USER S GUIDE. Multiware, Inc. Oct 9, 2012 *Changes are in red font*

DATA MIRROR FOR PT USER S GUIDE. Multiware, Inc. Oct 9, 2012 *Changes are in red font* DATA MIRROR FOR PT USER S GUIDE Multiware, Inc. Oct 9, 2012 *Changes are in red font* Table of Contents 1. Introduction...3 2. Prerequisites...4 3. MirrorControl Class...5 3.1 Methods...5 ClearALLPTData...5

More information

2 USING VB.NET TO CREATE A FIRST SOLUTION

2 USING VB.NET TO CREATE A FIRST SOLUTION 25 2 USING VB.NET TO CREATE A FIRST SOLUTION LEARNING OBJECTIVES GETTING STARTED WITH VB.NET After reading this chapter, you will be able to: 1. Begin using Visual Studio.NET and then VB.NET. 2. Point

More information

20461: Querying Microsoft SQL Server 2014 Databases

20461: Querying Microsoft SQL Server 2014 Databases Course Outline 20461: Querying Microsoft SQL Server 2014 Databases Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions,

More information

Best Practice - Programming Ribbons

Best Practice - Programming Ribbons Best Practice - Programming Ribbons Copyright 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc., registered in the U.S. and/or other countries. All other trademarks

More information

Visual Studio.NET for AutoCAD Programmers

Visual Studio.NET for AutoCAD Programmers December 2-5, 2003 MGM Grand Hotel Las Vegas Visual Studio.NET for AutoCAD Programmers Speaker Name: Andrew G. Roe, P.E. Class Code: CP32-3 Class Description: In this class, we'll introduce the Visual

More information

1. Given the name of a movie studio, find the net worth of its president.

1. Given the name of a movie studio, find the net worth of its president. 1. Given the name of a movie studio, find the net worth of its president. CREATE FUNCTION GetNetWorth( studio VARCHAR(30) ) RETURNS DECIMAL(9,3) DECLARE worth DECIMAL(9,3); SELECT networth INTO worth FROM

More information

Selenium Open Source Test Automation Framework Keyword Naming Conventions for Developers (Web)

Selenium Open Source Test Automation Framework Keyword Naming Conventions for Developers (Web) Version 1.1 13 Aug 2013 D I S C L A I M E R Verbatim copying and distribution of this entire article are permitted worldwide, without royalty, in any medium, provided this notice is preserved. Table of

More information

By Susan L. Miertschin. Separate the data access logic from the presentation layer

By Susan L. Miertschin. Separate the data access logic from the presentation layer Parameterize a Query By Susan L. Miertschin 2003 by The McGraw-Hill Companies, Inc. All rights reserved. Review - Data Access Layer Separate the data access logic from the presentation layer Open a Web

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

Creating a File DSN. 1) Go to Control Panel Administrative Tools Data Sources (ODBC) 2) Select the File DSN tab. 3) Click Add

Creating a File DSN. 1) Go to Control Panel Administrative Tools Data Sources (ODBC) 2) Select the File DSN tab. 3) Click Add Creating a File DSN 1) Go to Control Panel Administrative Tools Data Sources (ODBC) 2) Select the File DSN tab 3) Click Add 4) Select SQL Server and click Next > 5) Type the name of the Data Source and

More information

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query

University of Wisconsin System SFS Business Process RPT Basic PeopleSoft Query Contents PeopleSoft Query Overview... 1 Process Detail... 2 I. Running the Query... 2 II. Query Actions... 5 III. Planning a New Query... 5 IV. How to Find Out Which Record(s) to Use... 5 V. Building a

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

Visual Basic.NET. 1. Which language is not a true object-oriented programming language?

Visual Basic.NET. 1. Which language is not a true object-oriented programming language? Visual Basic.NET Objective Type Questions 1. Which language is not a true object-oriented programming language? a.) VB.NET b.) VB 6 c.) C++ d.) Java Answer: b 2. A GUI: a.) uses buttons, menus, and icons.

More information

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

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

More information

Chapter 2 Visual Basic, Controls, and Events. 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events

Chapter 2 Visual Basic, Controls, and Events. 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events Chapter 2 Visual Basic, Controls, and Events 2.1 An Introduction to Visual Basic 2.2 Visual Basic Controls 2.3 Visual Basic Events 1 2.1 An Introduction to Visual Basic 2010 Why Windows and Why Visual

More information

Contents 1. OVERVIEW GUI Working with folders in Joini... 4

Contents 1. OVERVIEW GUI Working with folders in Joini... 4 Joini User Guide Contents 1. OVERVIEW... 3 1.1. GUI... 3 2. Working with folders in Joini... 4 2.1. Creating a new folder... 4 2.2. Deleting a folder... 5 2.3. Opening a folder... 5 2.4. Updating folder's

More information

2. A GUI A. uses buttons, menus, and icons B. should be easy for a user to manipulate C. both (a) and (b) D. stands for Graphic Use Interaction

2. A GUI A. uses buttons, menus, and icons B. should be easy for a user to manipulate C. both (a) and (b) D. stands for Graphic Use Interaction 1. Which language is not a true object-oriented programming language? A. VB 6 B. VB.NET C. JAVA D. C++ 2. A GUI A. uses buttons, menus, and icons B. should be easy for a user to manipulate C. both (a)

More information

Introduction. What is Recursive Data? Reporting on Hierarchical Recursive data using MS Reporting Services Asif Sayed

Introduction. What is Recursive Data? Reporting on Hierarchical Recursive data using MS Reporting Services Asif Sayed Introduction I will start with a question here. How many of you had chance to interact with Employee table from sample database Northwind? There you go I can imagine countless hands in air, and why not

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

CS708 Lecture Notes. Visual Basic.NET Object-Oriented Programming. Implementing Business Objects Data Access Code.

CS708 Lecture Notes. Visual Basic.NET Object-Oriented Programming. Implementing Business Objects Data Access Code. CS708 Lecture Notes Visual Basic.NET Object-Oriented Programming Implementing Business Objects Data Access Code Part (III of III) (Lecture Notes 3C) Professor: A. Rodriguez CHAPTER 7 BUSINESS OBJECTS DATA

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

VS2010 C# Programming - DB intro 1

VS2010 C# Programming - DB intro 1 VS2010 C# Programming - DB intro 1 Topics Database Relational - linked tables SQL ADO.NET objects Referencing Data Using the Wizard Displaying data 1 VS2010 C# Programming - DB intro 2 Database A collection

More information

Database Tutorials

Database Tutorials Database Tutorials Hello everyone welcome to database tutorials. These are going to be very basic tutorials about using the database to create simple applications, hope you enjoy it. If you have any notes

More information

Chapter 6 Sub Procedures

Chapter 6 Sub Procedures Sub Procedures A set of statements that perform a specific task. Divide a program into smaller, more manageable blocks of code. An event procedure is written for a specific object event, while a sub procedure

More information

19. VB Project and Menu Design

19. VB Project and Menu Design 19. VB Project and Menu Design 19.1 Working with Projects As you develop an application, you work with a project to manage all the different files that make up the application. A VB project consists of:

More information