Newly updated for Excel 2002, Writing Excel Macros with VBA, 2nd Edition provides Excel power-users, as well as programmers who are unfamiliar with the Excel object model, with a solid introduction to writing Visual Basic for Applications (VBA) macros and programs for Excel. In particular, the book focuses on:
Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.
Preface; Preface to the Second Edition; The Book's Audience; Organization of This Book; The Book's Text and Sample Code; About the Code; Conventions in this Book; Obtaining the Sample Programs; How to Contact Us; Acknowledgments; Chapter 1: Introduction; 1.1 Selecting Special Cells; 1.2 Setting a Chart's Data Point Labels; 1.3 Topics in Learning Excel Programming; Part I: The VBA Environment; Chapter 2: Preliminaries; 2.1 What Is a Programming Language?; 2.2 Programming Style; Chapter 3: The Visual Basic Editor, Part I; 3.1 The Project Window; 3.2 The Properties Window; 3.3 The Code Window; 3.4 The Immediate Window; 3.5 Arranging Windows; Chapter 4: The Visual Basic Editor, Part II; 4.1 Navigating the IDE; 4.2 Getting Help; 4.3 Creating a Procedure; 4.4 Run Time, Design Time, and Break Mode; 4.5 Errors; 4.6 Debugging; 4.7 Macros; Part II: The VBA Programming Language; Chapter 5: Variables, Data Types, and Constants; 5.1 Comments; 5.2 Line Continuation; 5.3 Constants; 5.4 Variables and Data Types; 5.5 VBA Operators; Chapter 6: Functions and Subroutines; 6.1 Calling Functions; 6.2 Calling Subroutines; 6.3 Parameters and Arguments; 6.4 Exiting a Procedure; 6.5 Public and Private Procedures; 6.6 Project References; Chapter 7: Built-in Functions and Statements; 7.1 The MsgBox Function; 7.2 The InputBox Function; 7.3 VBA String Functions; 7.4 Miscellaneous Functions and Statements; 7.5 Handling Errors in Code; Chapter 8: Control Statements; 8.1 The If...Then Statement; 8.2 The For Loop; 8.3 The For Each Loop; 8.4 The Do Loop; 8.5 The Select Case Statement; 8.6 A Final Note on VBA; Part III: Excel Applications and the Excel Object Model; Chapter 9: Object Models; 9.1 Objects, Properties, and Methods; 9.2 Collection Objects; 9.3 Object Model Hierarchies; 9.4 Object Model Syntax; 9.5 Object Variables; Chapter 10: Excel Applications; 10.1 Providing Access to an Application's Features; 10.2 Where to Store an Application; 10.3 An Example Add-In; Chapter 11: Excel Events; 11.1 The EnableEvents Property; 11.2 Events and the Excel Object Model; 11.3 Accessing an Event Procedure; 11.4 Worksheet Events; 11.5 WorkBook Events; 11.6 Chart Events; 11.7 Application Events; 11.8 QueryTable Refresh Events; Chapter 12: Custom Menus and Toolbars; 12.1 Menus and Toolbars: An Overview; 12.2 The CommandBars Collection; 12.3 Creating a New Menu Bar or Toolbar; 12.4 Command-Bar Controls; 12.5 Built-in Command-Bar-Control IDs; 12.6 Example: Creating a Menu; 12.7 Example: Creating a Toolbar; 12.8 Example: Adding an Item to an Existing Menu; 12.9 Augmenting the SRXUtils Application; Chapter 13: Built-In Dialog Boxes; 13.1 The Show Method; Chapter 14: Custom Dialog Boxes; 14.1 What Is a UserForm Object?; 14.2 Creating a UserForm Object; 14.3 ActiveX Controls; 14.4 Adding UserForm Code; 14.5 Excel's Standard Controls; 14.6 Example: The ActivateSheet Utility; 14.7 ActiveX Controls on Worksheets; Chapter 15: The Excel Object Model; 15.1 A Perspective on the Excel Object Model; 15.2 Excel Enums; 15.3 The VBA Object Browser; Chapter 16: The Application Object; 16.1 Properties and Methods of the Application Object; 16.2 Children of the Application Object; Chapter 17: The Workbook Object; 17.1 The Workbooks Collection; 17.2 The Workbook Object; 17.3 Children of the Workbook Object; 17.4 Example: Sorting Sheets in a Workbook; Chapter 18: The Worksheet Object; 18.1 Properties and Methods of the Worksheet Object; 18.2 Children of the Worksheet Object; 18.3 Protection in Excel XP; 18.4 Example: Printing Sheets; Chapter 19: The Range Object; 19.1 The Range Object as a Collection; 19.2 Defining a Range Object; 19.3 Additional Members of the Range Object; 19.4 Children of the Range Object; 19.5 Example: Getting the Used Range; 19.6 Example: Selecting Special Cells; Chapter 20: Pivot Tables; 20.1 Pivot Tables; 20.2 The PivotTable Wizard; 20.3 The PivotTableWizard Method; 20.4 The PivotTable Object; 20.5 Properties and Methods of the PivotTable Object; 20.6 Children of the PivotTable Object; 20.7 The PivotField Object; 20.8 The PivotCache Object; 20.9 The PivotItem Object; 20.10 PivotCell and PivotItemList Objects; 20.11 Calculated Items and Calculated Fields; 20.12 Example: Printing Pivot Tables; Chapter 21: The Chart Object; 21.1 Chart Objects and ChartObject Objects; 21.2 Creating a Chart; 21.3 Chart Types; 21.4 Children of the Chart Object; 21.5 The Axes Collection; 21.6 The Axis Object; 21.7 The ChartArea Object; 21.8 The ChartGroup Object; 21.9 The ChartTitle Object; 21.10 The DataTable Object; 21.11 The Floor Object; 21.12 The Legend Object; 21.13 The PageSetup Object; 21.14 The PlotArea Object; 21.15 The Series Object; 21.16 Properties and Methods of the Chart Object; 21.17 Example: Scrolling Through Chart Types; 21.18 Example: Printing Embedded Charts; 21.19 Example: Setting Data Series Labels; Chapter 22: Smart Tags; 22.1 What Are Smart Tags?; 22.2 SmartTagRecognizer Object; 22.3 SmartTag Object; 22.4 SmartTagAction Object; 22.5 SmartTagOptions Object; Part IV: Appendixes; Appendix A: The Shape Object; A.1 What Is the Shape Object?; A.2 Z-Order; A.3 Creating Shapes; A.4 Diagram, DiagramNode, and DiagramNodeChildren Objects; Appendix B: Getting the Installed Printers; Appendix C: Command Bar Controls; C.1 Built-in Command-Bar Controls; Appendix D: Face IDs; Appendix E: Programming Excelfrom Another Application; E.1 Setting a Reference to the Excel Object Model; E.2 Getting a Reference to the Excel Application Object; Appendix F: High-Level and Low-Level Languages; F.1 BASIC; F.2 Visual Basic; F.3 C and C++; F.4 Visual C++; F.5 Pascal; F.6 FORTRAN; F.7 COBOL; F.8 LISP; Appendix G: New Objects in Excel XP; Colophon;
Book by Roman PhD Steven
Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.
EUR 5,79 per la spedizione da Regno Unito a Italia
Destinazione, tempi e costiEUR 11,47 per la spedizione da U.S.A. a Italia
Destinazione, tempi e costiDa: Goldstone Books, Llandybie, Regno Unito
paperback. Condizione: Very Good. All orders are dispatched within one working day from our UK warehouse. We've been selling books online since 2004! We have over 750,000 books in stock. No quibble refund if not completely satisfied. Codice articolo mon0007485086
Quantità: 1 disponibili
Da: Better World Books Ltd, Dunfermline, Regno Unito
Condizione: Very Good. 2 Edition. Ships from the UK. Former library book; may include library markings. Used book that is in excellent condition. May show signs of wear or have minor defects. Codice articolo 8788030-6
Quantità: 2 disponibili
Da: Better World Books Ltd, Dunfermline, Regno Unito
Condizione: Good. 2 Edition. Ships from the UK. Used book that is in clean, average condition without any missing pages. Codice articolo 4377049-6
Quantità: 1 disponibili
Da: WeBuyBooks, Rossendale, LANCS, Regno Unito
Condizione: Good. Most items will be dispatched the same or the next working day. A copy that has been read but remains in clean condition. All of the pages are intact and the cover is intact and the spine may show signs of wear. The book may have minor markings which are not specifically mentioned. Codice articolo wbs5544254299
Quantità: 1 disponibili
Da: WeBuyBooks, Rossendale, LANCS, Regno Unito
Condizione: Very Good. Most items will be dispatched the same or the next working day. A copy that has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo wbs1584271435
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR001644502
Quantità: 3 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Fair. A readable copy of the book which may include some defects such as highlighting and notes. Cover and pages may be creased and show discolouration. Codice articolo GOR002407343
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Good. The book has been read but remains in clean condition. All pages are intact and the cover is intact. Some minor wear to the spine. Codice articolo GOR002001290
Quantità: 3 disponibili
Da: Bahamut Media, Reading, Regno Unito
Condizione: Very Good. Shipped within 24 hours from our UK warehouse. Clean, undamaged book with no damage to pages and minimal wear to the cover. Spine still tight, in very good condition. Remember if you are not happy, you are covered by our 100% money back guarantee. Codice articolo 6545-9780596003593
Quantità: 2 disponibili
Da: AwesomeBooks, Wallingford, Regno Unito
Condizione: Very Good. This book is in very good condition and will be shipped within 24 hours of ordering. The cover may have some limited signs of wear but the pages are clean, intact and the spine remains undamaged. This book has clearly been well maintained and looked after thus far. Money back guarantee if you are not satisfied. See all our books here, order more than 1 book and get discounted shipping. . Codice articolo 7719-9780596003593
Quantità: 2 disponibili