Visual Basic. murach's TRAINING & REFERENCE

Size: px
Start display at page:

Download "Visual Basic. murach's TRAINING & REFERENCE"

Transcription

1 TRAINING & REFERENCE murach's Visual Basic 2008 Anne Boehm lbm Mike Murach & Associates, Inc. H (559) Fax: (559) murachbooks@murach.com

2 Contents Introduction xiii Section 1 introduction to Visual Basic programming Chapter 1 An introduction to Visual Studio 3 Chapter 2 How to design a Windows Forms application 35 Chapter 3 How to code and test a Windows Forms application 57 Section 2 The Visual Basic language essentials Chapter 4 How to work with numeric and string data 99 Chapter 5 How to code control structures 141 Chapter 6 How to code procedures and event handlers 167 Chapter 7 How to handle exceptions Chapter 8 How to work with arrays and validate data 189 and collections 223 Chapter 9 How to work with dates and strings 263 Chapter 10 More skills for working with Windows forms and controls 293 Chapter 11 How to create and use classes 331 Chapter 12 How to debug an application 369 Section 3 Database programming Chapter 13 An introduction to database programming 395 Chapter 14 How to work with data sources and datasets 427 Chapter 15 How to work with bound controls and parameterized queries 469 Chapter 16 How to use ADO.NET to write your Section 4 Object-oriented programming own data access code 505 Chapter 17 How to work with default properties, events, and operators 545 Chapter 18 How to work with inheritance 571 Chapter 19 How to work with interfaces and generics 609 Chapter 20 How to organize and document your classes 637 Section 5 Other programming skills Chapter 21 How to work with files and data streams 657 Chapter 22 How to work with XML files 681 Chapter 23 How to use LINQ 703 Chapter 24 How to enhance the user interface 729 Chapter 25 How to deploy an application 763 Reference aids Appendix A How to install and use the software and files for this book 789 Index 799

3 ExpelYid^cfl ootttottts Section 1 Chapter 1 Introduction to Visual Basic programming An introduction to Visual Studio An introduction to.net development 4 Windows Forms and Web Forms applications 4 Visual Studio and the.net programming languages 6 The.NET Framework 8 The Visual Studio IDE 10 How a Visual Basic application is compiled and run 12 How Visual Basic differs from the other.net languages 12 A tour of the Visual Studio IDE 14 How to start Visual Studio 14 How to open or close an existing project 16 Some possible menu variations 16 How to use the Form Designer 18 How to use the Code Editor 20 How to use the Solution Explorer 22 How to work with Visual Studio's windows 24 How to test a project 26 How to build a project 26 How to run a project 26 How to upgrade projects and change.net Framework versions 28 How to upgrade projects created in earlier versions of Visual Basic.NET 28 How to change the.net Framework version used by a project 30 Chapter 2 How to design a Windows Forms application How to set options and create a new project 36 How to set the Visual Studio options 36 How to change the import and export settings 36 How to create a new project 38 How to design a form 40 The design of the Invoice Total form 40 How to add controls to a form 42 How to set properties 44 Common properties for forms and controls 46 How to add navigation features 48 The property settings for the Invoice Total form 50 How to use Document Outline view 50 How to name and save the files of a project 52 How to name the files of a project 52 How to save the files of a project 52 Chapter 3 How to code and test a Windows Forms application An introduction to coding 58 Introduction to object-oriented programming 58 How to refer to properties, methods, and events 60 How an application responds to events 62

4 How to add code to a form 64 How to create an event handler for the default event of a form or control 64 How IntelliSense helps you enter the code for a form 66 The event handlers for the Invoice Total form 68 How to code with a readable style 70 How to code comments 72 How to detect and correct syntax errors 74 Other skills for working with code 76 How to use the toolbar buttons 76 How to collapse or expand code 76 How to print the source code 76 How to use code snippets 78 How to use the Smart Compile Auto Correction feature 82 How to use the My feature 84 How to get help information 86 How to run, test, and debug a project 88 How to run a project 88 How to test a project 90 - How to debug runtime errors 92 Section 2 Chapter 4 The Visual Basic language essentials How to work with numeric and string data How to work with the built-in value types 100 The built-in value types 10 How to declare and initialize variables 102 How to declare and initialize constants 102 How to code arithmetic expressions 104 How to code assignment statements 106 How to work with the order of precedence 108 How to use casting 110 How to change the type semantics 112 How to use the Math class 114 How to work with strings 116 How to declare and initialize a string 116 How to join and append strings 116 How to convert data types 118 The.NET structures and classes that define data types 118 How to use Visual Basic functions to convert data types 120 How to use methods to convert data types 122 How to use three of the formatting functions 124 How to use methods to convert numbers to formatted strings 126 Three other skills for working with data 128 How to work with scope 128 How to declare and use enumerations 130 How to work with nullable types I32 Two versions of the Invoice Total application 134 The basic Invoice Total application The enhanced Invoice Total application

