• Complain

Ken Getz - Access Cookbook. Solutions to Common User Interface & Programming Problems

Here you can read online Ken Getz - Access Cookbook. Solutions to Common User Interface & Programming Problems full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2009, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Access Cookbook. Solutions to Common User Interface & Programming Problems
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2009
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Access Cookbook. Solutions to Common User Interface & Programming Problems: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Access Cookbook. Solutions to Common User Interface & Programming Problems" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Not a reference book, and not a tutorial either, the new second edition of the highly regarded Access Cookbook is an uncommonly useful collection of solutions to problems that Access users and developers are likely to face as they attempt to build increasingly complex applications.

Although using any single recipe in the book will more than pay back the cost of the book in terms of both hours saved and frustration thwarted, Access Cookbook , Second Edition is much more than a handy assortment of cut-and-paste code.

Each of the recipes examine a particular problem--problems that commonly occur when you push the upper limits of Access, or ones that are likely to trip up a developer attempting to design a more elegant Access application--even some things you never knew Access could do. The authors then, in a clear, accessible, step-by-step style, present the problems solution. Following each recipe are insights on how Access works, potential pitfalls,...

Ken Getz: author's other books


Who wrote Access Cookbook. Solutions to Common User Interface & Programming Problems? Find out the surname, the name of the author of the book and a list of all author's works by series.

Access Cookbook. Solutions to Common User Interface & Programming Problems — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Access Cookbook. Solutions to Common User Interface & Programming Problems" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Access Cookbook, 2nd Edition
Ken Getz
Paul Litwin
Andy Baron
Editor
John Osborn

Copyright 2009 O'Reilly Media, Inc.

OReilly Media SPECIAL OFFER Upgrade this ebook with OReilly for more - photo 1

O'Reilly Media

SPECIAL OFFER: Upgrade this ebook with OReilly

for more information on this offer!

Please note that upgrade offers are not available from sample content.

A Note Regarding Supplemental Files

Supplemental files and examples for this book can be found at http://examples.oreilly.com/9780596006785/. Please use a standard desktop web browser to access these files, as they may not be accessible from all ereader devices.

All code files or examples referenced in the book will be available online. For physical books that ship with an accompanying disc, whenever possible, weve posted all CD/DVD content. Note that while we provide as much of the media content as we are able via free download, we are sometimes limited by licensing restrictions. Please direct any questions or concerns to .

Preface
What This Book Is About

This is an idea book. It's a compendium of solutionsand suggestions devoted to making your work with Microsoft Accessmore productive. If you're using Access and youaspire to create database applications that are more thanwizard-created clones of every other database application, this isthe book for you.

If, on the other hand, you're looking for a bookthat shows you how to create a form, or how to write your firstVisual Basic for Applications (VBA) function, or how to use theCrosstab Query Wizard, this may not be the bookyou need. For those kinds of things, we recommend one of the manyAccess books geared toward the first-time user.

Promotes Creative Use of the Product

