Instant Access Databases

( 1 )

Overview

Greg Buczek,successful author of Instant ASP Scripts and ASP Developer's Guide,delivers this hands-on "cookbook" aimed at developers and database administrators. Focuses on key topics of interest for high-end Access developers,and provides database solutions for e-commerce,network management,company intranets and more. This must-have book contains complete database solutions that aren't available through wizards or templates.

The Ultimate Collection of Ready-to-Use Code and ...

See more details below
Available through our Marketplace sellers.
Other sellers (Paperback)
  • All (12) from $1.99   
  • New (2) from $50.07   
  • Used (10) from $1.99   
Close
Sort by
Page 1 of 1
Showing All
Note: Marketplace items are not eligible for any BN.com coupons and promotions
$50.07
Seller since Tue Jan 01 01:01:01 EST 2008

Feedback rating:

(171)

Condition:

New — never opened or used in original packaging.

Like New — packaging may have been opened. A "Like New" item is suitable to give as a gift.

Very Good — may have minor signs of wear on packaging but item works perfectly and has no damage.

Good — item is in good condition but packaging may have signs of shelf wear/aging or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Acceptable — item is in working order but may show signs of wear such as scratches or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Used — An item that has been opened and may show signs of wear. All specific defects should be noted in the Comments section associated with each item.

Refurbished — A used item that has been renewed or updated and verified to be in proper working condition. Not necessarily completed by the original manufacturer.

New
0072130768 BRAND NEW NEVER USED IN STOCK 125,000+ HAPPY CUSTOMERS SHIP EVERY DAY WITH FREE TRACKING NUMBER

Ships from: fallbrook, CA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$175.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
Page 1 of 1
Showing All
Close
Sort by
Sending request ...

Overview

Greg Buczek,successful author of Instant ASP Scripts and ASP Developer's Guide,delivers this hands-on "cookbook" aimed at developers and database administrators. Focuses on key topics of interest for high-end Access developers,and provides database solutions for e-commerce,network management,company intranets and more. This must-have book contains complete database solutions that aren't available through wizards or templates.

The Ultimate Collection of Ready-to-Use Code and Expert Techniques This complete reference delivers a hands-on approach to setting up and implementing robust,fully-functional Access databases,enabling information sharing and management by Web and database developers,database administrators,and users of all types. An easy-to-follow process guides you through each step of creating an Access database that best suits your needs.

Covers an infinite range of database types. Discover your most efficient means of managing information for employees or companies,manufacturing or workflow processes,customer service,product distribution and tracking,home or small office,and much more.

Understand how:

  • Creating relationships,validation rules,and converting macros to code,can improve your databases
  • Stored information easily converts to HTML pages
  • Coding shortcuts help manage objects,set values,search for data,and more
  • Follow expert coding tips to create short cuts and automated code
  • Create databases for employees,company management,customer service,network management,product distribution and tracking,and more
  • Work in multiple databases,upload data,or upsize your entire Access database
  • Create and customize an effective databaseinterface to access exactly what you need
  • Design databases to store easily retrieved data fields in logically-organized tables of records
Read More Show Less

Product Details

  • ISBN-13: 9780072130768
  • Publisher: McGraw-Hill Professional
  • Publication date: 12/29/2000
  • Series: Application Development Series
  • Edition description: BK&CD-ROM
  • Pages: 759
  • Product dimensions: 7.35 (w) x 9.19 (h) x 1.78 (d)

Read an Excerpt

Chapter 2: Access Programming Techniques

Another value you can set this property to is All Records. This basically locks the entire table from anyone else editing, adding, or deleting records in the underlying table. The lock is released when the form is closed.

A less restrictive locking can be achieved by setting the property to Edited Records. This locks a page of records when any field is edited, which prevents another person from editing the record currently being worked on. A page in Access is 4,000 bytes of data. So, if each of your records are 1,000 bytes, locking one page or editing one record actually locks four records.