5 Chapter 5 How to code control structures How to code Boolean expressions 142 How to use the relational operators 142 How to use the logical operators 144 How to code conditional statements 146 How to code If statements 146 How to code Select Case statements 148 An enhanced version of the Invoice Total application 150 How to code loops 152 How to code For loops 152 How to code Do loops 154 How to use Exit and Continue statements 156 Debugging techniques for programs with loops 158 The Future Value application 160 The design and property settings for the form 160 The code for the form 162 Chapter 6 How to code procedures and event handlers How to code and call procedures 168 How to code Sub procedures 168 How to call Sub procedures 170 When and how to pass arguments by reference and by value 172 How to code and call Function procedures 174 How to work with events 176 How to start an event handler for any event 176 How to handle multiple events with one event handler 178 How to use the Code Editor to start an event handler 180 How to add and remove event wiring 182 Another version of the Future Value application 184 The Function procedure 184 The event handlers 184 Chapter 7 How to handle exceptions and validate data An introduction to data validation and exception handling 190 How to use the IsNumeric function for data validation 190 How to display a dialog box for error messages 192 How exception handling works 194 How to use structured exception handling 196 How to catch an exception 196 How to use the properties and methods of an exception 198 How to catch specific types of exceptions 200 How to throw an exception 202 The Future Value application with exception handling 204 How to validate data 206 How to validate a single entry 206 How to use generic procedures to validate an entry 208 How to validate multiple entries 210 The Future Value application with data validation 212 The dialog boxes 212 The code 212 Two other ways to validate data 216 How to use the Validating event 216 How to use the masked text box 218

6 Chapter How to work with arrays and collections How to work with one-dimensional, arrays How to create an array 224 How to assign values to the elements of an array 226 How to use For loops to work with arrays 228 How to use For Each loops to work with arrays 230 How to work with rectangular arrays 232 How to create a rectangular array 232 How to assign values to a rectangular array 232 How to work with rectangular arrays 234 How to work with jagged arrays 236 How to create a jagged array 236 How to assign values to a jagged array 236 How to work with jagged arrays 238 More skills for working with arrays 240 How to use the Array class 240 How to refer to and copy arrays 242 How to code procedures that work with arrays 244 How to work with collections 246 Commonly used collection classes 246 Typed vs. untyped collections 248 How to work with a list 250 How to work with a sorted list 254 How to work with queues and stacks 256 How to work with an array list 258 Chapter 9 How to work with dates and strings How to work with dates and times 264 How to create a DateTime value 264 How to get the current date and time 266 How to format DateTime values 266 How to get information about dates and times 268 How to perform operations on dates and times 270 How to use Visual Basic properties and functions to work with dates and times 272 How to work with strings 274 The properties and methods of the String class 274 Code examples that work with strings 276 More examples that work with strings 278 Two procedures for validating user entries 280 How to use the StringBuilder class 282 How to use Visual Basic functions to work with strings 284 How to format numbers, dates, and times 286 How to format numbers 286 How to format dates and times 288 Chapter 10 More skills for working with Windows forms and controls How to work with controls 294 Five more types of controls 294 How to work with combo boxes and list boxes 296 How to work with check boxes and radio buttons 300 How to work with group boxes 300 How to use Tab Order view to set the tab order 302 How to get the information you need for using a control 304

7 How to work with multi-form projects 306 How to add a form to a project 306 How to rename a form 306 How to change the startup form for a project 308 How to display a form as a dialog box 310 data between a form and a custom dialog box 312 How to pass How to use the MessageBox class 314 How to display a dialog box and get the user response 314 How to use the FormClosing event 316 The Payment application 318 The operation 318 The property settings 320 The code for the Customer form 320 The code for the Payment form 324 Chapter 11 How to create and use classes An introduction to classes 332 How classes can be used to structure an application 332 The members you can define within a class 334 The code for the Product class 336 How instantiation works 338 How to create a class 340 How to add a class file to a project 340 How to code fields 342 How to code properties 344 How to code methods 346 How to code constructors 348 How to code shared members 350 The Product Maintenance application 352 The operation of the Product Maintenance application 352 The classes used by the Product Maintenance application 354 The code for the Product Maintenance application 356 How to use the Class View window and class diagrams 360 How to use the Class View window 360 How to use class diagrams and the Class Details window 362 How to work with structures 364 How to create a structure 364 How to use a structure 364 Chapter 12 How to debug an application Basic debugging techniques 370 How to set the debugging options 370 How to work in break mode 372 How to use the Edit and Continue feature 372 How to use breakpoints 374 How to control the execution of an application 376 How to use the debugging windows 378 How to use the Locals window to monitor variables 378 How to use the Autos window to monitor variables 378 How to use Watch windows to monitor expressions 380 How to use the Immediate window to execute commands 382 How to use the Call Stack window to monitor called procedures 384 How to use the Output or Immediate window to get build or debugging information 386 How use the Visualizer dialog boxes to view strings 388

