USING the SAS @DATA STEP LANGUAGE to READ Dbase III FILES Michael C

Total Page:16

File Type:pdf, Size:1020Kb

USING the SAS @DATA STEP LANGUAGE to READ Dbase III FILES Michael C Host Systems and Environments 217 USING THE SAS @DATA STEP LANGUAGE TO READ dBASE III FILES Michael C. Harris ARC Information Systems Division Abstract The dBASE III file fannat is arguably the most enduring • Date fields with data stored in YYYYMMDD in the PCIMS-DOS world. Originated by Ashton-Tate in format. the 19805, it has won widespread support among third­ party vendors of both enduser products and application • Logical fields hold BooJean data. They are repre­ development tools. The tenn "xBase" has been coined sented in xBase as one byte character fields that to describe third-party products supporting the dBASE may contain only the values "t", "T", "y", "Y", f file fonnat. Today, specialized research databases are n"', "N", "f' or "F '. available in the dBASE .DBF tbnnat. They may contain many tens of thousands ofrecords and occupy multiple • Memo fields are variable length character strings and megabytes of disk space. This paper discusses a tech­ are not stored in the .DBF file. The .DBF file itself nique for reading DBF files into SAS data sets in the contains a ten byte pointer into another specially PCIMS-DOS and UNIX Sun-OS environments. The structured file having the same name as the .DBF concepts may be applicable to other operating systems as file and a .DBT extension. The xBase language au­ well. tomatically creates and manages .DBT files and many users are not aware of their existence. Be­ Introduction cause the actual data can have maximum sizes of Native support for the dBASE file format exists in PC­ four kilobytes to sixty-four kilobytes depending SAS as PROC DBF. This procedure reads and writes upon implementation, handling memo fields in SAS both dBASE III and dBASE IV files. However, it cannot can be very difficult. read files containing more than 32,767 observations, a constraint that limits the usefulness of the procedure The dBASE ill File Structure when reading files several megabytes in size. The data A dBASE file consists of a variable length binary header step code we will discuss was originally written to followed by fixed length data records. The header overcome this limitation in the PCIMS-DOS environ­ consists of two types of records: ment. An inquiry from a version 6.07 SAS user operat­ ing under Sun-OS prompted us to port the code to that • One thirty-two byte record containing a file identi­ operating system. Briefly, the task at band was to read fier, the date the file was last modified, the number large (ten megabytes or more) files in dBASE III .DBF of records. the size of each record and an unused fonnat from CD-ROMs into SAS data sets. Note that area. PROC DBF exists only in PC-SAS. dBASE Field Types Fields in the xBase world are analogous to variables in • A variable number of thirty-two byte field descriptor SAS. records containing field names, types, lengths, and While only character and numeric data exist in SAS. decimal places for numeric fields. xBase supports a rich variety of data types. With one exception however, they can all be represented in SAS as Each data record is preceded by a one- byte field xBase characters or numerics. Here are the data types that most uses internally to mark records as logically deleted. xBase products support, along with some of their dBASE files are unlike most data we are accustomed to characteristics. reading with SAS in that there are no "lines" ofdata: The filesaresimplystringsofbytes. Theyarenotrawdataflles. • Character fields contain alphanumeric data. The They resemble SASdatasetsinthatthey containdataand maximum length is implementation dependent. all the infonnationyouneedto read it correctIy, provided you knowhowtodeciphertheheader. Tables 1 and2showthe • Numeric fields hold up to 19 bytes including structure of each component of the dBASE header. positions for the sign and decimal point. NESUG '92 Proceedings 218 Host Systems and Environments Table 1: Initial 32 Byte Header be discarded. The second section is a code generator. It reads each field descriptor record, extracts variable ~ Contents Length names and adjusts them if necessary, extracts field 00 .DBF ID (00 or 83 hex) 1 widths and types and constructs intormats, and writes a 01 year of last update 1 data step program to a tile. The .OBF header is read into 02 month of last update 1 one or more variables and dropped, along with the field 03 day of last update 1 indicating logical deletion. We initially attempted to 04 number of records 4 ignore the header and simply begin reading the dBASE 08 header length 2 file beyond the header using @ pointer controls. That OA record size 2 didn't work, because it wasn't possible to advance the OC unused 20 pointer beyond byte 32,767. Table 2: Field Descriptors After writing all the necessary statements to a file, that file is %INCLUDEO into the current program and run. ~ Contents Length We considered writing macro code but decided this 00 field name 11 approach would be more tlexible. if the user is going to OB field type 1 be processing several files baving the same structure, OC unused 4 which is not unusual, the data step code contained in the 10 field length 1 file we wrote can easily be reused by changing the 11 field decimals 1 names of the input and output files. It isn't necessary to 12 unused 14 run the entire program again. Implementation Notes ~esign Goals Below are two sets of source code, one for PClMS-DOS, Our primary goal was to create a program that would and the other for Sun OS. The most obvious difference read dBASE files and represent data types not native to between them is in the handling of binary fields two or SAS in the same maD.Iler as PROC OBF. Here are the more bytes in length. The 80x86 t3.mi.ly of microproces­ representations we chose: sors for which dBASE was originally written stores integers with the least significant byte at the lower • dBASE character fields become SAS character address, the reverse of Sun's family ofRISC processors: variables. Therefore, header fields COI1taining the number of records, the header length, and the record length must • dBASE numeric fields become SAS nmneric have thejr byte ordering reversed on the Sun workstation. variables. dBASE flIes of seven or more fields have headers greater than two hundred bytes long. We checkthe header length • <!BASE date fields become SAS dates. anddynamicallygenerate asmanyvariablenamesand informat5as we need to read it. Atthe same time, we create • dBASE logical fields become SAS character vari­ a list ofvariables to drop and add each newly created header ables. variable name to the list • Memo fields will not be supported. A warning Field names in dBASE can be up to ten bytes long, while will be issued if memo fields are found, but the valid SAS variable names are limited to eight bytes. fields will not become part of the SAS data set. We handle this incompatibility by checking the length of Also, we chose to ignore the field indicating logical each field name. if it is greater than eight bytes, we deletion and read every record into the new SAS truncate and compare it to a list Ofall variable names data set. processed thus far. If truncation creates a duplicate name, we dynamically create a new name by concatenat­ ing the character string 'VAR' to the alphanumeric The Strategy representation of the variable's position in the program This program consists of two parts. The first section data vector. We notify the of any changes in reads the. first thirty-two bytes of the header and det«­ user mines how many SAS variables need to be created, variable names. including variables to hold the entire header, wbich will NESUG '92 Proceedings Host Systems and Environments 219 COnclusion Acknowledgements It has been said that the SAS data step language can be SAS is a registered trademark of SAS Institute Inc., used for reading any kind of data. We developed a Cary NC, USA. program for reading structured biliary data in the form of dBASE ill files using PC-SAS and ported it to a new dBASE and dBASE III are registered trademarks of operating system \¥ith minimal effort. The techniques Borland!Ashton-Tate. employed may be useful for reading other types of files as well. Further Information For further infonnation, the author can be reached at: References 1. Professional SAS Programming Secrets McGraw-Hili, Atlantic Research Corp. Aster/Seidman Information Systems Division 1301 Piccard Drive, 2nd floor 2. Clipper Programming Guide, 2nd Edition Microtrend, Rockville, MD 20850 Spence (301)258-5300 3. SAS Language Guide for Personal Computers, Version 6 Edition, SAS Institute, Inc. 4. SAS Companion for the UNIX Environment and De­ rivatives SAS Institute, Inc. NESUG '92 Proceedings 220 Host Systems and Environments 1* NAME: DBF.SAS */ end; /* AurHORSHrP: ARCIPSG */ /* FUNCTION: This program reads */ put dbyear= dbmon= dbday= numrecs=headlen= 1* dBase III files containing any */ reclen=; 1* nwnber of records. it is a */ /* replacement for PROC DBF when the */ 1* 1* nwnber of records is greater than 32,767 */ calculate nwnber of dbf fields - they will become SAS /* ASSUMPTIONS: The user must enter a fully */ variables /* qualified filename and the file must exist and be */ */ /* a valid dBase file */ numflds=(headlen-34)/32; /* INPUTS: dBase III or dBase III Plus files *1 putnumtlds=; /* OUTPUTS: A SAS data step program and a SAS */ /* data set *1 pos=33; /* pointer variable to read field descriptors *1 /* REFERENCE: Michael C. Hanis */ /* /* the user supplies this infonnation *1 Nowthatweknowsomethingabout thedBase file, write %let fbame="; a data step program to read it properly %let dsname='''; */ filename dbfile &fname; filename pinc 'pinc.sas'; /* the file to be created by this tilepinc; /*filereffornew datastep program */ data step */ /* read and ignore the header */ options source2; /* show %INCLUDED code */ if headlen Ie 200 then do; /* if we can get the entire header into one SAS variable */ 1* Get information about the me we want to read ,.
Recommended publications
  • Xbase++ Language Concepts for Newbies Geek Gatherings Roger Donnay
    Xbase++ Language Concepts for Newbies Geek Gatherings Roger Donnay Introduction Xbase++ has extended the capabilities of the language beyond what is available in FoxPro and Clipper. For FoxPro developers and Clipper developers who are new to Xbase++, there are new variable types and language concepts that can enhance the programmer's ability to create more powerful and more supportable applications. The flexibility of the Xbase++ language is what makes it possible to create libraries of functions that can be used dynamically across multiple applications. The preprocessor, code blocks, ragged arrays and objects combine to give the programmer the ability to create their own language of commands and functions and all the advantages of a 4th generation language. This session will also show how these language concepts can be employed to create 3rd party add-on products to Xbase++ that will integrate seamlessly into Xbase++ applications. The Xbase++ language in incredibly robust and it could take years to understand most of its capabilities, however when migrating Clipper and FoxPro applications, it is not necessary to know all of this. I have aided many Clipper and FoxPro developers with the migration process over the years and I have found that only a basic introduction to the following concepts are necessary to get off to a great start: * The Xbase++ Project. Creation of EXEs and DLLs. * The compiler, linker and project builder . * Console mode for quick migration of Clipper and Fox 2.6 apps. * INIT and EXIT procedures, DBESYS, APPSYS and MAIN. * The DBE (Database engine) * LOCALS, STATICS, PRIVATE and PUBLIC variables. * STATIC functions.
    [Show full text]
  • Dbase Plus 1 Table Designer Behavior
    User’s Guide VERSION 7.5 release 2.61 for Windows® 98, 2000, NT ME and XP dataBased Intelligence, Inc. Vestal, NY http://www.dbase.com news://news.dbase.com dataBased Intelligence, Inc. or Borland International may have patents and/or pending patent applications covering subject matter in this document. The furnishing of this document does not give you any license to these patents. COPYRIGHT © 2006 dataBased Intelligence, Inc. All rights reserved. All dBASE product names are trademarks or registered trademarks of dataBased Intelligence, Inc. All Borland product names are trademarks or registered trademarks of Borland International, Inc. Other brand and product names are trademarks or registered trademarks of their respective holders. Printed in the U.S.A. Contents Chapter 1 Source Editor behavior . .10 Introduction to dBASE Plus 1 Table Designer behavior . .11 Optimized ReportViewer . .11 Welcome to dBASE Plus !. 1 Overview of dBASE Plus version 2.5. .11 What is dBASE Plus? . 1 Mouse events . .11 dBASE Newsgroups . 2 Grid Class . .11 The dBASE Plus Knowledgebase: . 2 Project Explorer . .11 Changes from earlier versions . 2 TreeView. .12 Visual dBase 5.x through Visual dBase 7.0 . 2 Array Class . .12 Report objects and the integrated Report designer . 3 Report . .12 Project Explorer . 3 Inspector . .12 Data objects. 3 _app Object . .12 Visual designers . 3 _app.frameWin . .12 ActiveX integration. 4 Procedure files . .12 The Inspector . 4 Report Designer . .12 Full-featured Source editor . 4 Error Handling. .12 SQL designer . 4 CHOOSEPRINTER( ) and choosePrinter( ) . .13 BDE Administrator and database support . 4 Overview of dBASE Plus version 2.6 . .13 DBF7 file format features .
    [Show full text]
  • Quick Recovery for Dbase
    QUICK RECOVERY FOR DBASE QUICK RECOVERY FOR DBASE Operation steps Who Suffers most Features 100% data recovery is possible if Recovery Modes Frequently asked Questions © Unistal Systems Pvt. Ltd., New Delhi Quick Recovery for Dbase Quick Recovery for Dbase recovers corrupted Dbase (Database) files which get corrupted due to unexpected software crash, unexpected system shutdown, virus attacks or error reading media where documents are stored. It is a professional file repair tool to repair corrupt FoxPro databases, dBase database file. During repairing process a complete scan of the damaged database is performed to locate and extract the recoverable information from the database. After complete scanning, the database contents which are recoverable are shown in the preview window. You can then easily save the recovered results as a working dbf database file. Its unique Guided File Excavation Technology (GFETch) helps in locating files and folders lost behind overwritten partitions too. FEATURES Quick and Automated Analysis with Simple & Well guided steps to recover & repair DBF files Recovers deleted DBF files from crashed & formatted HDD Repairs Corrupt DBF table Repair .DBF files with memo or binary data fields stored in DBT files. Support for batch repairing of DBF files All recovery cases possible that have been experienced by Unistal have been incorporated All recovery cases possible that have been experienced by Unistal have been incorporated Unique Guided File Excavation Technology (GFETch) used 100% data recovery and repair is possible if; Files are accidentally deleted. Header or footer is corrupted File summary, user or track information is corrupted internal links are Intact © Unistal Systems Pvt.
    [Show full text]
  • Compatible with the World
    EN DE FR NL IT PsiWin 2 Supported Applications Windows compatibility? No need to worry. PsiWin 2 ensures that your Series 5 handheld computer integrates seamlessly with leading Windows programs. See the chart below, for details. compatible with the world Synchronizes with Psion Series 5 Agenda, and Data (for contacts) Office 97 Word 97 (8.0) SmartSuite Organizer 97 WordPerfect WordPerfect 8.0 Excel 97 (8.0) 97 Suite 8 Quattro Pro 8.0 Outlook 97 Office 95 / Word 95 (7.0) SmartSuite Organizer 2.1 Office WordPerfect 7.0 Pro Excel 95 (7.0) 96 / Professional 7 Quattro Pro 7.0 Schedule+ 7/7a NotesSuite / WordPerfect (.WB3) Access 95 (Pro 96 Suite 7 version) Office 4.2 / Word 6.0 SmartSuite Organizer 2.1 Office for WordPerfect 7.0 4.3 (Pro) Excel 5.0 4.0 Windows NT Quattro Pro 7.0 FoxPro 2.6 (Pro Server 4.0 (.WB3) version) Office 3.0 Word 2.0 SmartSuite Ami Pro 3.0 WordPerfect WordPerfect 6.1 Excel 4.0 3.0 / 3.1 Organizer 2.1 Suite / Office Quattro Pro 6.0 (3.1 version) Professional / (.WB2) Windows 3.1x Client Software Other Works 3.0 (word Other 1-2-3 WK1 Other WordPerfect 5.1 Applications processor) Applications 1-2-3 WK3 Applications WordPerfect 5.2 Works 4.0 (word 1-2-3 WK4 WordPerfect processor) 6.0a FoxPro 2.0, 2.5, 2.6 Quattro Pro 5.0 (.WB1) Text Rich Text Format(RTF) Database Borland Int. dBASE III, IV, 5.0 Text for Windows Comma Separated Values MS Text for MS DOS DOS Pictures Series 5 Sketch to/from Windows Sound Series 5 Record (uncompressed) BMP to/from Windows WAV Synchronizes with Psion Series 5 Agenda, and Data (for contacts) Two way exchange Word If you have Lotus SmartSuite 97 you can open and save previous Sheet versions of SmartSuite applications' files, which are Psion compatible.
    [Show full text]
  • R&R Report Writer Version 9.0, Xbase & SQL Editions New Release
    R&R Report Writer Version 9.0, xBase & SQL Editions New Release Enhancements and New Capabilities Liveware Publishing is pleased to announce an exciting set of enhancements to R&R Report Writer!! This is the first MAJOR update to R&R in almost five years, but Liveware has made up for lost time with substantial improvements for every R&R user. Developers building reports for their applications, end-users creating their own ad-hoc and production reports, and even casual R&R runtime users will all find something in this release to streamline their reporting activities. For those who have purchased and implemented every update, and particularly Liveware’s Version 8.1 release licensees, you will be rewarded for your loyalty with a reduced upgrade price and a wide range of capabilities that will make R&R even more indispensable. For others who waited, this is the upgrade to buy since it contains so many unique and compelling ideas about reporting -- and ones you can use right away!! Version 9.0 includes 5 new “modules” -- what we consider significant extensions of R&R capabilities -- and many convenience and usability improvements to open reporting to database users at all levels. The 5 new modules are (with page number in parenthesis): Email Report Bursting & Distribution (2) Report Librariantm (4) ParameteRRtm Field Prompting (9) FlexLinktm Indexing-on-the-fly (11) Rapid Runnertm Runtime Control (16) Among the other improvements, the most significant are: Pervasive Band Color-coding (18) Page X of Y Functions (20) Redesigned Table Join Dialog (21) Print Preview Band Identification (23) Drill-down in Result Set Browser (24) Visual dBase 7 Support (25) This document will summarize each of these modules and improvements and describe how they expand R&R’s capabilities to an ever-wider range of reporting needs.
    [Show full text]
  • Automating the Archives: a Case Study
    364 American Archivist / Vol. 57 / Spring 1994 Downloaded from http://meridian.allenpress.com/american-archivist/article-pdf/57/2/364/2748641/aarc_57_2_9p4t712558174274.pdf by guest on 25 September 2021 Automating the Archives: A Case Study CAROLE PRIETTO Abstract: The establishment of an archival automation program requires that the archivist address issues of both a technical and a managerial nature. These issues include needs assessment, selection of hardware and software to meet identified needs, redesigning ar- chival tasks in light of the system selected, and ongoing maintenance of the system se- lected. The present article discusses the issues Washington University Archives staff members faced in developing an automation program and the solutions they adopted. It concludes with a brief discussion of possible future directions for the automation program. About the author: Carole Prietto holds a B.A. in history from the University of California at Santa Barbara and an M.A. in history from UCLA. From 1986 to 1989 she was the assistant in the UCLA University Archives; since 1990, she has been university archivist at Washington University, St. Louis. Automating the Archives: A Case Study 365 MUCH DISCUSSION IN THE LITERATURE Washington University Archives. This pro- about archival automation concerns imple- cess consisted of a number of steps over a mentation of the USMARC AMC format three-year period: evaluating the existing and development of national descriptive hardware and software, selecting a new da- 1 4 standards. This discussion is both useful tabase management package, installing Downloaded from http://meridian.allenpress.com/american-archivist/article-pdf/57/2/364/2748641/aarc_57_2_9p4t712558174274.pdf by guest on 25 September 2021 and necessary, but it examines only one and setting up the new software and train- side of the automation issues archivists ing staff in its use, adding OCLC and NO- face.
    [Show full text]
  • Unit 6: Computer Software
    Computer Software Unit 6: Computer Software Introduction Collectively computer programs are known as computer software. This unit consisting of four lessons presents different aspects of computer software. Lesson 1 introduces software and its classification, system software which assists the users to develop programs for solving user problems is presented in Lesson 2. Many programs for widely used applications are available commercially. These programs are popularly known as application packages or package programs or simply packages. Advantages of package programs and brief outline of popular packages for word-processing, spreadsheet analysis, database management systems, desktop publication and graphic and applications are discussed in Lesson 3. Tasks for developing computer programs and brief introduction to some common programming languages are presented in Lesson 4. Lesson 1: Introduction and Classification 1.1 Learning Objectives On completion of this lesson you will be able to • understand the concept of software • distinguish between system software and application software • know components of system software and types of application software. 1.2 Software Software of a computer system is intangible rather than physical. It is the term used for any type of program. Software consists of statements, which instruct a computer to perform the required task. Without software a computer is simply a mass of electronic components. For a computer to input, store, make decisions, arithmetically manipulate and Software consists of output data in the correct sequence it must have access to appropriate statements, which instruct programs. Thus, the software includes all the activities associated with a computer to perform the required task. the successful development and operation of the computing system other than the hardware pieces.
    [Show full text]
  • “Not Only Microsoft: the Maturing of the Personal Computer Software
    Martin Campbell-Kelly Not Only Microsoft: The Maturing of the Personal Computer Software Industry, 1982-1995 In the thirteen years following the introduction of IBM's first personal computer in 1982, Microsoft rose from being a small concern to become the colossus of the PC software industry. However, Microsoft was not the only software company to profit from the PC-software boom: firms like AutoDesk, Lotus Development, WordPerfect Corp., Ashton-Tate, Novell, Borland, Adobe Systems, Aldus, Symantec, and the Santa Cruz Operation all had their time in the sun. Whereas some of these firms lost their markets to Microsoft or stumbled through strategic errors, others remained hugely successful, and their relative obscurity is largely due to the contemporary obsession with Microsoft and its billionaire founder. he early history of the personal computer is well known. It has fea- Ttured in the press, in numerous popular histories of computing, and in television programs such as Robert X. Cringley's "Triumph of the Nerds."1 Within the business history community, the story is known at a deeper level, partly through the inevitable osmosis that ac- companies the daily use of a personal computer, but also through arti- cles such as Richard Langlois's study of the microcomputer industry, MARTIN CAMPBELL-KELLY is a reader in computer science at the University of War- wick, England. My work on the history of the software industry has been supported by the Economic and Social Research Council (award number R000237065). I would like to thank my research as- sociates at Warwick University, Dr. Mary G. Croarken and Dr.
    [Show full text]
  • Visual DBU O Softseek On/Off O Rushmore Filter Technic On/Off O Smartfilter On/Off Administration of O Incremental Search On/Off
    Settings: o display of deleted records on/off o display of century on/off Visual DBU o softseek on/off o Rushmore filter technic on/off o Smartfilter on/off Administration of o incremental search on/off. If a keystroke is done during displaying a data browse, a search ensues Data Tables with the entered key o quickedit on/off, a keystroke opens at once the edit mode of cell o directedit on/off, if the edit of a cell is finished the cursor jumps to the next cell and continues the edit Visual DBU is a tool for administration of data process tables / databases. It was developed with o cell preview on/off, if the cell contents does not fit Xbase++ of Alaska Software Inc. and the libraries into the cell's width, it will displayed as tooltip XClass++ and AdsClass++ . o global setting for font and color o default database driver and file extension Range of functions: Administration: available in German and English language o setting user grants opening by drag&drop possible o registration of additional DLLs with user specific maintenance of table structure and indexes enhancements (Xbase++ DLL) supports OEM (DOS) and ANSI (Windows) character Visual DBU can be used in two different ways: set MDI Splitter constructions of relations setting of filter and scopes Sum() and Count() evaluations incremental search and locate SQL query dialog data-import and –export cross over different table formats with filter and field assignment individual design of data columns save and restore of views with filter, indexes, relations repository for free tables, ADS, ODBC and PostgreSQL user administration with grants Supported data formats and databases: Desktop mode o Dbase DBF / NTX with DBT o Dbase DBF / CDX with FPT o FoxPro DBF up from vVer.
    [Show full text]
  • Clipper Programming Language
    Clipper Programming Language From Wikipedia, the free encyclopedia.(*) Clipper (or CA-Clipper) is a compiler 16 bits of language xBase environment for DOS . It was created in 1984 with the purpose of being a compiler for Ashton-Tate dBase , a database manager very popular in his time. This is a derivation of the Clipper Summer and after being acquired by Computer Associates reached version 5.3b implemented by a graphical interface compatible with the MS-Windows 3.11, and for a subset of supported languages C and assembly , which made possible a prototype of Object Orientation . When Computer Associates stopped support this language, it was intended for application development platforms for MS-DOS and offered libraries for network support. Why make use of a standard language originally developed by Ashton Tate and operating systems from existing CP/M , has a very different syntax of the languages most current. In his day, was considered an elegant and intuitive language, using small verbs and abbreviations, symbols and structuring. Their compilers generate executable which in 2008 would be considered tiny, extremely fast and, for most users, with a little friendly interface. Again, in his time, was one of the most versatile and enabled the creation of fully integrated systems with images, sounds and video, and has already used the concepts of hyperlink (via standard RTF ), context help and instantiating objects (although primitives, via Code Blocks), which, except for the C language, has only been achieved years later by the competition. Another important feature was the inclusion of Rushmore, now owned by Microsoft , indexing tables for your data, making it one of the languages better performances in this area.
    [Show full text]
  • Dbase Plus 1 Table Designer Behavior
    User’s Guide VERSION 7.5 release 2.5 for Windows® 95, 98, 2000 NT, ME and XP dataBased Intelligence, Inc. Vestal, NY http://www.dbase.com news://news.dbase.com dataBased Intelligence, Inc. or Borland International may have patents and/or pending patent applications covering subject matter in this document. The furnishing of this document does not give you any license to these patents. COPYRIGHT © 2002 dataBased Intelligence, Inc. All rights reserved. All dBASE product names are trademarks or registered trademarks of dataBased Intelligence, Inc. All Borland product names are trademarks or registered trademarks of Borland International, Inc. Other brand and product names are trademarks or registered trademarks of their respective holders. Printed in the U.S.A. Contents Chapter 1 Source Editor behavior . .11 Introduction to dBASE Plus 1 Table Designer behavior . .11 Optimized ReportViewer . .11 Welcome to dBASE Plus !. 1 Overview of dBASE Plus version 2.50 . .11 What is dBASE Plus? . 1 Mouse events . .11 dBASE Newsgroups . 2 Grid Class . .11 The dBASE Plus Knowledgebase: . 2 Project Explorer . .12 Changes from earlier versions . 2 TreeView. .12 Visual dBase 5.x through Visual dBase 7.0 . 2 Array Class . .12 Report objects and the integrated Report designer . 3 Report . .12 Project Explorer . 3 Inspector . .12 Data objects. 3 _app Object . .12 Visual designers . 3 _app.frameWin . .12 ActiveX integration. 4 Procedure files . .13 The Inspector . 4 Report Designer . .13 Full-featured Source editor . 4 Error Handling. .13 SQL designer . 4 CHOOSEPRINTER( ) and choosePrinter( ) . .13 BDE Administrator and database support . 4 dBASE Plus documentation . .13 DBF7 file format features .
    [Show full text]
  • Don Maslin CP/M Collection
    http://oac.cdlib.org/findaid/ark:/13030/c8ws90bd No online items Guide to the Don Maslin CP/M collection Finding aid prepared by Rita Wang and Sydney Gulbronson Olson, 2017. Elena Colón-Marrero, and Pennington Ahlstrand, 2020. Processing of this collection was made possible through generous funding from the National Archives' National Historical Publications & Records Commission: Access to Historical Records grant. Computer History Museum 1401 N. Shoreline Blvd. Mountain View, CA, 94043 (650) 810-1010 [email protected] August 2020 Guide to the Don Maslin CP/M X6817.2013 1 collection Title: Don Maslin CP/M collection Identifier/Call Number: X6817.2013 Contributing Institution: Computer History Museum Language of Material: English Physical Description: 29.5 Linear feet,19 record carts, 6 software boxes, and 1 periodical box Date (bulk): Bulk, 1977-1984 Date (inclusive): 1973-1996 Abstract: The Don Maslin CP/M collection consists of software and published documentation ranging from 1973 to 1996, with the bulk being from 1977 to 1984. About half of the collection consists of software in floppy disk and cassette formats. Most of this portion of the collection pertains to CP/M and applications that were written for the CP/M operating system. The other half of the collection contains text documentation such as reference manuals and user guides for a variety of software and hardware. A significant portion of the text is related to hardware, some of which was donated with this collection and is cataloged separately. Notable companies in this collection include Advanced Computer Design, Advanced Digital Corporation, Epson, Hewlett-Packard, IBM, MicroPro, and Tektronix.
    [Show full text]