Record Selectors, Navigation Buttons, and Dividing Lines Properties

You can control the look of the form through the Record Selectors, Navigation Buttons, and Dividing Lines properties. If you set the Record Selectors property to No, the user does not see the bar to the left of a record that enables them to highlight an entire record. If you set the Navigation Buttons property to No, the user does not see the arrows at the bottom of the form that enable them to scroll through the records. The purpose of the Dividing Lines properties is to determine whether you see the lines between the form and the navigation section.

For most of the forms in the sample databases in this book, the Record Selectors and Dividing Lines properties are set to No. If you are using a form as a dialog form that does not directly link to the fields in the database, you set the Navigation Buttons property to No.

Report Properties

This section examines some helpful and lesser-known properties of a report that are different from those reviewed inthe Form Properties section. As with a form, you view the properties of a report by right-clicking on the small box in the upper-left corner of the report in Design view.

Page Header and Page Footer Properties

The Page Header and Page Footer properties are used to indicate whether or not to display the header and footer sections on a report. By default, the property is set to All Pages. This prints the section on all the pages of a report. If you set the property to Not with Rpt Hdr, the section is not printed on the page that the report header is printed. If you set the property to Not with Rpt Ftr, then the section is not displayed on the page that the report footer is displayed. If you set the property to Not with Rpt Hdr/Ftr, the section is not displayed on the page where the report header or the report footer is displayed.

Force New Page

Some of the sections of a report have a property called Force New Page. This property is used to indicate the layout action around the section of the report. The default for this property is None, which does not force any page breaks before or after the section prints. If you set the property to Before Section, however, a new page of the report appears before the section. If you set the property to After Section, a new page appears in the report after the section. You can also set the property to Before & After, which forces a new page before and after the section of the report.

Control Properties

This section reviews some of the properties of the common controls that you can add to your form through the Toolbox. To view the properties of a control while in Design view of a form or report, right-click on the Control and Select properties. Note that most of these properties are only available for some of the controls.

Control Source Property

Most of the controls that you add to a form or report can be bound to a field in the underlying table of the form or report. When it is said that a field is bound, that means that the field displays the data for a field in the database. As the user changes that data, the underlying fields are updated. The Control Source property is used to determine which field the control will display.

Status Bar Text Property

Sometimes the field name or the field caption does not tell the user enough information about the field for him or her to be able to enter the data correctly. You can provide the user with more information, however, through the Status Bar Text property. Whatever text you place in this property is displayed in the status bar when the field has the focus.

Enter Key Behavior

Based on the type of field, you may want the Enter key to take one action or another. For example, when the user presses the Enter key in a field such as a First Name, you want the focus to move to the next field such as the Last Name field. In a field like Notes or Comments, however, you may want an Enter key to display a new line.

You can set this behavior through the Enter Key Behavior property. If the property is set to Default, then Access uses the default Access behavior for the field. Typically, it moves it on to the next field on the form. If you set the property to New Line in Field, a new line is added at the point the Enter key is pressed in the field.

Enabled and Locked Properties

The Enabled and Locked properties control the data changes that can be made to the data in the control. By default, Enabled is set to Yes and Locked is set to No, which enables the user to edit the data in a field.

If Enabled is changed to No, the data in the field is still displayed, but it is grayed out and the user cannot highlight the text. If the Locked property is set to Yes, the data is not grayed out, but it still cannot be edited. The user can, though, highlight and copy the locked text.

Tab Stop and Tab Index Properties

Typically, when a user works with your form, he or she uses the Tab key to move from field to field. The order that dictates where the user goes as they tab from field to field is referred to as the Tab Order. You can easily modify this order through the Tab Order dialog displayed in Figure 2-6.

You can select this dialog through the View menu. The dialog enables you to drag and drop the order in which a field occurs in the Tab Order list.

You can also control this behavior through the Tab Stop and Tab Index properties. First, remove a control from the Tab Order by setting the Tab Stop property to No. The Tab Index property is used to indicate the order in which the control appears in the Tab Order.