8 Section 3 Database programming Chapter 13 An introduction to database programming An introduction to client/server systems 396 The hardware components of a client/server system 396 The software components of a client/server system 398 An introduction to relational databases How a table is organized 400 How the tables in a database are related 402 How the columns in a table are defined 404 The design of the MMABooks database 406 How to use SQL to work with a relational database 408 How to query a single table 408 How to join data from two or more tables 410 How to add, update, and delete data in a table 412 An introduction to ADO.NET 414 The.NET data providers 414 How the basic ADO.NET components work 416 Concurrency and the disconnected data architecture 418 How a dataset is organized 420 How to work with data without using a data adapter 422 Two ways to create ADO.NET objects 424 Chapter 14 How to work with data sources and datasets How to create a data source 428 How to use the Data Sources window 428 How to start the Data Source Configuration Wizard 430 How to choose a data source type 430 How to choose the connection for a data source 432 How to create a connection to a database 434 How to save a connection string in the app.config file 436 How to choose database objects for a data source 438 The schema file created by the Data Source Configuration Wizard 440 How to use a data source 442 How to generate a DataGridView control from a data source 442 A Product Maintenance application that uses a DataGridView control 444 How to change the controls associated with a data source 446 How to generate detail controls from a data source 448 A Customer Maintenance application that uses TexlBox. controls 450 How to handle data errors 452 How to handle data provider errors 452 How to handle ADO.NET errors 454 How to handle data errors for a DataGridView control 456 How to use the Dataset Designer 458 How to view the schema for a dataset 458 How to use the Query Builder 460 How to preview the data for a query 462 How to interpret the generated SQL statements 464 Chapter 15 How to work with bound controls and parameterized queries How to work with bound text boxes and combo boxes 470 How to format the data displayed in a text box 470 How to bind a combo box to a data source 472 How to use code to work with a binding source 474

9 How to work with parameterized queries 476 How to create a parameterized query 476 How to use code to work with a parameterized query 478 How to work with the ToolStrip control 480 How to use the Items Collection Editor 480 How to code an event handler for a ToolStrip item 482 An enhanced Customer Maintenance application 484 The user interface 484 J The code 484 How to work with a DataGridView control 488 How to modify the properties of a DataGridView control 488 How to edit the columns of a DataGridView control 490 How to format the data in the columns of a DataGridView control 492 How to use a DataGridView control to create a Master/Detail form 494 A Customer Invoice Display application 496 The user interface 496 The dataset schema 496 The code for the Customer Invoice Display form 496 Chapter 16 How to use ADO.NET to write your own data access code How to work with connections and commands 506 How to create and work with connections 506 How to create and work with commands 508 How to create and work with parameters 510 How to use parameters in SQL statements 510 How to create parameters 512 How to work with parameters 514 How to execute commands 516 How to create and work with a data reader 516 How to execute queries that return a single value 518 How to execute action queries 518 A Customer Maintenance application that uses commands 520 The user interface 520 The class diagram for the business and database classes 522 The code for the CustomerDB class 524 The code for the StateDB class 530 The code for the MMABooksDB class 530 The code for the Customer Maintenance form 532 The code for the Add/Modify Customer form 536 Section 4 Object-oriented programming Chapter 17 How to work with default properties, events, and operators An introduction to the ProductList class 546 The code for a simple ProductList class 546 The specifications for the enhanced ProductList class 548 How to work with default properties 550 How to create a default property 550 How to throw an argument exception 552

10 How to work with events 554 How to define events 554 How to use events 554 How to overload operators 556 An introduction to operator overloading 556 How to overload arithmetic operators 558 How to overload relational operators 560 An enhanced version of the Product Maintenance application 562 The code for the ProductList class 562 The code for the Product Maintenance form 566 Chapter 18 How to work with inheritance An introduction to inheritance 572 How inheritance works 572 How the.net Framework uses inheritance 574 Methods inherited from the System.Object class 576 How to use inheritance in your applications 578 Basic skills for working with inheritance 580 How to create a base class 580 How to create a derived class 582 How polymorphism works 584 An inheritance version of the Product Maintenance application 586 The operation of the Product Maintenance application 586 The code for the Product, Book, and Software classes 588 The code for the ProductList class 592 The code for the Product Maintenance form 594 The code for the New Product form 596 Object types and casting 598 How to use the Type class to get information about an object's type 598 How to use casting with inheritance 600 How to work with abstract and sealed classes 602 How to work with abstract classes 602 How to work with sealed classes 604 Chapter 19 How to work with interfaces and generics How to work with interfaces 610 An introduction to interfaces 610 Some of the interfaces defined by the.net Framework 612 How to create an interface 614 How to implement an interface 616 A Product class that implements the ICloneable interface 618 How to use an interface as a parameter 620 How to work with generics 622 How to code a class that defines a generic collection 622 Some of the generic interfaces defined by the.net Framework 626 How to implement the IComparablefJ interface 628 How to use constraints 630 How to code an interface that uses generics 632 Chapter 20 How to organize and document your classes How to organize your classes 638 How to code multiple classes in a single file 638 How to split a single class across multiple files 640 How to work with namespaces 642

11 How to document your classes 644 How to add XML documentation to a class 644 How to view the XML documentation 646 How to create and use class libraries 648 How class libraries work 648 How to create a class library project 650 How to add a reference to a class library 652 How to use the classes in a class library 652 Section 5 Other programming skills Chapter 21 How to work with files and data streams An introduction to the System.lO classes 658 The classes for managing directories, files, and paths 658 How Fdes and streams work 660 How to use the FileStream class 662 How to use the exception classes for fde I/O 664 How to work with text files 666 How to write a text file 666 How to read a text file 668 A class that works with a text file 670 How to work with binary files 672 How to write a binary fde 672 How to read a binary file 674 A class that works with a binary file 676 Two other ways to work with files 678 Use the My.Computer.FileSystem object 678 Use the Visual Basic functions 678 Chapter 22 How to work with XML files An introduction to XML 682 An XML document 682 XML tags, declarations, and comments 684 XML elements 684 XML attributes 686 How to work with the XML Editor 688 How to create a new XML file 688 How to open an existing XML file 688 How to edit an XML file 688 How to work with XML 690 How to use the XmlWriter class 690 Code that writes an XML document 692 How to use the XmlReader class 694 How the XmlReader class reads nodes 696 Code that reads an XML document 698 A class that works with an XML file 700

