Home > General > Mastering VBA for Microsoft Office 2016
31%
Mastering VBA for Microsoft Office 2016

Mastering VBA for Microsoft Office 2016

          
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

Mastering VBA for Microsoft Office 2016 helps you extend the capabilities of the entire Office suite using Visual Basic for Applications (VBA). Even if you have no programming experience , you'll be automating routine computing processes quickly using the simple, yet powerful VBA programming language. Clear, systematic tutorials walk beginners through the basics, while intermediate and advanced content guides more experienced users toward efficient solutions.

About the Author

Richard Mansfield is the author or coauthor of more than 40 computer books, including Visual Basic .NET Power Toolkit, Office 2003 Application Development All-in-One Desk Reference For Dummies, and Programming: A Beginner's Guide. He is the former editor of Compute! magazine. Overall, his books have sold more than half a million copies worldwide and have been translated into 12 languages.



Table of Contents:
Introduction Part 1 Recording Macros and Getting Started with VBA Chapter 1 Recording and Running Macros in the Office Applications ·What Is VBA and What Can You Do with It? ·The Difference Between Visual Basic and Visual Basic for Applications ·Understanding Macro Basics ·Recording a Macro ·Displaying the Developer Tab on the Ribbon ·Planning the Macro ·Starting the Macro Recorder ·Naming the Macro ·Choosing How to Run a New Macro ·Running a Macro ·Recording a Sample Word Macro ·Recording a Sample Excel Macro ·Creating a Personal Macro Workbook ·Recording the Macro ·Specifying How to Trigger an Existing Macro ·Assigning a Macro to a Quick Access Toolbar Button in Word ·Assigning a Macro to a Shortcut Key Combination ·Deleting a Macro ·The Bottom Line Chapter 2 Getting Started with the Visual Basic Editor ·Opening the Visual Basic Editor ·Opening the Visual Basic Editor with a Macro Selected ·Opening the Visual Basic Editor Directly ·Navigating to a Macro ·Using the Visual Basic Editor's Main Windows ·The Project Explorer ·The Object Browser ·The Code Window ·The Properties Window ·The Immediate Window ·Setting Properties for a Project ·Customizing the Visual Basic Editor ·Choosing Editor and View Preferences ·Choosing and Laying Out the Editor Windows ·Customizing the Toolbar and Menu Bar ·Customizing the Toolbox ·The Bottom Line Chapter 3 Editing Recorded Macros ·Testing a Macro in the Visual Basic Editor ·Stepping Through a Macro ·Setting Breakpoints ·Commenting Out Lines ·Stepping Out of a Macro ·Editing a Word Macro ·Stepping Through the Transpose_Word_Right Macro ·Running the Transpose_Word_Right Macro ·Creating a Transpose_Word_Left Macro ·Saving Your Work ·Editing the Excel Macro ·Unhiding the Personal Macro Workbook ·Opening a Macro for Editing ·Editing a Macro ·Editing a PowerPoint Macro ·Saving Your Work ·The Bottom Line Chapter 4 Creating Code from Scratch in the Visual Basic Editor ·Setting Up the Visual Basic Editor to Create Macros ·Creating a Procedure for Word ·Creating a Macro for Excel ·Creating a Procedure for PowerPoint ·Creating a Procedure for Access ·The Bottom Line Part 2 Learning How to Work with VBA Chapter 5 Understanding the Essentials of VBA Syntax ·Getting Ready ·Procedures ·Functions  ·Sub procedures ·Statements ·Keywords ·Expressions ·Operators ·Variables ·Constants ·Arguments ·Specifying Argument Names vs Omitting Argument Names ·Including Parentheses Around the Argument List ·Objects ·Collections ·Properties ·Methods ·Events ·The Bottom Line Chapter 6 Working with Variables, Constants and Enumerations ·Working with Variables ·Choosing Names for Variables ·Declaring a Variable ·Choosing the Scope and Lifetime of a Variable ·Specifying the Data Type for a Variable ·Working with Constants ·Declaring Your Own Constants ·Choosing the Scope or Lifetime for Your Constants ·Working with Enumerations ·The Bottom Line Chapter 7 Using Array Variables ·What Is an Array? ·Declaring an Array ·Storing Values in an Array ·Multidimensional Arrays ·Declaring a Dynamic Array ·Redimensioning an Array ·Returning Information from an Array ·Erasing an Array ·Determining Whether a Variable Is an Array ·Finding the Bounds of an Array ·Sorting an Array ·Searching an Array ·Performing a Linear Search Through an Array ·Binary Searching an Array ·The Bottom Line Chapter 8 Finding the Objects, Methods and Properties You Need ·What Is an Object? ·The Benefits of OOP ·Understanding Creatable Objects ·Properties ·Methods ·Working with Collections ·Working with an Object in a Collection ·Adding an Object to a Collection ·Finding the Objects You Need ·Using the Macro Recorder to Add Code for the Objects You Need ·Using the Object Browser ·Using Help to Find the Object You Need ·Using the Auto List Members Feature ·Using Object Variables to Represent Objects ·Team Programming and OOP ·The Bottom Line Part 3 Making Decisions and Using Loops and Functions Chapter 9 Using Built-In Functions ·What Is a Function? ·Using Functions ·Passing Arguments to a Function ·Using Functions to Convert Data ·Using the Asc Function to Return a Character Code ·Using the Val Function to Extract a Number from the Start of a String ·Using the Str Function to Convert a Number into a String ·Using the Format Function to Format an Expression ·Using the Chr Function and Constants to Enter Special Characters in a String ·Using Functions to Manipulate Strings ·Using the Left, Right, and Mid Functions to Return Part of a String ·Using InStr and InStrRev to Find a String Within Another String ·Using LTrim, RTrim and Trim to Remove Spaces from a String ·Using Len to Check the Length of a String ·Using StrConv, LCase and UCase to Change the Case of a String ·Using the StrComp Function to Compare Apples to Apples ·Using VBA's Mathematical Functions ·Using VBA's Date and Time Functions ·Using the DatePart Function to Parse Dates ·Calculating Time Intervals Using the Date Diff Function ·Using the DateAdd Function to Add or Subtract Time from a Date ·Using File-Management Functions ·Checking Whether a File Exists Using the Dir Function ·Returning the Current Path ·The Bottom Line Chapter 10 Creating Your Own Functions ·Components of a Function ·Creating a Function ·Starting a Function Manually ·Starting a Function by Using the Add Procedure Dialog Box ·Passing Arguments to a Function ·Declaring the Data Types of Arguments ·Specifying an Optional Argument ·Controlling the Scope of a Function ·Examples of Functions for Any VBA-Enabled Office Application ·How Functions Return Information ·Returning Text Data from a Function ·Creating a Function for Word ·Creating a Function for Excel ·Creating a Function for PowerPoint ·Creating a Function for Access ·The Bottom Line Chapter 11 Making Decisions in Your Code ·How Do You Compare Things in VBA? ·Testing Multiple Conditions by Using Logical Operators ·If Blocks ·If...f Then ·If...Then...Else Statements ·If...f Then...ElseIf...f Else Statements ·Creating Loops with If and GoTo ·Nesting If Blocks ·Select Case Blocks ·Syntax ·Example ·When Order Matters ·The Bottom Line Chapter 12 Using Loops to Repeat Actions ·When Should You Use a Loop? ·Understanding the Basics of Loops ·Using For... Loops for Fixed Repetitions ·For...Next Loops ·For Each...Next Loops ·Using an Exit For Statement ·Using Do... Loops for Variable Numbers of Repetitions ·Do While...Loop Loops ·Do...Loop While Loops ·Do Until...Loop Loops ·Do...Loop Until Loops ·Using an Exit Do Statement ·Is the Exit Do Statement Bad Practice? ·While...Wend Loops ·Nesting Loops ·Avoiding Infinite Loops ·The Bottom Line Part 4 Using Message Boxes, Input Boxes and Dialog Boxes Chapter 13 Getting User Input with Message Boxes and Input Boxes ·Opening a Macro ·Displaying Status-Bar Messages in Word and Excel ·Message Boxes ·The Pros and Cons of Message Boxes ·Message-Box Syntax ·Displaying a Simple Message Box ·Displaying a Multiline Message Box ·Choosing Buttons for a Message Box ·Choosing an Icon for a Message Box ·Setting a Default Button for a Message Box ·Controlling the Modality of a Message Box ·Specifying a Title for a Message Box ·Title Bars Can Provide Useful Information ·Adding a Help Button to a Message Box ·Specifying a Help File for a Message Box ·Using Some Arguments Without Others ·Retrieving a Value from a Message Box ·Input Boxes ·Input-Box Syntax ·Retrieving Input from an Input Box ·Forms: When Message Boxes and Input Boxes Won't Suffice ·The Bottom Line Chapter 14 Creating Simple Custom Dialog Boxes ·When Should You Use a Custom Dialog Box? ·Creating a Custom Dialog Box ·Designing a Dialog Box ·Inserting a User Form ·Renaming a User Form ·Adding Controls to the User Form ·Grouping Controls ·Renaming Controls ·Moving a Control ·Changing the Caption on a Control ·Key Properties of the Toolbox Controls ·Working with Groups of Controls ·Aligning Controls ·Placing Controls ·Adjusting the Tab Order of a Form ·Linking a Form to a Procedure ·Loading and Unloading a Form ·Displaying and Hiding a Form ·Setting a Default Command Button ·Retrieving the User's Choices from a Dialog Box ·Returning a String from a Text Box ·Returning a Value from an Option Button ·Returning a Value from a Check Box ·Returning a Value from a List Box ·Returning a Value from a Combo Box ·Examples of Connecting Forms to Procedures ·Word Example: The Move-Paragraph Procedure ·General Example: Opening a File from a List Box ·Creating the Code for the User Form ·Using an Application's Built-In Dialog Boxes from VBA ·Displaying a Built-In Dialog Box ·Setting and Restoring Options in a Built-In Dialog Box ·Which Button Did the User Choose in a Dialog Box? ·Specifying a Time-Out for a Dialog Box ·The Bottom Line Chapter 15 Creating Complex Forms ·Creating and Working with Complex Dialog Boxes ·Updating a Dialog Box to Reflect the User's Choices ·Revealing a Hidden Part of a Form ·Tracking a Procedure in a Form ·Using Multipage Dialog Boxes and TabStrip Controls ·Creating a Modeless Dialog Box ·Specifying a Form's Location Onscreen ·Using Events to Control Forms ·Events Unique to the UserForm Object ·Events That Apply to Both UserForms and Container Controls ·Events That Apply to Many or Most Controls ·Events That Apply Only to a Few Controls ·The Bottom Line Part 5 Creating Effective Code Chapter 16 Building Modular Code and Using Classes ·Creating Modular Code ·What Is Modular Code? ·Advantages of Using Modular Code ·How to Approach Creating Modular Code ·Arranging Your Code in Modules ·Calling a Procedure ·Making Logical Improvements to Your Code ·Making Visual Improvements to Your Code ·Creating and Using Classes ·What Can You Do with Class Modules? ·A Brief Overview of Classes ·Planning Your Class ·Creating a Class Module ·Naming the Class ·Setting the Instancing Property ·Declaring Variables and Constants for the Class ·Adding Properties to the Class ·Adding Methods to a Class ·Using Your Class ·The Bottom Line Chapter 17 Debugging Your Code and Handling Errors ·Principles of Debugging ·The Different Types of Errors ·Language Errors ·Compile Errors ·Runtime Errors ·Program Logic Errors ·VBA's Debugging Tools ·Break Mode ·The Step Over and Step Out Commands ·The Locals Window ·The Watch Window ·The Immediate Window ·The Call Stack Dialog Box ·Dealing with Infinite Loops ·Dealing with Runtime Errors ·When Should You Write an Error Handler? ·Trapping an Error ·Disabling an Error Trap ·Resuming After an Error ·Getting a Description of an Error ·Raising Your Own Errors ·Suppressing Alerts ·Handling User Interrupts in Word, Excel and Project ·Disabling User Input While a Procedure Is Running ·Disabling User Input While Part of a Macro Is Running ·Documenting Your Code ·The Bottom Line Chapter 18 Building Well-Behaved Code ·What Is a Well-Behaved Procedure? ·Retaining or Restoring the User Environment ·Leaving the User in the Best Position to Continue Working ·Keeping the User Informed During the Procedure ·Manipulating the Cursor ·Displaying Information at the Beginning of a Procedure ·Communicating with the User via a Message Box or Dialog Box at the End of a Procedure ·Creating a Log File ·Making Sure a Procedure Is Running Under Suitable Conditions ·Cleaning Up After a Procedure ·Undoing Changes the Procedure Has Made ·Removing Scratch Files and Folders ·The Bottom Line Chapter 19 Exploring VBA's Security Features ·Understanding How VBA Implements Security ·Signing Your Macro Projects with Digital Signatures ·What Is a Digital Certificate? ·Getting a Digital Certificate ·Choosing a Suitable Level of Security ·Understanding the Security Threats Posed by VBA ·Protecting Against Macro Viruses ·Specifying a Suitable Security Setting ·Additional Office Security Features ·Locking Your Code ·The Bottom Line Part 6 Programming the Office Applications Chapter 20 Understanding the Word Object Model and Key Objects ·Examining the Word Object Model ·Working with the Documents Collection and the Document Object ·Creating a Document ·Creating a Template ·Saving a Document ·Opening a Document ·Closing a Document ·Changing a Document's Template ·Printing a Document ·Working with the Active Document Object ·Working with the Selection Object ·Checking the Type of Selection ·Checking the Story Type of the Selection ·Getting Other Information About the Current Selection ·Inserting Text at a Selection ·Inserting a Paragraph in a Selection ·Applying a Style ·Extending a Selection ·Collapsing a Selection ·Creating and Using Ranges ·Defining a Named Range ·Redefining a Range ·Using the Duplicate Property to Store or Copy Formatting ·Manipulating Options ·Making Sure Hyperlinks Require Ctrl+Clicking ·Turning Off Overtype ·Setting a Default File Path ·Turning Off Track Changes ·Accessing OneNote ·The Bottom Line Chapter 21 Working with Widely Used Objects in Word ·Using Find and Replace via VBA ·Understanding the Syntax of the Execute Method ·Putting Find and Replace to Work ·Working with Headers, Footers and Page Numbers ·Understanding How VBA Implements Headers and Footers ·Getting to a Header or Footer ·Checking to See If a Header or Footer Exists ·Linking to the Header or Footer in the Previous Section ·Creating a Different First-Page Header ·Creating Different Odd- and Even-Page Headers ·Adding Page Numbers to Your Headers and Footers ·Working with Sections, Page Setup, Windows, and Views ·Adding a Section to a Document ·Changing the Page Setup ·Opening a New Window Containing an Open Document ·Closing All Windows Except the First for a Document ·Splitting a Window ·Displaying the Document Map for a Window ·Scrolling a Window ·Arranging Windows ·Positioning and Sizing a Window ·Making Sure an Item Is Displayed in the Window ·Changing a Document's View ·Switching to Read Mode ·Zooming the View to Display Multiple Pages ·Working with Tables ·Creating a Table ·Selecting a Table ·Converting Text to a Table ·Ensuring That a Selection Is Within a Table ·Finding Out Where a Selection Is Within a Table ·Sorting a Table ·Adding a Column to a Table ·Deleting a Column from a Table ·Setting the Width of a Column ·Selecting a Column ·Adding a Row to a Table ·Deleting a Row from a Table ·Setting the Height of One or More Rows ·Selecting a Row ·Inserting a Cell ·Returning the Text in a Cell ·Entering Text in a Cell ·Deleting Cells ·Selecting a Range of Cells ·Converting a Table or Rows to Text ·The Bottom Line Chapter 22 Understanding the Excel Object Model and Key Objects ·Getting an Overview of the Excel Object Model ·Understanding Excel's Creatable Objects ·Managing Workbooks ·Creating a Workbook ·Saving a Workbook ·Accessing Cloud Storage ·Opening a Workbook ·Closing a Workbook ·Sharing a Workbook ·Protecting a Workbook ·Working with the Active Workbook Object ·Working with Worksheets ·Inserting a Worksheet ·Deleting a Worksheet ·Copying or Moving a Worksheet ·Printing a Worksheet ·Protecting a Worksheet ·Working with the Active Sheet Object ·Working with the Active Cell or Selection ·Working with the Active Cell ·Working with the User's Selection ·Working with Ranges ·Working with a Range of Cells ·Creating a Named Range ·Deleting a Named Range ·Working with a Named Range ·Working with the Used Range ·Working with Special Cells ·Entering a Formula in a Cell ·Setting Options ·Setting Options in the Application Object t ·Setting Options in a Workbook ·Accessing OneNote ·The Bottom Line Chapter 23 Working with Widely Used Objects in Excel ·Working with Charts ·Creating a Chart ·Specifying the Source Data for the Chart ·Specifying a Chart Type ·Working with Series in the Chart ·Adding a Legend to the Chart ·Adding a Chart Title ·Working with a Chart Axis ·Formatting Headers and Footers ·Working with Windows Objects ·Opening a New Window on a Workbook ·Closing a Window ·Activating a Window ·Arranging and Resizing Windows ·Zooming a Window and Setting Display Options ·Working with Find and Replace ·Searching with the Find Method ·Continuing a Search with the FindNext and FindPrevious Methods ·Replacing with the Replace Method ·Searching for and Replacing Formatting ·Adding Shapes ·The Bottom Line Chapter 24 Understanding the PowerPoint Object Model and Key Objects ·Getting an Overview of the PowerPoint Object Model ·Understanding PowerPoint's Creatable Objects ·Working with Presentations ·Creating a New Presentation Based on the Default Template ·Creating a New Presentation Based on a Template ·Opening an Existing Presentation ·Opening a Presentation from the Cloud ·Saving a Presentation ·Closing a Presentation ·Exporting a Presentation or Some Slides to Graphics ·Printing a Presentation ·Applying a Template to a Presentation, to a Slide, or to a Range of Slides ·Working with the Active Presentation ·Working with Windows and Views ·Working with the Active Window ·Opening a New Window on a Presentation ·Closing a Window ·Activating a Window ·Arranging and Resizing Windows ·Changing the View ·Working with Panes ·Working with Slides ·Adding a Slide to a Presentation ·Inserting Slides from an Existing Presentation ·Finding a Slide by Its ID Number ·Changing the Layout of an Existing Slide ·Deleting an Existing Slide ·Copying and Pasting a Slide ·Duplicating a Slide ·Moving a Slide ·Accessing a Slide by Name ·Working with a Range of Slides ·Formatting a Slide ·Setting a Transition for a Slide, a Range of Slides, or a Master ·Working with Masters ·Working with the Slide Master ·Working with the Title Master ·Working with the Handout Master ·Working with the Notes Master ·Deleting a Master ·The Bottom Line Chapter 25 Working with Shapes and Running Slide Shows ·Working with Shapes ·Adding Shapes to Slides ·Deleting a Shape ·Selecting All Shapes ·Repositioning and Resizing a Shape ·Copying Formatting from One Shape to Another ·Working with Text in a Shape ·Animating a Shape or a Range of Shapes ·Working with Headers and Footers ·Returning the Header or Footer Object You Want ·Displaying or Hiding a Header or Footer Object ·Setting the Text in a Header or Footer ·Setting the Format for Date and Time Headers and Footers ·Setting Up and Running a Slide Show ·Controlling the Show Type ·Creating a Custom Show ·Deleting a Custom Show ·Starting a Slide Show ·Changing the Size and Position of a Slide Show ·Moving from Slide to Slide ·Pausing the Show and Using White and Black Screens ·Starting and Stopping Custom Shows ·Exiting a Slide Show ·The Bottom Line Chapter 26 Understanding the Outlook Object Model and Key Objects ·Getting an Overview of the Outlook Object Model ·Understanding Where Outlook Stores VBA Macros ·Understanding Outlook's Most Common Creatable Objects ·Working with the Application Object ·Introducing the Name Space Object ·Working with Inspectors and Explorers ·Understanding Inspectors and Explorers ·Creating Items ·Quitting Outlook ·Understanding General Methods for Working with Outlook Objects ·Using the Display Method ·Using the Close Method ·Using the Print Out Method ·Using the Save Method ·Using the SaveAs Method ·Working with Messages ·Creating a New Message ·Working with the Contents of a Message ·Adding an Attachment to a Message ·Sending a Message ·Working with Calendar Items ·Creating a New Calendar Item ·Working with the Contents of a Calendar Item ·Working with Tasks and Task Requests ·Creating a Task ·Working with the Contents of a Task Item ·Assigning a Task to a Colleague ·Searching for Items ·The Bottom Line Chapter 27 Working with Events in Outlook ·Working with Application-Level Events ·Using the Startup Event ·Using the Quit Event ·Using the ItemSend Event ·Using the NewMail Event ·Using the AdvancedSearchComplete and the AdvancedSearchStopped Events ·Using the MAPILogonComplete Event ·Using the Reminder Event ·Using the OptionsPagesAdd Event ·Working with Item-Level Events ·Declaring an Object Variable and Initializing an Event ·Understanding the Events That Apply to All Message Items ·Understanding the Events That Apply to Explorers, Inspectors and Views ·Understanding the Events That Apply to Folders ·Understanding the Events That Apply to Items and Results Objects ·Understanding the Events That Apply to Reminders ·Understanding the Events That Apply to Synchronization ·Understanding Quick Steps ·The Bottom Line Chapter 28 Understanding the Access Object Model and Key Objects ·Getting Started with VBA in Access ·Creating a Module in the VBA Editor ·Creating a Function ·Using the Macro Designer ·Creating an Access-Style Macro to Run a Function ·Translating an Access-Style Macro into a VBA Macro ·Using an AutoExec Macro to Initialize an Access Session ·Running a Subprocedure ·Understanding the Option Compare Database Statement ·Getting an Overview of the Access Object Model ·Understanding Creatable Objects in Access ·Opening and Closing Databases ·Using the CurrentDb Method to Return the Current Database ·Closing the Current Database and Opening a Different Database ·Communicating Between Office Applications ·Opening Multiple Databases at Once ·Closing a Database ·Creating and Removing Workspaces ·Working with the Screen Object ·Using the DoCmd Object to Run Access Commands ·Using the OpenForm Method to Open a Form ·Using the PrintOut Method to Print an Object ·Using the RunMacro Method to Run an Access-Style Macro ·The Bottom Line Chapter 29 Manipulating the Data in an Access Database via VBA ·Understanding How to Proceed ·Preparing to Manage the Data in a Database ·Adding a Reference to the Appropriate Object Library ·Establishing a Connection to the Database ·Opening a Recordset ·Opening a Recordset Using ADO ·Choosing How to Access the Data in an ADO Recordset ·Accessing a Particular Record in a Recordset ·Using the MoveFirst, MoveNext, MovePrevious and MoveLast Methods ·Using the Move Method to Move Past Multiple Records ·Searching for a Record ·Searching for a Record in an ADO Recordset ·Searching for a Record in a DAO Recordset ·Returning the Fields in a Record ·Editing a Record ·Inserting and Deleting Records ·Closing a Recordset ·Saving a Recordset to the Cloud ·The Bottom Line Chapter 30 Accessing One Application from Another Application ·Understanding the Tools Used to Communicate Between Applications ·Using Automation to Transfer Information ·Understanding Early and Late Binding ·Creating an Object with the CreateObject Function ·Returning an Object with the GetObject Function ·Examples of Using Automation with the Offi ce Applications ·Using the Shell Function to Run an Application ·Using Data Objects to Store and Retrieve Information ·Creating a Data Object ·Storing Information in a Data Object ·Returning Information from a Data Object ·Assigning Information to the Clipboard ·Finding Out Whether a Data Object Contains a Given Format ·Communicating via DDE ·Using DDEInitiate to Start a DDE Connection ·Using DDERequest to Return Text from Another Application ·Using DDEPoke to Send Text to Another Application ·Using DDEExecute to Have One Application Execute a Command in Another ·Using DDETerminate to Close a DDE Channel ·Using DDETerminateAll to Close All Open DDE Channels ·Communicating via SendKeys ·Going Beyond VBA ·The Bottom Line Chapter 31 Programming the Office 2016 Ribbon ·What Is XML? ·Hiding the Clipboard Group on the Word Ribbon ·A Word of Warning ·XML Terminology ·Using Built-In Icons ·Working with Excel and PowerPoint ·Undoing Ribbon Modifications ·Selecting the Scope of Your Ribbon Customization ·Adding a New Group ·Cautions About Customizing ·Two Ways to Find the Correct idMso ·Adding Callbacks ·Adding Attributes ·Using Built-In Icons and ScreenTips ·Creating Your Own Icons ·Using Menus and Lists ·Adding Menus 855 ·Adding a DropDown List Control ·Using a DialogBoxLauncher ·Toggling with a Toggle-Button Control ·Modifying the Ribbon in Access ·Testing Your New Ribbon ·Adding a Callback in Access ·What to Look For If Things Go Wrong ·Employ Error-Message Tools ·Cure Common User-Interface Programming Problems ·Where to Go from Here ·The Bottom Line Appendix The Bottom Line Chapter 1: Recording and Running Macros in the Office Applications Chapter 2: Getting Started with the Visual Basic Editor Chapter 3: Editing Recorded Macros Chapter 4: Creating Code from Scratch in the Visual Basic Editor Chapter 5: Understanding the Essentials of VBA Syntax Chapter 6: Working with Variables, Constants, and Enumerations Chapter 7: Using Array Variables Chapter 8: Finding the Objects, Methods and Properties You Need Chapter 9: Using Built-in Functions Chapter 10: Creating Your Own Functions Chapter 11: Making Decisions in Your Code Chapter 12: Using Loops to Repeat Actions Chapter 13: Getting User Input with Message Boxes and Input Boxes Chapter 14: Creating Simple Custom Dialog Boxes Chapter 15: Creating Complex Forms Chapter 16: Building Modular Code and Using Classes Chapter 17: Debugging Your Code and Handling Errors Chapter 18: Building Well-Behaved Code Chapter 19: Exploring VBA's Security Features Chapter 20: Understanding the Word Object Model and Key Objects Chapter 21: Working with Widely Used Objects in Word Chapter 22: Understanding the Excel Object Model and Key Objects Chapter 23: Working with Widely Used Objects in Excel Chapter 24: Understanding the PowerPoint Object Model and Key Objects Chapter 25: Working with Shapes and Running Slide Shows Chapter 26: Understanding the Outlook Object Model and Key Objects Chapter 27: Working with Events in Outlook Chapter 28: Understanding the Access Object Model and Key Objects Chapter 29: Manipulating the Data in an Access Database via VBA Chapter 30: Accessing One Application from Another Application Chapter 31: Programming the Office 2016 Ribbon Index


Best Sellers



Product Details
  • ISBN-13: 9788126561940
  • Publisher: Random House
  • Publisher Imprint: Jonathan Cape
  • Language: ENGLISH
  • Weight: 1250 gr
  • ISBN-10: 8126561947
  • Publisher Date: 25-May-2016
  • Binding: PAPERBACK
  • No of Pages: 984

Related Categories

Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Mastering VBA for Microsoft Office 2016
Random House -
Mastering VBA for Microsoft Office 2016
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.

Mastering VBA for Microsoft Office 2016

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!