23%
Paul Sheriff Teaches Visual Basic 6

Paul Sheriff Teaches Visual Basic 6

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Paul Sheriff has taught Visual Basic long enough to know what beginning programmers want. This book is designed for programmers that have little or no Visual Basic or Windows programming experience. Students will learn the syntax of the Visual Basic language, event driven programming, and how to put together a complete Visual Basic application. The emphasis in this book is on good coding practices such as industry accepted naming standards, indentation and code reusability. If you are a developer who needs to learn how to put together a Visual Basic application the right way, this book is for you.

Table of Contents:
Introduction. Fundamentals of Visual Basic 6. I. INTRODUCTION TO VISUAL BASIC 6. 1. Visual Basic Overview. What Is Visual Basic? A Visual Basic Application. History of Visual Basics. Features of Visual Basic. Code Generation Options. Future of Visual Basic. Versions of Visual Basic. Visual Basic Application Types. Visual Basic Application Components. Microsoft Windows. Computing Terms. Programming Applications for Windows. Summary. Review Questions. 2. Getting Started. Visual Basic Environment. Visual Basic First-time Setup. Creating a New Project. Forms. Properties. Naming the Project. The Project Properties Dialog. Saving the Project. Summary. Review Questions. 3. Controls. Controls. Label Control. Text Box Control. Command Buttons. Frames. Option Buttons. Check Boxes. Picture Control. Image Control. Summary. Review Questions. 4. Lists and Menus. List Box Control. Combo Box Control. Menu System. Naming Controls. Creating an Executable Program. Summary. Review Questions. 5. Events Happen. Code Window. Breakdown of an Event Procedure. Form Events. Label Events. Text Box Events. Command Button Events. Frame Events. Option Button Events. Check Box Events. Picture Control Events. Image Control Events. List Box Events. Combo Box Events. Menu Events. Summary. Review Questions. 6. Variables. What Is a Variable? Data Types. Declaring Variables. Assigning Values to Variables. Scope and Lifetime of a Variable. Examples of Variables. Naming Variables. The Variant Data Type. Summary. Review Questions. Exercises. 7. Arrays, Types, and Constants. Arrays. Miscellaneous Array Topics. Multidimensional Arrays. User-defined Types. Constants. Mathematical and Relational Operators. Summary. Review Questions. Exercises. 8. Conditional Logic and Looping. If...Then. Select Case. Compiler Directives. Looping in VB. For...Next. The For...Next Example. Nested Constructs. Exit For/Exit Do. Exit Sub/Exit Function. With...End With. Summary. Review Questions/Exercises. 9. Procedures and Functions. Procedures. Sub Main() Procedure. Functions. Parameters and Arguments. Call by Value and Call by Reference. Optional Arguments. Named Arguments. Naming Standards. Summary. Review Questions. Exercises. 10. Built-in Visual Basic Functions. Using Built-in Functions. String Functions. Date Functions. Conversion Functions. Functions to Test Data Types. Methods. Summary. Review Questions. 11. Dialog Boxes. Uses of Dialog Boxes. Modal Versus Nonmodal. MsgBox. InputBox Function. Common Dialog Control. Making Your Own Dialog Box. Summary. Review Questions. Exercises. 12. The ADO Data Control. Getting at Data. Universal Data Access. Service Providers for OLE DB. The ADO Data Control. ADO Data Control Properties. Using the Data Control. Summary. Review Questions. 13. Data Control Programming. The Recordset Property. Order of Events. Modifying Data Programmatically. Adding Records. Detecting Changes in Data. Data Control Error Handling. Summary. Review Questions. 14. Additional Data Control Topics. Other Data-aware Controls. Displaying the Number of Records. Your Own Record Movement Buttons. Finding Records. Summary. Review Questions. 15. Multiple Document Interface. What Is MDI? Creating an MDI Form. Creating the Employee Tracking System. Child Menus in MDI Applications. Arranging Child Forms. Tracking Child Windows. Creating Pop-up Menus. Unloading an MDI Application. Summary. Review Questions. 16. The Debugger. Three Modes of Visual Basic. The Debug Toolbar. Invoking the Debugger. Quick Watch. Setting the Next Statement to Execute. The Call Stack Window. Setting Breakpoints. The Stop Statement. Setting Watch Variables. Using the Immediate Window. Printing to the Immediate Window. Summary. Review Questions. 17. Error Handling. How Visual Basic Handles Error. Error-handling Techniques. On Error GoTo . The Err Object. Getting a List of Errors. On Error Resume Next. Errors in the Call Stack. Turning Error Handling Off. Creating a Global Error Handler. Summary. Review Questions. Exercises. 18. IDE and Editor Tips and Tricks. Using the Code Editor. Form Editing Tips and Tricks. Changing the IDE. Summary. Review Questions. Exercises. II. INTERMEDIATE VISUAL BASIC. 19. Object-based Programming. Defining Object-based Programming. Object-based Coding Versus Procedural Coding. Converting to Object-based _Programming. Advantages of OOP. Disadvantages of OOP. Summary. Review Questions. 20. Creating Class Modules. Visual Basic Class Modules. Creating a Simple Class. Form Objects. The TextStream Class. Warning About Global Objects. Default Methods and Properties. Summary. Review Questions. Exercises. 21. System Objects. What Is an Object? Object Types. Form and Control Objects. System Objects. The App Object. The Screen Object. The Clipboard Object. Creating New Forms at Runtime. Summary. Review Questions. 22. Collections. What Is a Collection? The Forms Collection. Keeping Track of Form Instances. Checking for Instances of Forms. The Controls Collection. The Printer Collection. The Collection Class. Using the Collection Class. Problems with Public Collections. Create Your Own Collection Class. Adding Iteration. Summary. Review Questions. Exercises. 23. Tips and Tricks. Handling Keystrokes. Validating Data. Control Tricks. The DataFormat Property. The TabIndex Property and the Label Control. Third-Party Controls. Additional Functions in Visual Basic. Summary. Review Questions. 24. ActiveX Data Objects. The Connection Object. The Recordset Object. Opening a Forward-Only Recordset. Error Handling. Command Objects. Summary. Review Questions. Exercises. 25. Data Entry with ADO Objects. Creating a New ADO Project. Adding Data. Editing Data. Deleting Data. Summary. Review Questions. Exercises. 26. Wizards Data Form Wizard. Examples. Application Wizard. Summary. Review Questions. Exercises. 27. Visual Database Tools. Visual Database Tools Overview. Data Environment Designer. Data View Window. The Query Design Window. SQL Editor for Stored Procedures and _Triggers. The Database Diagram Window. Visual Data Manager. Summary. Review Questions. Exercise. 28. Using the Windows API. What Is the Windows API? Uses of the Windows API. Windows Components. ANSI Versus Unicode. Sources for Windows API Information. Declaring API Functions to Visual Basic. Calling API Functions. The SendMessage API Function. Limiting Characters in a Combo Box. The GetDriveType Function. Retrieving System Resources. The About Form. The OSystemGet() Method. The GetSysInfo() Method. Summary. Review Questions. Exercises. 29. Storing User Information. INI Files. INI Class. The System Registry. Built-in Visual Basic Functions. The Registry Class. Summary. Review Questions. Exercises. 30. ActiveX Controls: Part 1. Windows Controls in Visual Basic. The ImageList Control. Toolbar. Coolbar. Status Bar. ImageCombo. Summary. Review Questions. Exercises. 31. ActiveX Controls: Part 2. DateTimePicker Control. The MonthView Control. The Progress Bar Control. The Slider Control. The UpDown Control. The TabStrip. The SSTab Control. Summary. Review Questions. Exercise. 32. Drag and Drop. Drag and Drop Defined. Automatic Drag and Drop. Changing the Drag Icon. No Dropping Here. Manual Drag and Drop. Simplifying Drag and Drop. Summary. Review Questions. 33. Optimization. Speed Optimization Tricks. Size Optimization Tricks. Summary. Review Questions. 34. Package and Deployment Wizard. What's a Setup? Getting Ready to Distribute. Running the P&D Wizard. Deployment Options in the P&D Wizard. What's a Dependency File? What Can You Distribute from Visual Basic? The Setup Toolkit. Testing Your Installation. Summary. Review Questions. Exercise. III. APPENDIXES. Appendix A. VBA Programming Standards. Reasons for Naming Conventions. Environment Options. Custom Control Naming Conventions. Menu Naming Conventions. Naming Conventions for Other Controls. Variable/Object Naming. Variable Data Type Prefixes. Scope Prefixes. User-defined Types. Class Naming. Naming Constants. Variant Data Type. Function and Procedure Naming. Error Labels. Commenting Your Code. Formatting Your Code. Operators. Scope. Summary. Appendix B. Database Standards. Database Naming Standards. Database Naming Conventions. Table Naming. System Tables. Temporary Tables. Column Naming. Summary. Appendix C - Bibliography. Recommended Programming Books. Recommended Standards Books and _Articles. ODBC References. Object-Oriented Programming _References. SQL and Database Books. Periodicals and Conferences. Products from PDSA. Appendix D. Answers to Review Questions. Chapter 1: Visual Basic Overview. Chapter 2: Getting Started. Chapter 3: Controls. Chapter 4: Lists and Menus. Chapter 5: Events Happen. Chapter 6: Variables. Chapter 7: Arrays, Types, and _Constants. Chapter 8: Conditional Logic and _Looping. Chapter 9: Procedures and Functions. Chapter 10: Built-in Visual Basic _Functions. Chapter 11: Dialog Boxes. Chapter 12: The ADO Data Control. Chapter 13: Data Control Programming. Chapter 14: Additional Data Control _Topics. Chapter 15: Multiple Document _Interface. Chapter 16: The Debugger. Chapter 17: Error Handling. Chapter 18: IDE and Editor Tips and _Tricks. Chapter 19: Object-based _Programming. Chapter 20: Creating Class Modules. Chapter 21: System Objects. Chapter 22: Collections. Chapter 23: Tips and Tricks. Chapter 24: ActiveX Data Objects. Chapter 25: Data Entry with ADO _Objects. Chapter 26: Wizards. Chapter 27: Visual Database Tools. Chapter 28: Using the Windows API. Chapter 29: Storing User Information. Chapter 30: ActiveX Controls: Part 1. Chapter 31: ActiveX Controls: Part 2. Chapter 32: Drag and Drop. Chapter 33: Optimization. Chapter 34: Package and Deployment _Wizard. Appendix E. Sample Code Installation Instructions. Getting the Latest Service Pack. Installation Instructions. Index.


Best Sellers


Product Details
  • ISBN-13: 9780789718983
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Que Corporation,U.S.
  • Height: 187 mm
  • No of Pages: 832
  • Series Title: English
  • Weight: 1343 gr
  • ISBN-10: 0789718987
  • Publisher Date: 13 May 1999
  • Binding: Paperback
  • Language: English
  • Returnable: Y
  • Spine Width: 45 mm
  • Width: 232 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Paul Sheriff Teaches Visual Basic 6
Pearson Education (US) -
Paul Sheriff Teaches Visual Basic 6
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Paul Sheriff Teaches Visual Basic 6

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA