ORPP logo

1001 Things You Wanted to Know About Visual FoxPro. (Record no. 75781)

MARC details
000 -LEADER
fixed length control field 11228nam a22005293i 4500
001 - CONTROL NUMBER
control field EBC3301799
003 - CONTROL NUMBER IDENTIFIER
control field MiAaPQ
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20240729124858.0
006 - FIXED-LENGTH DATA ELEMENTS--ADDITIONAL MATERIAL CHARACTERISTICS
fixed length control field m o d |
007 - PHYSICAL DESCRIPTION FIXED FIELD--GENERAL INFORMATION
fixed length control field cr cnu||||||||
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 240724s2000 xx o ||||0 eng d
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 9781930919099
Qualifying information (electronic bk.)
035 ## - SYSTEM CONTROL NUMBER
System control number (MiAaPQ)EBC3301799
035 ## - SYSTEM CONTROL NUMBER
System control number (Au-PeEL)EBL3301799
035 ## - SYSTEM CONTROL NUMBER
System control number (CaPaEBR)ebr10110770
035 ## - SYSTEM CONTROL NUMBER
System control number (CaONFJC)MIL54412
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)923121696
040 ## - CATALOGING SOURCE
Original cataloging agency MiAaPQ
Language of cataloging eng
Description conventions rda
-- pn
Transcribing agency MiAaPQ
Modifying agency MiAaPQ
050 #4 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.9.D3 -- A45 2000beb
082 0# - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.75/75
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Kramek, Andy.
245 10 - TITLE STATEMENT
Title 1001 Things You Wanted to Know About Visual FoxPro.
250 ## - EDITION STATEMENT
Edition statement 1st ed.
264 #1 - PRODUCTION, PUBLICATION, DISTRIBUTION, MANUFACTURE, AND COPYRIGHT NOTICE
Place of production, publication, distribution, manufacture Milwaukee :
Name of producer, publisher, distributor, manufacturer Hentzenwerke Publishing, Inc.,
Date of production, publication, distribution, manufacture, or copyright notice 2000.
264 #4 - PRODUCTION, PUBLICATION, DISTRIBUTION, MANUFACTURE, AND COPYRIGHT NOTICE
Date of production, publication, distribution, manufacture, or copyright notice ©2000.
300 ## - PHYSICAL DESCRIPTION
Extent 1 online resource (584 pages)
336 ## - CONTENT TYPE
Content type term text
Content type code txt
Source rdacontent
337 ## - MEDIA TYPE
Media type term computer
Media type code c
Source rdamedia
338 ## - CARRIER TYPE
Carrier type term online resource
Carrier type code cr
Source rdacarrier
505 0# - FORMATTED CONTENTS NOTE
Formatted contents note Intro -- Dedications -- List of Chapters -- Table of Contents -- Our Contract with You, The Reader -- Acknowledgements -- About Us -- How to Download the Files -- Introduction -- What is this book? -- A word about the code in this book -- So who is this book for? -- What is in this book? -- What is not in this book? -- Where do you start? -- Chapter 1 Controlling the VFP Environment -- Starting Visual FoxPro -- Configuration files -- How to specify a config.fpw file -- How VFP locates its configuration file -- How VFP starts up when no configuration file is found -- Including a configuration file in the project -- How to suppress a configuration file -- How to determine which configuration file is being used -- What goes into the configuration file? -- Special settings -- SET Commands -- Commands -- Giving VFP a path -- How VFP looks for files -- Setting the default directory -- Using the SET PATH command -- Where am I? -- How to set a path programmatically -- Making sure VFP is only started once -- Using a 'semaphore' file -- Using the Windows API -- Combination of semaphore and Windows API -- SET Commands and DataSessions -- What exactly does "Default DataSession" mean? -- So can I have a "public" Datasession? -- How can I ensure SET commands apply to a private data session? -- Adding code to BeforeOpenTables() -- Suppressing auto-open tables -- Creating an environment setting class -- How do I get rid of the system toolbars? -- The system toolbar "Gotcha! -- Can I make use of keyboard macros in VFP? -- How can I construct a more complex macro? -- What is a "Macro Set"? -- What's the difference between a macro and an On Key Label? -- How do I create a 'Splash' screen? -- How do I run my splash screen? -- An alternative to the splash screen -- How to wallpaper your desktop -- So how can I get the size of the current _Screen area?.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note Do I really need to create all these bitmaps? -- A toolbar 'gotcha!' -- Tidying up your development environment -- Closing VFP down -- What is an On ShutDown procedure? -- What triggers an On Shutdown procedure? -- What goes into an On Shutdown procedure? -- Chapter 2 Functions and Procedures -- How shall we proceed? -- Parameters (an aside) -- By reference, by value? -- How do I know what was passed? -- How should I position my parameters? -- How can I return multiple values from a function? -- What about using named parameters? -- Passing parameters optionally -- Date and time functions -- Elapsed time -- Date in words -- Calculating Age -- What date is the second Tuesday in October of 2000? -- Setting up a payment schedule -- What date is ten business days from today? -- Gotcha! Strict date format and parameterized views -- Working with numbers -- Converting numbers to strings -- Gotcha! calculations that involve money -- String functions -- Gotcha! string concatenation -- Converting between strings and data -- Other useful functions -- How do I determine if a tag exists? -- How do I determine if a string contains at least one alphabetic character? -- How to convert numbers to words -- How to extract a specified item from a list -- Is there a simple way of encrypting passwords? -- Where do you want to GOTO? -- Chapter 3 Design, Design and Nothing Else -- So why all the fuss about OOP anyway? -- So, just what does all this OOP jargon mean? -- Property -- Method -- Event -- Messages -- Classes and Objects -- Inheritance -- Composition -- Aggregation -- Delegation -- Encapsulation -- Polymorphism -- Hierarchies -- Practical object oriented programming (POOP) -- When should you define a class? -- So how do you go about designing a class? -- This all sounds very good but what does it mean in practice? -- How do you go about building your classes?.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note But does all this design stuff really work in practice? -- How does the design actually translate into code? -- Working with your classes -- How do I get my classes into the form controls toolbar? -- While we're at it, how can I identify my custom classes in the toolbar? -- But whenever I want white in my bitmaps it shows up gray! -- How do I make Visual FoxPro use my classes instead of base classes? -- How do I change the caption of the label that VFP adds? -- So can I get a browse to show the field name when a caption is set? -- User interface design -- Perception governs acceptance -- Keep your users focussed -- Use the right control for the job -- Chapter 4 Basic Controls -- What do we mean by 'basic'? -- Text boxes -- Text box label class -- Date text box -- Incremental search text box -- Numeric text box -- Handling time -- A time entry text box -- A time entry composite class -- The true time spinner -- Blinking labels -- The expanding edit box -- Calendar combo -- Command buttons -- Gotcha! Programming the logical controls -- Pages and page frames -- Chapter 5 Combos and Lists -- Combo and list box basics -- List and ListItem collections -- When do the events fire? -- How do I bind my combo and list boxes? -- How do I refer to the items in my combo and list boxes? -- What is the difference between DisplayValue and Value? -- What's the difference between RowSourceTypes "alias" and "fields"? -- How do I make my combo and list boxes point to a particular item? -- Quickfill combos -- How do I add new items to my combo and list boxes? -- How do I filter the items displayed in a second combo or list box based on the selection made in the first? -- A word about lookup tables -- Generic lookup combos and lists -- So what if I want to bind my combo to a value that isn't in the list? -- How do I disable individual items in a combo or list?.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note How do I create a list box with check boxes like the one displayed by Visual FoxPro when I select "View Toolbars" from the menu? -- A mover list class -- What if I need to display hundreds of items in my combo box? -- Chapter 6 Grids: The Misunderstood Controls -- When do the events fire? -- Gotcha! Grid's valid fires before the valid of the current control -- What is the difference between ActiveRow and RelativeRow? -- Gotcha! ActiveColumn does not really tell you which is the active column -- How do I highlight the current grid row? -- How do I keep my grid from scrolling when the user tabs off the last column? -- How do I create multiline headers? -- Gotcha! Scrolled event does not fire when cursor keys scroll the grid -- Using tool tip text instead of multiline headers -- How do I change the grid's display order? -- How do I control the cursor? -- How do I display the last full page of a grid? -- How do I use a grid to select one or more rows? -- How do I give my multiselect grid incremental search capability? -- How do I use DynamicCurrentControl? -- How do I filter the contents of a grid? -- So what about data entry grids? -- How do I add new records to my grid? -- How do I handle row level validation in my data entry grid? -- How do I delete records in my data entry grid? -- How do I add a combo box to my grid? -- Conclusion -- Chapter 7 Working with Data -- Tables in Visual FoxPro -- Some basics -- How to open the specific table you want to use -- How to get the structure of a table -- How to compare the structures of two tables? -- How to test for the presence of a field in a table -- How to check if a table is being used by another user -- What is exactly is a cursor? -- Indexes in Visual FoxPro -- Types of indexes -- How to get information about an index -- How to test for the existence of an index tag -- Using candidate (and primary) keys.
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note What is a "surrogate key"? -- Managing user-entered keys -- Using indexes with bound tables -- How to index mixed data types when creating a compound key -- How to index a buffered table -- Working with the database container -- Using long table names -- Using long field names - don't!!! -- Using database containers -- How to validate a database container -- How to pack a database container -- Moving a database container -- Renaming a database container -- Managing referential integrity in Visual FoxPro -- Limitations of the generated RI Code -- Using compound keys in relationships -- What about other RI options? -- Using triggers and rules in Visual FoxPro -- So what's the practical difference between a 'trigger' and a 'rule'? -- Why, when adding a trigger to a table, does VFP sometimes reject it? -- Can I temporarily disable a trigger or rule then? -- How do I actually create my trigger and rule procedures? -- How do I add a trigger to a table? -- So when should I use a trigger? -- And when should I use a rule? -- Must a trigger or rule always refer to a single function? -- Chapter 8 Data Buffering and Transactions -- Using data buffering -- Where are we coming from? -- What do we mean by 'buffering' anyway? -- What does all this mean when creating data-bound forms? -- So just how do I set up buffering in a form? -- So what mode of buffering should I use in my forms? -- Changing the buffer mode of a table -- IsChanged() - another function that FoxPro forgot? -- Using TableUpdate() and TableRevert() -- Managing the scope of updates -- TableUpdate()'s second (force) parameter -- Specifying the table to be updated or reverted -- Conclusion -- How can I handle 'save' and 'undo' functionality generically? -- The design of the form class -- Using the new form class -- Detecting and resolving conflicts -- The role of OldVal() and CurVal().
505 8# - FORMATTED CONTENTS NOTE
Formatted contents note So how do I actually detect conflicts?.
588 ## - SOURCE OF DESCRIPTION NOTE
Source of description note Description based on publisher supplied metadata and other sources.
590 ## - LOCAL NOTE (RLIN)
Local note Electronic reproduction. Ann Arbor, Michigan : ProQuest Ebook Central, 2024. Available via World Wide Web. Access may be limited to ProQuest Ebook Central affiliated libraries.
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element Visual FoxPro for Windows.
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name entry element Database management.
655 #4 - INDEX TERM--GENRE/FORM
Genre/form data or focus term Electronic books.
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Akins, Marcia.
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Schummer, Rick.
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Hosier, John.
776 08 - ADDITIONAL PHYSICAL FORM ENTRY
Relationship information Print version:
Main entry heading Kramek, Andy
Title 1001 Things You Wanted to Know About Visual FoxPro
Place, publisher, and date of publication Milwaukee : Hentzenwerke Publishing, Inc.,c2000
797 2# - LOCAL ADDED ENTRY--CORPORATE NAME (RLIN)
Corporate name or jurisdiction name as entry element ProQuest (Firm)
856 40 - ELECTRONIC LOCATION AND ACCESS
Uniform Resource Identifier <a href="https://ebookcentral.proquest.com/lib/orpp/detail.action?docID=3301799">https://ebookcentral.proquest.com/lib/orpp/detail.action?docID=3301799</a>
Public note Click to View

No items available.

© 2024 Resource Centre. All rights reserved.