12 Chapter 23 How to use LINQ Basic concepts for working with LINQ 704 How LINQ is implemented 704 Advantages of using LINQ 704 The three stages of a query operation 706 How to code a LINQ query 708 How to identify the data source for a query 708 How to filter the results of a query 710 How to sort the results of a query 712 How to select fields from a query 714 How to join data from two or more data sources 716 A Customer Invoice application that uses generic lists, 718 The user interface 718 The code for the form 720 A Customer Invoice application that uses a typed dataset 722 The dataset schema 722 The code for the form 724 Chapter 24 How to enhance the user interface Two types of user interfaces 730 A single-document interface (SDI) 730 A multiple-document interface (MDI) 730 How to develop SDI applications 732 How to use a startup form 732 How to use a Tab control 734 How to add menus to a form 736 How to create menus 736 How to set the properties that work with menu items 738 How to write code that works with menu items 738 How to develop MDI applications 740 How to create parent and child forms 740 How to write code that works with parent and child forms 742 How to add toolbars to a form 744 How to create a toolbar 744 How to write code that works with toolbars 746 How to create and use a status bar 748 How to create a simple status bar 748 How to create a status bar with multiple panels 750 How to work with modules 752 How to create and code a module 752 How to use a Main procedure 754 How to add help information 756 How to add tool tips 756 How to add context-sensitive help 756

13 Chapter 25 How to deploy an application An introduction to deploying Windows applications 764 How XCopy works 764 How ClickOnce works 764 How a Setup program works 764 How to use XCopy 766 How to create a release build 766 How to copy the release build to the client 766 How to use ClickOnce 768 How to publish an application 768 How to select the files that are published 770 How to select the prerequisites 770 How to set the update options 772 How to set the publish options 772 How to install an application 774 How to update an application 774 How to create and use a Setup program 776 How to create a Setup project 776 How to add output files to a Setup project 778 How to complete a Setup project 780 How to use a Setup program to install an application 782 How to deploy database applications 784 Using ClickOnce deployment 784 Using a Setup program 786 Appendix A How to install and use the software and files for this book How to use the downloadable files 790 How to install Visual Studio How to install and use SQL Server 2005 Express 794 How to attach the database for this book to the database server 796

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB)

Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Programming with the Microsoft.NET Framework Using Microsoft Visual Studio 2005 (VB) Course Number: 4995 Length: 5 Day(s) Certification Exam There are no exams associated with this course. Course Overview

More information

Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming

Expanded contents. Section 1. Chapter 2. The essence off ASP.NET web programming. An introduction to ASP.NET web programming TRAINING & REFERENCE murach's web programming with C# 2010 Anne Boehm Joel Murach Va. Mike Murach & Associates, Inc. I J) 1-800-221-5528 (559) 440-9071 Fax: (559) 44(M)963 murachbooks@murach.com www.murach.com

More information

Course MS10975A Introduction to Programming. Length: 5 Days

Course MS10975A Introduction to Programming. Length: 5 Days 3 Riverchase Office Plaza Hoover, Alabama 35244 Phone: 205.989.4944 Fax: 855.317.2187 E-Mail: rwhitney@discoveritt.com Web: www.discoveritt.com Course MS10975A Introduction to Programming Length: 5 Days

More information

Visual C# 2012 Programming

Visual C# 2012 Programming Visual C# 2012 Programming Karli Watson Jacob Vibe Hammer John D. Reid Morgan Skinner Daniel Kemper Christian Nagel WILEY John Wiley & Sons, Inc. INTRODUCTION xxxi CHAPTER 1: INTRODUCING C# 3 What Is the.net

More information

Programming in C# with Microsoft Visual Studio 2010

Programming in C# with Microsoft Visual Studio 2010 Introducción a la Programación Web con C# en Visual Studio 2010 Curso: Introduction to Web development Programming in C# with Microsoft Visual Studio 2010 Introduction to Web Development with Microsoft

More information

Objectif. Participant. Prérequis. Remarque. Programme. C# 3.0 Programming in the.net Framework. 1. Introduction to the.

Objectif. Participant. Prérequis. Remarque. Programme. C# 3.0 Programming in the.net Framework. 1. Introduction to the. Objectif This six-day instructor-led course provides students with the knowledge and skills to develop applications in the.net 3.5 using the C# 3.0 programming language. C# is one of the most popular programming

More information

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach TRAINING & REFERENCE murach's SQL Server 2012 for developers Bryan Syverson Joel Murach Mike Murach & Associates, Inc. 4340 N. Knoll Ave. Fresno, CA 93722 www.murach.com murachbooks@murach.com Expanded

More information

DEPLOYING A VISUAL BASIC.NET APPLICATION

DEPLOYING A VISUAL BASIC.NET APPLICATION C6109_AppendixD_CTP.qxd 18/7/06 02:34 PM Page 1 A P P E N D I X D D DEPLOYING A VISUAL BASIC.NET APPLICATION After completing this appendix, you will be able to: Understand how Visual Studio performs deployment

More information

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition

Beginning C# 5.0. Databases. Vidya Vrat Agarwal. Second Edition Beginning C# 5.0 Databases Second Edition Vidya Vrat Agarwal Contents J About the Author About the Technical Reviewer Acknowledgments Introduction xviii xix xx xxi Part I: Understanding Tools and Fundamentals