Ratherthan rehashing the manuals, Access Cookbook offers you solutions to problems you may have already encountered,have yet to encounter, or perhaps have never even considered. Some ofthe issues discussed in this book are in direct response to questionsposted in the Microsoft Access newsgroups online (at news://msnews.microsoft.com ); others areproblems we've encountered while developing our ownapplications. In any case, our goal is to show you how to push theedges of the product, making it do things you might not even havethought possible.

For example, you'll learn how to create a query thatjoins tables based on some condition besides equality, how to size aform's controls to match the form'ssize, how to store and retrieve the locations and sizes of forms fromsession to session, and how to create a page-range indicator on everyreport page. You'll see how to use some of thecommon Windows dialogs from your Access application, how tointernationalize your messages, how to really control your printer, and how to store the username and date lastedited for each row. There are tips for securing your database,filling list boxes a number of different ways, and optimizing yourapplications. You'll find details on using Access inmultiuser environments, creating transaction logs, adjusting databaseoptions depending on who's logged in, andprogrammatically keeping track of users and groups. There areinstructions for using the Windows API to restrict mouse movement toa specific area of a form, exiting Windows under program control, andchecking the status of and shutting down another Windows application.You'll see how, using COM and Automation, you canuse Access together with other applications such as Word, Excel,PowerPoint, and Outlook.

If you've never tried data access pages (DAPs),you're in for a treatthis feature makes itsimple for you to display and edit data using a web browser.You'll learn enough to really get you started withthis exciting technology, and you'll learn solutionsto common but tricky problems. You'll find tips andtechniques for using Access and SQL Server together, taking advantageof Access Data Projects (ADPs). You'll learn howsmart tags have been implemented in Access 2003, and how to createyour own smart tags. And you'll also see how you howAccess allows you to work with XML data. You'llexplore how to work with SharePoint lists from within Access as wellas how to use SharePoint and FrontPage to publish Access data on theInternet or an intranet. Finally, you'll discoverhow easy it is to interoperate with Microsoft .NET from Access,learning both how to call .NET programs and Web services from Accessand how to work with Access data and reports from .NET programs.

Youwon't, however, find that this book pushes you intousing new technology just because it's new. Many ofthe techniques in this book are "oldchestnuts" that Access developers have used foryears to solve common problems. Most of the VBA code that performsdata manipulation chiefly uses the older technology, DAO, rather thanthe newer ADO, because DAO is still the most efficient way to workwith Access data. When ADO provides a better approach to solving aparticular problem, you'll learn how to use it forthat purpose. For example, you'll learn how you canuse an ADO recordset to retrieve a list of all the users logged on toyour applicationsomething that was never possible with DAO.

Uses the Tools at Hand

This book focuses on using the right tool for each problem. Somesolutions here require no programming, while others require a little(or a lot) of VBA coding. Sometimes even plain VBA codeisn't sufficient, and you'll needto use the Windows API or other available code libraries. In eachcase, we've tried to make the implementation of thetechnique as simple, yet generic, as possible.

We did, however, decide to focus thedata access features of this book squarely on using the Jet databaseengine (instead of SQL Server). There are several reasons why we madethis choice, but first and foremost is that most Access developersstill prefer the convenience and simplicity of using Jet. The Jetdatabase engine remains a cost-effective and capable solution fordatabase applications used by small workgroups, which make up thevast majority of the Access user base. Most of the techniquesdescribed in this book, however, will work just as effectively withdata from SQL Server or from other ODBC data sources, even if theexample uses a Jet database. And if you are working with non-Accessdata sources, you'll find plenty of tips focused onhelping you do so more efficiently.

Follows a Problem-Solution Format

The structure of this book is simple. The chapters are arranged bycategories: queries, forms, reports, application design, printing,data manipulation, VBA, optimization, user interface, multiuser,Windows API, Automation, DAPs, and SQL Server applications. Eachsection consists of a single problem and its solution, followed by adiscussion. Each solution contains a sample database (e.g., 01-01.MDB ) with complete construction details,indicating which modules you'll need to import, whatcontrols you'll need to create, and what eventsyou'll need to handle. In one case, Recipe 4-10, anyMDB file used elsewhere in the chapter will do. To use certainChapter 14 examples, you will need to be connected to either theNorthwind or Pubs databases that ship with SQL Server. All the code,bitmaps, sample data, and necessary tools are included with theCD-ROM that accompanies this book. (CD content is available online athttp://examples.oreilly.com/accesscook.)

Who This Book Is For

You don't have to be a VBA whiz to use this book.It's designed for all levels of readers: end users,power users, and developers.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Access Cookbook. Solutions to Common User Interface & Programming Problems»

Look at similar books to Access Cookbook. Solutions to Common User Interface & Programming Problems. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Access Cookbook. Solutions to Common User Interface & Programming Problems»

Discussion, reviews of the book Access Cookbook. Solutions to Common User Interface & Programming Problems and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.