Writing Excel Macros with VBA: Learning to Program the Excel Object Model Using VBA

Roman, Steven

ISBN 10: 0596003595 ISBN 13: 9780596003593
Editore: O'Reilly Media, 2002
Usato Brossura

Da ZBK Books, Carlstadt, NJ, U.S.A. Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Venditore AbeBooks dal 10 marzo 2023

Questo articolo specifico non è più disponibile.

Riguardo questo articolo

Descrizione:

Used book in good and clean conditions. Pages and cover are intact. Limited notes marks and highlighting may be present. May show signs of normal shelf wear and bends on edges. Item may be missing CDs or access codes. May include library marks. Fast Shipping. Codice articolo ZWM.DRLL

Segnala questo articolo

Riassunto:

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:

    The Visual Basic Editor and the Excel VBA programming environment. Excel features a complete, state-of-the-art integrated development environment for writing, running, testing, and debugging VBA macros.
The VBA programming language, the same programming language used by the other applications in Microsoft Office XP and 2000, as well as by the retail editions of Visual Basic 6.0. The Excel object model, including new objects and new members of existing objects in Excel 2002. Excel exposes nearly all of its functionality through its object model, which is the means by which Excel can be controlled programmatically using VBA. While the Excel object model, with 192 objects, is the second largest among the Office applications, you need to be familiar with only a handful of objects to write effective macros. Writing Excel Macros focuses on these essential objects, but includes a discussion of many more objects as well. Writing Excel Macros with VBA, 2nd Edition is written in a terse, no-nonsense manner that is characteristic of Steven Roman's straightforward, practical approach. Instead of a slow-paced tutorial with a lot of handholding, Roman offers the essential information about Excel VBA that you must master to write macros effectively. This tutorial is reinforced by interesting and useful examples that solve common problems you're sure to have encountered. Writing Excel Macros with VBA, 2nd Edition is the book you need to delve into the basics of Excel VBA programming, enabling you to increase your power and productivity.

Contenuti: 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;

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

Dati bibliografici

Titolo: Writing Excel Macros with VBA: Learning to ...
Casa editrice: O'Reilly Media
Data di pubblicazione: 2002
Legatura: Brossura
Condizione: good
Edizione: seconda edizione

I migliori risultati di ricerca su AbeBooks

Immagini fornite dal venditore

Steven Roman, Phd
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Brossura

Da: WeBuyBooks, Rossendale, LANCS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 1,76
Convertire valuta
Spese di spedizione: EUR 11,37
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Immagini fornite dal venditore

Steven Roman, Phd
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Brossura

Da: WeBuyBooks, Rossendale, LANCS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 1,76
Convertire valuta
Spese di spedizione: EUR 11,37
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, Phd
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 3,15
Convertire valuta
Spese di spedizione: EUR 10,66
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 3 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, Phd
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 3,15
Convertire valuta
Spese di spedizione: EUR 10,66
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Roman, Steven
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 3,15
Convertire valuta
Spese di spedizione: EUR 10,66
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 3 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: HPB Inc., Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_435394018

Contatta il venditore

Compra usato

EUR 3,63
Convertire valuta
Spese di spedizione: EUR 95,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: HPB-Diamond, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_404244582

Contatta il venditore

Compra usato

EUR 3,64
Convertire valuta
Spese di spedizione: EUR 95,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman, Phd
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato paperback

Da: Goldstone Books, Llandybie, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 4,35
Convertire valuta
Spese di spedizione: EUR 5,91
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

Steven Roman
Editore: O'Reilly Media, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Paperback

Da: HPB-Emerald, Dallas, TX, U.S.A.

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

Paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_427964978

Contatta il venditore

Compra usato

EUR 4,72
Convertire valuta
Spese di spedizione: EUR 95,30
Da: U.S.A. a: Italia
Destinazione, tempi e costi

Quantità: 1 disponibili

Aggiungi al carrello

Foto dell'editore

PhD Steven Roman
Editore: O'Reilly Media 05/07/2002, 2002
ISBN 10: 0596003595 ISBN 13: 9780596003593
Antico o usato Brossura

Da: Bahamut Media, Reading, Regno Unito

Valutazione del venditore 5 su 5 stelle 5 stelle, Maggiori informazioni sulle valutazioni dei venditori

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

Contatta il venditore

Compra usato

EUR 5,04
Convertire valuta
Spese di spedizione: EUR 8,87
Da: Regno Unito a: Italia
Destinazione, tempi e costi

Quantità: 2 disponibili

Aggiungi al carrello

Vedi altre 30 copie di questo libro

Vedi tutti i risultati per questo libro