Microsoft Visual Basic 2008 / (Record no. 7382)

000 -LEADER
fixed length control field 08895cam a2200409Ia 4500
001 - CONTROL NUMBER
control field u2443
003 - CONTROL NUMBER IDENTIFIER
control field SA-PMU
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20210418124338.0
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS
fixed length control field m m
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
fixed length control field co ugu|muuuu||
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 070901s2008 waua b 001 0 eng d
010 ## - LIBRARY OF CONGRESS CONTROL NUMBER
LC control number 2007941088
040 ## - CATALOGING SOURCE
Original cataloging agency BTCTA
Transcribing agency BTCTA
Modifying agency BAKER
-- YDXCP
-- OCLCQ
-- DLC
-- DAY
-- CRH
-- JED
-- VP@
-- INNDH
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9780735625372
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 0735625379
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)166873815
Canceled/invalid control number (OCoLC)708013159
050 00 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.73.B3
Item number H3358 2008
082 04 - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.133
Edition number 22
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Halvorson, Michael.
245 10 - TITLE STATEMENT
Title Microsoft Visual Basic 2008 /
Statement of responsibility, etc. Michael Halvorson.
260 ## - PUBLICATION, DISTRIBUTION, ETC.
Place of publication, distribution, etc. Redmond, Wash. :
Name of publisher, distributor, etc. Microsoft Press,
Date of publication, distribution, etc. c2008.
300 ## - PHYSICAL DESCRIPTION
Extent xxx, 544 p. :
Other physical details ill. ;
Dimensions 23 cm. +
Accompanying material 1 CD-ROM (4 3/4 in.)
490 1# - SERIES STATEMENT
Series statement Step by step
504 ## - BIBLIOGRAPHY, ETC. NOTE
Bibliography, etc. note Includes bibliographical references (p. 525-529) and index.
505 2# - FORMATTED CONTENTS NOTE
Formatted contents note Introduction -- What is Visual Basic 2008? -- Finding your best starting point in this book -- Visual Studio 2008 system requirements -- Prerelease software -- Installing and using the practice files -- Uninstalling the practice files -- Conventions and features in this book -- Helpful support links -- pt. I. Getting started with Microsoft Visual Basic 2008 -- 1. Exploring the Visual Studio integrated development environment -- The Visual Studio development environment -- The Visual Studio tools -- The properties window -- Moving and resizing the programming tools -- Switching among open files and tools by using the IDE navigator -- Opening a Web browser within Visual Studio -- Getting help -- Customizing IDE settings to match step-by-step exercises -- One step further : exiting Visual Studio -- Chapter 1 quick reference -- 2. Writing your first program -- Lucky seven : your first Visual Basic program -- Programming steps -- Creating the user interface -- Setting the properties -- The picture box properties -- Writing the code -- A look at the Button1_click procedure -- Running Visual Basic applications -- Sample projects on disk -- Building an executable file -- Deploying your application -- One step further : adding to a program -- Chapter 2 quick reference -- 3. Working with Toolbox controls -- The basic use of controls : the hello world program -- Using the DateTimePicker control -- Controls for gathering input -- One step further : using the LinkLabel control -- Chapter 3 quick reference -- 4. Working with menus, toolbars, and dialog boxes -- Adding menus by using the MenuStrip control -- Adding access keys to menu commands -- Processing menu choices -- Adding toolbars with the ToolStrip control -- Using dialog box controls -- Event procedures that manage common dialog boxes -- One step further : assigning shortcut keys to menus -- Chapter 4 quick reference --
505 2# - FORMATTED CONTENTS NOTE
Formatted contents note pt. II. Programming fundamentals -- 5. Visual Basic variables and formulas, and the .NET Framework -- The anatomy of a Visual basic program statement -- Using variables to store information -- Using variables in a program -- Using a variable to store input -- Using a variable for output -- Working with specific data types -- Working with Visual Basic operators -- Working with methods in the Microsoft .NET Framework -- One step further : establishing order of precedence -- Chapter 5 quick reference -- 6. Using decision structures -- Event-driven programming -- Using conditional expressions -- If...Then decision structures -- Select Case decision structures -- One step further : detecting mouse events -- Chapter 6 quick reference -- 7. Using loops and timers -- Writing For...Next loops -- Displaying a counter variable in a TextBox control -- Creating complex For...Next loops -- Writing Do loops -- Avoiding an endless loop -- The Timer control -- Creating a digital clock by using a Timer control -- Using a timer object to set a time limit -- One step further : inserting code snippets -- Chapter 7 quick reference -- 8. Debugging Visual Basic programs -- Finding and correcting errors -- Three types of errors -- Identifying logic errors -- Debugging 101 : using debugging mode -- Tracking variables by using a watch window -- Visualizers : debugging tools that display data -- Using the immediate and command windows -- Switching to the command window -- One step further : removing breakpoints -- Chapter 8 quick reference -- 9. Trapping errors by using structured error handling -- Processing errors by using the Try...Catch statement -- Writing a disc drive error handler -- Using the Finally clause to perform cleanup tasks -- More complex Try...Catch error handlers -- Comparing error handlers with defensive programming techniques -- One step further : the Exit Try statement -- Chapter 9 quick reference -- 10. Creating modules and procedures -- Working with modules -- Working with public variables -- Creating procedures -- Writing function procedures -- Writing sub procedures -- One step further : passing arguments by value and by reference -- Chapter 10 quick reference -- 11. Using arrays to manage numeric and string data -- Working with arrays of variables -- Preserving array contents by using ReDim Preserve -- One step further : processing large arrays by using methods in the Array class -- Chapter 11 quick reference -- 12. Working with collections and the System.Collections namespace -- Working with object collections -- Creating your own collections -- One step further : VBA collections -- Chapter 12 quick reference -- 13. Exploring text files and string processing -- Displaying text files by using a text box object -- Using the StreamReader class and My.Computer.FileSystem to open text files -- Creating a new text file on disk -- Processing text strings with program code -- One step further : examining the sort text program code -- Chapter 13 quick reference --
505 2# - FORMATTED CONTENTS NOTE
Formatted contents note pt. III. Designing the user interface -- 14. Managing Windows forms and controls at run time -- Adding new forms to a program -- How forms are used -- Working with multiple forms -- Positioning forms on the Windows Desktop -- Adding controls to a form at run time -- Organizing controls on a form -- One step further : specifying the startup object -- Chapter 14 quick reference -- 15. Adding graphics and animation effects -- Adding artwork by using the System.Drawing namespsace -- Adding animation to your programs -- Expanding and shrinking objects while a program is running -- One step further : changing form transparency -- Chapter 15 quick reference -- 16. Inheriting forms and creating base classes -- Inheriting a form by using the inheritance picker -- Creating your own base classes -- One step further : inheriting a base class -- Chapter 16 quick reference -- 17. Working with printers -- Using the PrintDocument class -- Printing multipage text files -- One step further : adding print preview and page setup dialog boxes -- Chapter 17 quick reference --
505 2# - FORMATTED CONTENTS NOTE
Formatted contents note pt. IV. Database and Web programming -- 18. Getting started with ADO.NET -- Database programming with ADO.NET -- Using bound controls to display database information -- One step further : SQL statements, LINQ, and filtering data -- Chapter 18 quick reference -- 19. Data presentation using the DataGridView control -- Using DataGridView to display database records -- Formatting DataGridView cells -- Datacentric focus : adding a second grid and navigation control -- One step further : updating the original database -- Chapter 19 quick reference -- 20. Creating Web sites and Web pages by using Visual Web developer and ASP.NET -- Inside ASP.NET -- Building a Web site by using Visual Web developer -- Using the Web page designer -- Adding server controls to a Web site -- Adding additional Web pages and resources to a Web site -- Displaying database records on a Web page -- One step further : setting the Web title in Internet Explore -- Chapter 20 quick reference -- Appendix -- Where to go for more information -- Visual Basic Web sites -- Books about Visual Basic and Visual Studio programming.
538 ## - SYSTEM DETAILS NOTE
System details note System requirements: Windows Vista, or Windows XP with Service Pack 2, or Windows Server 2003 with Service Pack 1; Microsoft Visual Studio 2008 (Standard Edition, Professional Edition, or Team Suite); Minimum hardware requirement: 1.6 GHz CPU, 384 MB RAM, 1024x768 display, 5400 RPM hard disk drive; 1.22 GB of available hard disk space for the minimum installation; 2 GB of available disk space for the full installation; CD or DVD drive; Microsoft Mouse or compatible pointing device.
538 ## - SYSTEM DETAILS NOTE
System details note Recommended hardware requirement: 2.2 GHz or higher CPU, 1024 MB or more RAM, 1280x1024 display, 7200 RPM or higher hard disk drive; Windows Vista, 2.4 GHz CPU and 786 MB RAM
596 ## -
-- 1 2
630 00 - SUBJECT ADDED ENTRY--UNIFORM TITLE
Uniform title Microsoft Visual BASIC.
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element BASIC (Computer program language)
830 #0 - SERIES ADDED ENTRY--UNIFORM TITLE
Uniform title Step by step (Redmond, Wash.)
942 ## - ADDED ENTRY ELEMENTS (KOHA)
Koha item type Books
994 ## -
-- Z0
-- SUPMU
Holdings
Withdrawn status Lost status Source of classification or shelving scheme Damaged status Not for loan Home library Current library Date acquired Total Checkouts Full call number Barcode Date last seen Copy number Price effective from Koha item type Public note
          Female Library Female Library 04/18/2021   QA76.73 .B3 H3358 2008 51952000075929 04/15/2021 1 04/15/2021 Books STACKS
          Main Library Main Library 04/18/2021   QA76.73 .B3 H3358 2008 51952000053583 04/15/2021 1 04/15/2021 Books STACKS