Access 2013 All-in-One For Dummies
eBook - ePub

Access 2013 All-in-One For Dummies

Alison Barrows, Joseph C. Stockman, Allen G. Taylor

Compartir libro
  1. English
  2. ePUB (apto para móviles)
  3. Disponible en iOS y Android
eBook - ePub

Access 2013 All-in-One For Dummies

Alison Barrows, Joseph C. Stockman, Allen G. Taylor

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

Get started with the new Access 2013 with this impressive all-in-one reference!

Microsoft Access allows you to store, organize, view, analyze, and share data; the new release enables you to build even more powerful, custom database solutions that integrate with the web and enterprise data sources. This compilation of nine indispensible minibooks is exactly what you need to get up to speed on the latest changes to Access. This easy-to-understand resource provides both new and experienced Access users with invaluable advice for connecting Access to SQL Server, manipulating data locally, getting up to speed on the latest features of Access 2013, creating queries and macros, and much more. From the basics to advanced functions, this book is what you need to make Access more accessible.

  • Shows you how to store, organize, view, analyze, and share data using Access 2013
  • Includes nine minibooks that cover such topics as database design, tables, queries, forms, reports, macros, database administration, securing data, programming with Visual Basic for Applications (VBA), and using Access with the web
  • Helps you build database solutions that integrate with the web and other enterprise data solutions
  • Offers plenty of techniques, tips, and tricks to help you get the most out of Access

This all-in-one guide offers you access to all things Access 2013!

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Access 2013 All-in-One For Dummies un PDF/ePUB en línea?
Sí, puedes acceder a Access 2013 All-in-One For Dummies de Alison Barrows, Joseph C. Stockman, Allen G. Taylor en formato PDF o ePUB, así como a otros libros populares de Informatica y Database. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
For Dummies
Año
2013
ISBN
9781118637371
Edición
1
Categoría
Informatica
Categoría
Database
Book VIII
Programming in VBA
9781118510551-pp0801.eps
pt_webextra_bw.TIF
Find out about using VBA to change form controls at www.dummies.com/extras/access2013aio.
Contents at a Glance
Chapter 1: What the Heck Is VBA?
Chapter 2: Writing Code
Chapter 3: Writing Smarter Code
Chapter 4: Controlling Forms with VBA
Chapter 5: Using SQL and Recordsets
Chapter 6: Debugging Your Code
Chapter 1: What the Heck Is VBA?
In This Chapter
arrow.png
Understanding Visual Basic for Applications (VBA) code
arrow.png
Working with VBA code
arrow.png
Using Visual Basic Editor
arrow.png
Working with other people’s code
Visual Basic for Applications, often abbreviated VBA, is a programming language that you can use to extend the functionality of Microsoft Access and other products in the Microsoft Office suite of programs. A programming language is a means of writing instructions for the computer to execute (perform). Programmers often refer to the written instructions as code because the instructions aren’t in plain English. Rather, they’re in a language that the computer can interpret and execute.
You can create sophisticated Access databases without using VBA at all. In most cases, the other objects offered by Access — tables, queries, forms, reports, and macros — offer more than enough flexibility and power to create just about any database imaginable. Once in a while, though, you want to do something that none of those other objects can do. That’s where VBA comes in. If you can find no other way to accomplish some goal in Access, writing VBA code usually is the solution.
Getting Acquainted with VBA Code
So what the heck is VBA code, anyway? To the untrained eye, VBA code looks like gibberish — perhaps some secret code written by aliens from another planet. But to Access, the code represents very specific instructions on how to perform some task.
Within any given database, Access stores code in two places:
check
Class modules (code-behind forms): Every form and report you create automatically contains a class module (also called a code-behind form), as illustrated in Figure 1-1. The class module for a given form or report is empty unless you place controls in that form or report that require VBA code.
9781118510551-fg080101.eps
Figure 1-1: Every form and every report has a class module behind it.
check
Standard modules: Code can also be stored in standard modules. Code in standard modules is accessible to all objects in your database, not just a single form or report.
Opening a class module
If you want to view or change the code for a form or report’s class module, first open, in Design view, the form or report to which the module is attached. Then click the (Form Design Tools) Design tab, and click the View Code button in the Tools group, shown near the mouse pointer in Figure 1-2.
9781118510551-fg080102.tif
Figure 1-2: The View Code button.
You can also get to a class module from the Event tab of the proper...

Índice