More information

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey

Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences. Mike Dempsey Teradata SQL Assistant Version 13.0 (.Net) Enhancements and Differences by Mike Dempsey Overview SQL Assistant 13.0 is an entirely new application that has been re-designed from the ground up. It has been

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment. MICROSOFT DYNAMICS NAV COURSE OUTLINE 1) MICROSOFT DYNAMICS NAV Module 1: Microsoft Dynamics NAV Development Environment This module explains fundamental aspects of Microsoft Dynamics NAV Development Environment.

More information

How to test and debug an ASP.NET application

How to test and debug an ASP.NET application Chapter 4 How to test and debug an ASP.NET application 113 4 How to test and debug an ASP.NET application If you ve done much programming, you know that testing and debugging are often the most difficult

More information

For Introduction to Java Programming, 5E By Y. Daniel Liang

For Introduction to Java Programming, 5E By Y. Daniel Liang Supplement H: NetBeans Tutorial For Introduction to Java Programming, 5E By Y. Daniel Liang This supplement covers the following topics: Getting Started with NetBeans Creating a Project Creating, Mounting,

More information

Course Name: ADVANCE COURSE IN SOFTWARE DEVELOPMENT (Specialization:.Net Technologies)

Course Name: ADVANCE COURSE IN SOFTWARE DEVELOPMENT (Specialization:.Net Technologies) Course Name: ADVANCE COURSE IN SOFTWARE DEVELOPMENT (Specialization:.Net Technologies) Duration of Course: 6 Months Fees: Rs. 25,000/- (including Service Tax) Eligibility: B.E./B.Tech., M.Sc.(IT/ computer

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

(ENTD361 is highly recommended before taking this course)

(ENTD361 is highly recommended before taking this course) Department of Information Technology ENTD461: Enterprise Development Using VB.NET: Advanced Credit Hours: 3 Length of Course: 8 Weeks Enterprise Development Using VB.NET: Introduction (ENTD361 is highly

More information

Java (12 Weeks) Introduction to Java Programming Language

Java (12 Weeks) Introduction to Java Programming Language Java (12 Weeks) Topic Lecture No. Introduction to Java Programming Language 1 An Introduction to Java o Java as a Programming Platform, The Java "White Paper" Buzzwords, Java and the Internet, A Short

More information

LearnFromGuru Polish your knowledge

LearnFromGuru Polish your knowledge SQL SERVER 2008 R2 /2012 (TSQL/SSIS/ SSRS/ SSAS BI Developer TRAINING) Module: I T-SQL Programming and Database Design An Overview of SQL Server 2008 R2 / 2012 Available Features and Tools New Capabilities

More information

09336863931 : provid.ir

09336863931 : provid.ir provid.ir 09336863931 : NET Architecture Core CSharp o Variable o Variable Scope o Type Inference o Namespaces o Preprocessor Directives Statements and Flow of Execution o If Statement o Switch Statement

More information

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET

Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Unit 40: Developing and Implementing Windows-Based Applications With Microsoft Visual C#.NET and Microsoft Visual Studio.NET Learning Outcomes A candidate following a programme of learning leading to this

More information

Web Application diploma using.net Technology

Web Application diploma using.net Technology Web Application diploma using.net Technology ISI ACADEMY Web Application diploma using.net Technology HTML - CSS - JavaScript - C#.Net - ASP.Net - ADO.Net using C# What You'll Learn understand all the

More information

core. Volume I - Fundamentals Seventh Edition Sun Microsystems Press A Prentice Hall Title ULB Darmstadt

core. Volume I - Fundamentals Seventh Edition Sun Microsystems Press A Prentice Hall Title ULB Darmstadt core. 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Volume I - Fundamentals Seventh Edition CAY S. HORSTMANN GARY

More information

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation

Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science. Unit of Study / Textbook Correlation Thomas Jefferson High School for Science and Technology Program of Studies Foundations of Computer Science updated 03/08/2012 Unit 1: JKarel 8 weeks http://www.fcps.edu/is/pos/documents/hs/compsci.htm

More information

Computing Concepts with Java Essentials

Computing Concepts with Java Essentials 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Computing Concepts with Java Essentials 3rd Edition Cay Horstmann

More information

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html

EXAM - 70-518. PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4. Buy Full Product. http://www.examskey.com/70-518.html Microsoft EXAM - 70-518 PRO:Design & Develop Windows Apps Using MS.NET Frmwk 4 Buy Full Product http://www.examskey.com/70-518.html Examskey Microsoft 70-518 exam demo product is here for you to test the

More information

Desktop, Web and Mobile Testing Tutorials

Desktop, Web and Mobile Testing Tutorials Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major

More information

Java Application Developer Certificate Program Competencies

Java Application Developer Certificate Program Competencies Java Application Developer Certificate Program Competencies After completing the following units, you will be able to: Basic Programming Logic Explain the steps involved in the program development cycle

More information

Crystal Converter User Guide

Crystal Converter User Guide Crystal Converter User Guide Crystal Converter v2.5 Overview The Crystal Converter will take a report that was developed in Crystal Reports 11 or lower and convert the supported features of the report

More information

SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days

SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days SSIS Training Prerequisites All SSIS training attendees should have prior experience working with SQL Server. Hands-on/Lecture

More information

Microsoft' Excel & Access Integration

Microsoft' Excel & Access Integration Microsoft' Excel & Access Integration with Office 2007 Michael Alexander and Geoffrey Clark J1807 ; pwiueyb Wiley Publishing, Inc. Contents About the Authors Acknowledgments Introduction Part I: Basic

More information

Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner

Java 7 Recipes. Freddy Guime. vk» (,\['«** g!p#« Carl Dea. Josh Juneau. John O'Conner 1 vk» Java 7 Recipes (,\['«** - < g!p#«josh Juneau Carl Dea Freddy Guime John O'Conner Contents J Contents at a Glance About the Authors About the Technical Reviewers Acknowledgments Introduction iv xvi

More information

CRM Setup Factory Installer V 3.0 Developers Guide

CRM Setup Factory Installer V 3.0 Developers Guide CRM Setup Factory Installer V 3.0 Developers Guide Who Should Read This Guide This guide is for ACCPAC CRM solution providers and developers. We assume that you have experience using: Microsoft Visual

More information

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide

Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports

More information

TECHNOLOGY Computer Programming II Grade: 9-12 Standard 2: Technology and Society Interaction

TECHNOLOGY Computer Programming II Grade: 9-12 Standard 2: Technology and Society Interaction Standard 2: Technology and Society Interaction Technology and Ethics Analyze legal technology issues and formulate solutions and strategies that foster responsible technology usage. 1. Practice responsible

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API

Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Getting Started with the Ed-Fi ODS and Ed-Fi ODS API Ed-Fi ODS and Ed-Fi ODS API Version 2.0 - Technical Preview October 2014 2014 Ed-Fi Alliance, LLC. All rights reserved. Ed-Fi is a registered trademark

More information

V 6.1 Core Training Training Plan

V 6.1 Core Training Training Plan V 6.1 Core Training Training Plan 2014 Version 1.0 Document Revision 1.0 2014 OpenSpan Incorporated. All rights reserved. OpenSpan and the Open Span logo are trademarks of OpenSpan, Incorporated. Other

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

70-563 (VB) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5

70-563 (VB) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5 70-563 (VB) - Pro: Designing and Developing Windows Applications Using the Microsoft.NET Framework 3.5 Course Introduction Course Introduction Chapter 01 - Windows Forms and Controls Windows Forms Demo

More information

ASP.NET Using C# (VS2012)

ASP.NET Using C# (VS2012) ASP.NET Using C# (VS2012) This five-day course provides a comprehensive and practical hands-on introduction to developing applications using ASP.NET 4.5 and C#. It includes an introduction to ASP.NET MVC,

More information

Windows PowerShell Cookbook

Windows PowerShell Cookbook Windows PowerShell Cookbook Lee Holmes O'REILLY' Beijing Cambridge Farnham Koln Paris Sebastopol Taipei Tokyo Table of Contents Foreword Preface xvii xxi Part I. Tour A Guided Tour of Windows PowerShell

More information

Hands-On: Introduction to Object-Oriented Programming in LabVIEW

Hands-On: Introduction to Object-Oriented Programming in LabVIEW Version 13.11 1 Hr Hands-On: Introduction to Object-Oriented Programming in LabVIEW Please do not remove this manual. You will be sent an email which will enable you to download the presentations and an

More information

1. Create SQL Database in Visual Studio

1. Create SQL Database in Visual Studio 1. Create SQL Database in Visual Studio 1. Select Create New SQL Server Database in Server Explorer. 2. Select your server name, and input the new database name, then press OK. Copyright 2011 Lo Chi Wing

More information

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010.

Hands-On Lab. Building a Data-Driven Master/Detail Business Form using Visual Studio 2010. Lab version: 1.0.0. Last updated: 12/10/2010. Hands-On Lab Building a Data-Driven Master/Detail Business Form using Visual Studio 2010 Lab version: 1.0.0 Last updated: 12/10/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING THE APPLICATION S

More information

SQL SERVER DEVELOPER Available Features and Tools New Capabilities SQL Services Product Licensing Product Editions Will teach in class room

SQL SERVER DEVELOPER Available Features and Tools New Capabilities SQL Services Product Licensing Product Editions Will teach in class room An Overview of SQL Server 2005/2008 Configuring and Installing SQL Server 2005/2008 SQL SERVER DEVELOPER Available Features and Tools New Capabilities SQL Services Product Licensing Product Editions Preparing

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

4.1 CD 301 - BSc (Hons) Information Technology (Diploma to Degree Upgrade 1.5 Years Part Time)

4.1 CD 301 - BSc (Hons) Information Technology (Diploma to Degree Upgrade 1.5 Years Part Time) 4.1 CD 301 - BSc (Hons) Information Technology (Diploma to Degree Upgrade 1.5 Years Part Time) 1. OBJECTIVES This Programme is geared towards producing computer professionals, with a thorough understanding

More information

C#5.0 IN A NUTSHELL. Joseph O'REILLY. Albahari and Ben Albahari. Fifth Edition. Tokyo. Sebastopol. Beijing. Cambridge. Koln.

C#5.0 IN A NUTSHELL. Joseph O'REILLY. Albahari and Ben Albahari. Fifth Edition. Tokyo. Sebastopol. Beijing. Cambridge. Koln. Koln C#5.0 IN A NUTSHELL Fifth Edition Joseph Albahari and Ben Albahari O'REILLY Beijing Cambridge Farnham Sebastopol Tokyo Table of Contents Preface xi 1. Introducing C# and the.net Framework 1 Object

More information

Programming and Software Development CTAG Alignments

Programming and Software Development CTAG Alignments Programming and Software Development CTAG Alignments This document contains information about four Career-Technical Articulation Numbers (CTANs) for Programming and Software Development Career-Technical

More information

Visual Basic 2010 Essentials

Visual Basic 2010 Essentials Visual Basic 2010 Essentials Visual Basic 2010 Essentials First Edition 2010 Payload Media. This ebook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited.

More information

AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping

AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping AQA GCSE in Computer Science Computer Science Microsoft IT Academy Mapping 3.1.1 Constants, variables and data types Understand what is mean by terms data and information Be able to describe the difference

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

Neuron ESB 3.5 introduces Long Running Workflow capabilities!

Neuron ESB 3.5 introduces Long Running Workflow capabilities! Neuron ESB 3.5 introduces Long Running Workflow capabilities! Neuron ESB 3.5 introduces several new features and enhancements, most significant of which is long running, fault tolerant Workflow. Neuron

More information

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services

Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Integration Services Length: 3 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2008

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

NLUI Server User s Guide

NLUI Server User s Guide By Vadim Berman Monday, 19 March 2012 Overview NLUI (Natural Language User Interface) Server is designed to run scripted applications driven by natural language interaction. Just like a web server application

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

Specialized Programme on Web Application Development using Open Source Tools

Specialized Programme on Web Application Development using Open Source Tools Specialized Programme on Web Application Development using Open Source Tools A. NAME OF INSTITUTE Centre For Development of Advanced Computing B. NAME/TITLE OF THE COURSE C. COURSE DATES WITH DURATION

More information

Skills for Employment Investment Project (SEIP)

Skills for Employment Investment Project (SEIP) Skills for Employment Investment Project (SEIP) Standards/ Curriculum Format for Web Application Development Using DOT Net Course Duration: Three Months 1 Course Structure and Requirements Course Title:

More information

Object-Oriented Programming in C# (VS 2010)

Object-Oriented Programming in C# (VS 2010) Object-Oriented Programming in C# (VS 2010) Description: This thorough and comprehensive five-day course is a practical introduction to programming in C#, utilizing the services provided by.net. This course

More information

vtcommander Installing and Starting vtcommander

vtcommander Installing and Starting vtcommander vtcommander vtcommander provides a local graphical user interface (GUI) to manage Hyper-V R2 server. It supports Hyper-V technology on full and core installations of Windows Server 2008 R2 as well as on

More information

Microsoft Access is an outstanding environment for both database users and professional. Introduction to Microsoft Access and Programming SESSION

Microsoft Access is an outstanding environment for both database users and professional. Introduction to Microsoft Access and Programming SESSION 539752 ch01.qxd 9/9/03 11:38 PM Page 5 SESSION 1 Introduction to Microsoft Access and Programming Session Checklist Understanding what programming is Using the Visual Basic language Programming for the

More information

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB)

Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Transition your MCPD Web Developer Skills to MCPD ASP.NET Developer 3.5 (VB) Course Number: 70-567 UPGRADE Certification Exam 70-567 - UPGRADE: Transition your MCPD Web Developer Skills to MCPD ASP.NET

More information

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005

MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 MOVING THE SENIOR DEVELOPMENT CLASS FROM WEB DEVELOPMENT TO LIFE CYCLE DEVELOPMENT A CASE FOR VISUAL STUDIO 2005 Thom Luce, Ohio University, luce@ohio.edu ABSTRACT Information Systems programs in Business

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

Developing SQL and PL/SQL with JDeveloper

Developing SQL and PL/SQL with JDeveloper Seite 1 von 23 Developing SQL and PL/SQL with JDeveloper Oracle JDeveloper 10g Preview Technologies used: SQL, PL/SQL An Oracle JDeveloper Tutorial September 2003 Content This tutorial walks through the

More information

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007.

Last edited on 7/30/07. Copyright Syncfusion., Inc 2001 2007. Enabling ClickOnce deployment for applications that use the Syncfusion libraries... 2 Requirements... 2 Introduction... 2 Configuration... 2 Verify Dependencies... 4 Publish... 6 Test deployment... 8 Trust

More information

Contents. Introduction. Chapter 1 Some Hot Tips to Get You Started. Chapter 2 Tips on Working with Strings and Arrays..

Contents. Introduction. Chapter 1 Some Hot Tips to Get You Started. Chapter 2 Tips on Working with Strings and Arrays.. Contents Introduction How to Use This Book How to Use the Tips in This Book Code Naming Conventions Getting the Example Source Code Getting Updates to the Example Code Contacting the Author Chapter 1 Some

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

Visual COBOL ASP.NET Shopping Cart Demonstration

Visual COBOL ASP.NET Shopping Cart Demonstration Visual COBOL ASP.NET Shopping Cart Demonstration Overview: The original application that was used as the model for this demonstration was the ASP.NET Commerce Starter Kit (CSVS) demo from Microsoft. The

More information

CATALOG OF CLASSES IT and Technical Courses

CATALOG OF CLASSES IT and Technical Courses CATALOG OF CLASSES IT and Technical Courses Table of Contents CATALOG OF CLASSES... 1 Microsoft... 1 10135BC... 1 Configuring, Managing and Troubleshooting Microsoft Exchange Server 2010 Service Pack 2...

More information

ibolt V3.2 Release Notes

ibolt V3.2 Release Notes ibolt V3.2 Release Notes Welcome to ibolt V3.2, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

More information

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2

FreeForm Designer. Phone: +972-9-8309999 Fax: +972-9-8309998 POB 8792, Natanya, 42505 Israel www.autofont.com. Document2 FreeForm Designer FreeForm Designer enables designing smart forms based on industry-standard MS Word editing features. FreeForm Designer does not require any knowledge of or training in programming languages

More information

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008

BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 Installation Guide with Microsoft SQL Server 2005 Express Edition January 2008 BUILDER 3.0 1 Table of Contents Chapter 1: Installation Overview... 3 Introduction... 3 Minimum Requirements...

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

DBA xpress Product Overview

DBA xpress Product Overview DBA xpress Product Overview provides next-generation SQL tools specifically tailored for performance and ease of use when architecting or administering large microsoft SQL Server database systems. Key

More information

PowerLogic ION Enterprise 5.6

PowerLogic ION Enterprise 5.6 PowerLogic ION Enterprise 5.6 Power Management Software User Guide April 2007 Notices This section describes the symbols used in this guide. Danger This alerts you to things that may cause serious injury

More information

5nine Hyper-V Commander

5nine Hyper-V Commander 5nine Hyper-V Commander 5nine Hyper-V Commander provides a local graphical user interface (GUI), and a Framework to manage Hyper-V R2 server and various functions such as Backup/DR, HA and P2V/V2V. It

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Oracle Data Integrator: Administration and Development

Oracle Data Integrator: Administration and Development Oracle Data Integrator: Administration and Development What you will learn: In this course you will get an overview of the Active Integration Platform Architecture, and a complete-walk through of the steps

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

PowerLogic ION Enterprise 6.0

PowerLogic ION Enterprise 6.0 70002-0298-00 06/2009 PowerLogic ION Enterprise 6.0 Power management software User guide Notices This section describes the symbols used in this guide. Danger This alerts you to things that may cause

More information

Java SE 7 Programming

Java SE 7 Programming Java SE 7 Programming The second of two courses that cover the Java Standard Edition 7 (Java SE 7) Platform, this course covers the core Application Programming Interfaces (API) you will use to design

More information

VB.NET - WEB PROGRAMMING

VB.NET - WEB PROGRAMMING VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of

More information

MA-WA1920: Enterprise iphone and ipad Programming

MA-WA1920: Enterprise iphone and ipad Programming MA-WA1920: Enterprise iphone and ipad Programming Description This 5 day iphone training course teaches application development for the ios platform. It covers iphone, ipad and ipod Touch devices. This

More information

Mobile App Design and Development

Mobile App Design and Development Mobile App Design and Development The course includes following topics: Apps Development 101 Introduction to mobile devices and administrative: Mobile devices vs. desktop devices ARM and intel architectures

More information

How To Integrate SAP Business Data Into SharePoint 2010 Using Business Connectivity Services And LINQ to SAP

How To Integrate SAP Business Data Into SharePoint 2010 Using Business Connectivity Services And LINQ to SAP How To Integrate SAP Business Data Into SharePoint 2010 Using Business Connectivity Services And LINQ to SAP Jürgen Bäurle August 2010 Parago Media GmbH & Co. KG Introduction One of the core concepts of

More information

Getting Started with Telerik Data Access. Contents

Getting Started with Telerik Data Access. Contents Contents Overview... 3 Product Installation... 3 Building a Domain Model... 5 Database-First (Reverse) Mapping... 5 Creating the Project... 6 Creating Entities From the Database Schema... 7 Model-First

More information

Results CRM 2012 User Manual

Results CRM 2012 User Manual Results CRM 2012 User Manual A Guide to Using Results CRM Standard, Results CRM Plus, & Results CRM Business Suite Table of Contents Installation Instructions... 1 Single User & Evaluation Installation

More information

Item. (Credit effect from

Item. (Credit effect from AC 27/2/ /13 Item no. 4.51 UNIVERSITY OF MUMBAI Syllabus for sem V & VI Program: B..Sc. Course: Web Design and Technologies (Credit Based Semester and Grading System with effect from the academic year

More information

SQL Server 2008 R2 Express Edition Installation Guide

SQL Server 2008 R2 Express Edition Installation Guide Hardware, Software & System Requirements for SQL Server 2008 R2 Express Edition To get the overview of SQL Server 2008 R2 Express Edition, click here. Please refer links given below for all the details

More information

Fundamentals of Java Programming

Fundamentals of Java Programming Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors

More information

Specialized Programme on Web Application Development using Open Source Tools

Specialized Programme on Web Application Development using Open Source Tools Specialized Programme on Web Application Development using Open Source Tools Objective: At the end of the course, Students will be able to: Understand various open source tools(programming tools and databases)

More information

<Insert Picture Here> What's New in NetBeans IDE 7.2

<Insert Picture Here> What's New in NetBeans IDE 7.2 Slide 1 What's New in NetBeans IDE 7.2 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Getting to Know the Tools

Getting to Know the Tools Getting to Know the Tools CHAPTER 3 IN THIS CHAPTER Using SQL Server Management Studio One main limitation of the SQL CE 2.0 database released in 2002 was the need to manage the database either using a

More information