ControlTip Text

Many programs use a device that displays a yellow box that displays some brief text when a user moves the cursor over a field. That box is sometimes called Balloon Help, Tool Tip Text, or, in Access, ControlTip Text. Whatever text you place in this property is displayed when the user hovers the cursor over the control...

Read More Show Less

Table of Contents

Acknowledgments xi
Book Structure xii
Final Note xv
Section 1 Access Programming Basics 1
Chapter 1 Intro to Access 3
Creating Efficient and Effective Access Databases 3
Creating Tables 3
Field Names and Description 4
Data Types 5
Primary Keys 10
Indexes 11
Field Properties 12
Table Properties 19
Relationships 20
Defined 20
Relationships Dialog 21
Summary 23
Chapter 2 Access Programming Techniques 25
Beyond Wizards 25
Designing Forms, Reports, and Controls 25
Sections 25
Form Properties 29
Report Properties 32
Control Properties 33
Creating Code 35
Creating Code Through a Wizard 35
Learning Through Macros 37
Visual Basic Editor and the Code Window 39
Events 40
Form Events 40
Report Events 42
Control Events 42
Data Access Objects 44
Section 2 Instant Access Databases 47
Chapter 3 Employees 49
Databases to Manage Employees 49
Sample Walk-through 50
Table Definitions and Relationships 55
Field Specifications 56
Forms 60
Reports 69
Employee Testing Database 70
Sample Walk-through 70
Table Definitions and Relationships 74
Field Specifications 76
Forms 78
Report 89
Job Application Database 89
Sample Walk-through 90
Table Definitions and Relationships 91
Field Specifications 92
Forms 94
Report 100
Chapter 4 Company Management 101
Databases to Solve Internal Business Needs 101
Purchase Order Database 102
Sample Walk-through 102
Table Definitions and Relationships 115
Field Specifications 117
Forms 119
Reports 125
Equipment Check Out Database 126
Sample Walk-through 126
Table Definitions and Relationships 132
Field Specifications 133
Forms 136
Reports 144
Chapter 5 Databases for Managing Networks 147
Keeping Track of Software and Hardware 147
Software Documentation Database 148
Sample Walk-through 148
Table Definitions and Relationships 155
Field Specifications 157
Forms 162
Reports 177
Code Library Database 178
Sample Walk-through 178
Table Definitions and Relationships 182
Field Specifications 183
Forms 186
Report 193
Software - Hardware Profiles Database 194
Sample Walk-through 194
Table Definitions and Relationships 200
Field Specifications 202
Forms 208
Reports 214
Chapter 6 Events 215
Working with a Venue and Its Events 215
Events Database 216
Sample Walk-through 216
Table Definitions and Relationships 220
Field Specifications 222
Forms 224
Reports 240
Chapter 7 Working with Customers 243
Managing Customers, Orders, and Contacts 243
Customers Database 244
Sample Walk-through 244
Table Definitions and Relationships 251
Field Specifications 254
Forms 262
Reports 274
Contact Manager Database 275
Sample Walk-through 275
Table Definitions and Relationships 279
Field Specifications 280
Modules 283
Forms 283
Reports 289
Chapter 8 Products 293
Managing Inventory and Warehouses 293
Products Database 294
Sample Walk-through 294
Table Definitions and Relationships 301
Field Specifications 302
Forms 308
Reports 327
Chapter 9 Help Desk 329
Managing Customer Problems and Resolutions 329
Help Desk Database 330
Sample Walk-through 330
Table Definitions and Relationships 339
Field Specifications 342
Forms 349
Library Notes Form 363
Reports 368
Chapter 10 Project Management 371
Working with Projects, Milestones, and Steps 371
Project Management Database 372
Sample Walk-through 372
Table Definitions and Relationships 380
Field Specifications 382
Forms 390
Reports 404
Chapter 11 Students, Teachers, and Courses 411
Managing the Functionality of an Educational Institution 411
Students, Teachers and Courses Database 412
Sample Walk-through 412
Table Definitions and Relationships 423
Field Specifications 426
Forms 435
Reports 452
Chapter 12 Company Specific 455
Databases That Meet the Needs of Specific Companies 455
Room Reservations Database 456
Sample Walk-through 456
Table Definitions and Relationships 462
Field Specifications 465
Forms 470
Report 489
Property Manager Database 490
Sample Walk-through 490
Table Definitions and Relationships 494
Field Specifications 495
Forms 497
Reports 504
Chapter 13 PIM 507
Personal Information Manager 507
PIM Database 508
Sample Walk-through 508
Table Definitions and Relationships 512
Field Specifications 513
Forms 515
Report 542
Chapter 14 Working with MS Office 543
Using Word, Excel, and PowerPoint to Enhance your Database Applications 543
Word Form Letters Database 547
Sample Walk-through 548
Customers Table 550
Customers Form 552
Word Table Database 560
Sample Walk-through 560
Word Table Form 561
Using Excel Database 568
Sample Walk-through 568
Using Excel Form 570
Using PowerPoint Database 583
Sample Walk-through 583
Using PowerPoint Form 584
Section 3 Advanced Topics 589
Chapter 15 Creating Add-Ins and Wizards 591
Extending the Functionality of Access with Your Own Tools 591
DBInfo Database 592
Sample Walk-through 592
Creating the Add-In Database 594
UsysRegInfo Table 595
GeneralProcs Module 597
DB Info Form 597
Form Dialog Wizard 598
Sample Walk-through 599
USysRegInfo Table 601
GeneralProcs Module 602
Create a Dialog Form 602
My Table Wizard Database Add-In 611
Sample Walk-through 611
USysRegInfo Table 614
GeneralProcs Module 616
Table Builder Form 616
Chapter 16 Creating Static Web Pages from Access 627
Building Simple Web Pages Based on Your Access Database 627
Exporting to HTML 628
HTML Templates 632
Hyperlink Data Type 637
Creating Custom Static Pages Through Code 639
Instructors Form 643
HTML Table Form 648
Chapter 17 Creating Dynamic Web Content 657
Working with Data Access Pages 657
IIS and PWS 658
Data Access Pages 663
Defined 663
Creating Data Access Pages with Wizards 664
Data Access Page Properties and Controls 670
Data Access Page 670
Sections, Sorting, and Grouping 672
Controls 677
Record Navigation Control 677
Expand Control 678
Bound HTML Control 679
Scrolling Text Control 680
Bound Hyperlink and Hyperlink Controls 681
Chapter 18 Using Active Server Pages (ASP) 683
Creating Dynamic Server-Side Internet Solutions 683
What Is ASP? 684
How ASP Works 685
Advantages of Using ASP and Server-Side Scripting 686
Simple ASP Samples 687
Simple Hello Web 687
An ASP That Tells Time 689
ASP Object Model 691
The Request Object 693
The Response Object 699
GLOBAL.ASA and the Application and Session Objects 703
The Server Object 705
Creating ASPs for the Students, Teachers, and Courses Database 705
Sample Walk-through 706
Creating a DSN 710
Active Server Page Application 711
Appendix A Upsizing to SQL Server 727
Index 733
Read More Show Less

Customer Reviews

Average Rating 1
( 1 )
Rating Distribution

5 Star

(0)

4 Star

(0)

3 Star

(0)

2 Star

(0)

1 Star

(1)
Sort by: Showing 1 Customer Reviews
  • Anonymous

    Posted Sun Dec 01 00:00:00 EST 2002

    It is not a good book

    Many section sample codes do not work including chapter 4, chapter 6, chapter 12... This book has very little value.

    Was this review helpful? Yes  No   Report this review
Sort by: Showing 1 Customer Reviews

If you find inappropriate content, please report it to Barnes & Noble
Why is this product inappropriate?
Comments (optional)