WINCMD: a Windows Command Language

Total Page:16

File Type:pdf, Size:1020Kb

WINCMD: a Windows Command Language UTILITIES WINCMD: A Windows Command Language BY DOUGLAS BOLING emember the DOS batch USING WINCMD Before discussing how WCM, the WINCMD default exten i files with which you once to us_e WINCMD, I must start with some in the edit box. In the Combo Box t proudly automated all your terminology. WI CMD.EXE is the Win­ lists the programs, enter the path to - routine tasks? If you've dows program I've written. It interprets filename of WINCMD.EXE. Click joined the mad rush to Win­ programs-which are ASCII files-that the OK button and you're set! dows, you've simply had to are written in the WINCMD language. From now on, any time you click learn to do without this use­ To keep the two kinds of programs sepa­ a WINCMD file in the File Manager ful and convenient facility. rate, I'll use the full name and extension, Program Manager, Windows will am The DOS batch file lan­ WINCMD.EXE, when referring to the matically start WINCMD.EXE and p guage may have been limited, but Win­ utility itself. I'll refer to the ASCII files it the name of your WINCMD progra dows supported nothing at all in its that WINCMD.EXE interprets as When WINCMD.EXE is started with ~ place- until now. WINCMD programs. filename on the command line, it will im WINCMD.EXE, this issue's free util­ To install WINCMD.EXE, just copy mediately start executing that file. Whe­ ity, is a Windows-based command file in­ it, along with WINCMD.ICO (its icon WINCMD.EXE has finished executin" terpreter that lets you create simple Win­ file) and any .WCM files you have (two the WINCMD program, it will gracefull_ dows programs that perform the terminate. repetitive functions that were once the WNDCMD.EXE, a Since debugging is important even f domain of DOS batch files. WINCMD WINCMD programs, WINCMD.E goes far beyond the simple DOS batch Windows counterpart to provides help m this area. L file language, however. Its language in­ WI CMD.EXE is started with an l cludes looping and branching statements DOS's hatch language, lets command switch before the WINC along with user-defined subroutines and program name, WINCMD.EXE will di functions. Both numeric and string vari­ you automate tasks in the play a window with your WINCMD pro­ ables are supported, as is a full suite of gram loaded into memory, ready to ex - arithmetic and logical operators. environment and even goes cute. Be sure not to place the /L after th You can use any ASCII editor, such WI CMD program name, or it will as Notepad, to create WINCMD pro­ beyond its ancestor's considered an argument to the comman grams. Typically, these programs will file. When WINCMD.EXE starts, it per­ carry a .WCM extension, though this is capabilities. forms some preprocessing on your not required unless you want the pro­ WINCMD program. If it finds any line gram to be callable from another it does not understand, you'll get appro­ WINCMD program. A single .WCM file are supplied with the program), into a di­ priate print error messages with Jin can be up to 64K in size, though its exe­ rectory on your path. Select the File I numbers to help you find the problem. cutable parts (those not made up of com­ New menu item in the Program Manager Error messages are displayed for such ment lines) are limited to about 45K. and choose Program Item. Enter the faults as lines being too long or numbers Both the WINCMD program and its short title you want to appear under the too big. When an error message i5 C source files can be downloaded from icon as the Description, and enter the printed, WINCMD.EXE changes to di_­ PC MagNet as WINCMD.ZIP. See the complete path and WINCMD.EXE on play two windows. The listing windo " Utilities by Modem" sidebar for instruc­ the command line. displays the WINCMD program with th tions. You can also get the files by send­ To make it easy to run WINCMD pro­ line highlighted that is to be execut ing a postcard with your name, address, grams, you should then also use the File next. The output window displays the las and disk size preference (360K, 720K, Manager to associate the .WCM file ex­ 100 lines printed by the WINCMD pr 1.2MB, or 1.44M) to the attention of tension with WI CMD.EXE. To do this, gram as well as the error messages. Katherine West, PC Magazine, One Park start the Windows File Manager and se­ WINCMD.EXE allows you to run Ave., ew York, NY 10016-5802. No lect the File I Associate menu item. WINCMD program from the window · phone calls, please! When the dialog box appears enter two different ways. The program can • 302 PC MAGAZINE APRIL 27, 1993 U'!'ILITIES button will cause WINCMD.EXE to exe­ WI NCM D Statements and Functions cute one line of the WINCMD program. Statement Description The listing window will highlight the next IF{expression} Branching statement line to be executed. [THEN] WINCMD VARIABLES AND ARITHMETIC {statement} The WINCMD syntax combines the [ELSE] power of a high-level language with the {statement}] simple command line operation of a DO Block statement batch language. Before discussing the dif­ {statement} ferent WINCMD statements in detail, I {statement} should explain how WINCMD programs use variables. The WINCMD language makes no distinction between string vari­ ables and numeric variables. That is, a {statement}END variable that has been assigned a string WHILE {condition} Loop statement value can later be assigned a number and {statement} vice versa. Variables do not have to be EXIT [return code] Terminates a WINCMD program declared before they are used. As you RETURN [return code] Terminates a subroutine would expect, variables are assigned LEAVE Exits from a loop using the equal sign. PRINT {expression} Displays a line of text to the user The following three statements are ex­ SAY {expression} Displays a line of text to the user amples of valid WINCMD assignments. REM {text} Comment, remainder of text on the line ignored // {text} Comment, remainder of text on the line ignored var= 1 • {text} Comment, remainder of text on the line ignored var= magazine var= "I like PC Magazine" Function Description LENGTH(string) Returns the length of a string . In the first assignment above, the vari­ UCASE(string) Returns a copy of the string in upper case characters. able VAR is given the value 1. The sec­ SUBSTR(string, start, length) Returns a part of a string. ond assignment has the variable assigned ARG(number) Returns an argument to program or a subroutine. the string " magazine." In the third as­ DELAY(number) Halts program execution for a number of milliseconds. signment, VAR is assigned the string " I APPACTIVATE(win title text) Activates the window with the matching title text. like PC Magazine." The quotes allow GETAPPACTIVE (no parameters) Returns the title text of the currently active window. spaces to be included in the string as­ GETAPPEXE(win title text) Returns the EXE file name for a window. signed to VAR. If the quotes were not SENDKEYS(send key string) Sends a series of keys to the active application. used, WINCMD would attempt to assign MSGBOX(message, title, flags) Displays a message box. the variable VAR with the string " I" , but ASKBOX(text, default answer) Displays a dialog box so that the user can enter a value . would then find the additional characters TICKS(no parameters) Returns the number of milliseconds since Windows was on the line. WINCMD would then stop started. execution and print the error message Figure 1: These statements and functions are supported in the WINCMD language. "Extra characters on line. " Variable names may contain numbers, run normally either by pressi ng the Run ton. If you want to start the program from letters. or the characters _, $, % , and #, button or by selecting the Run I Run Pro­ the beginning. first click on the Reset but­ but the first character in a variable must gram menu selection. The WIN­ ton to reset the program and then hit the always be either a letter or underscore CMD.EXE window will then change to Run button to start the program on its (_). Variable names are not case-sensi­ display only the output window and run way. Note that when WINCMD resets a tive; the names BOB, Bob, and bob all the WINCMD program. The Run button program, it rereads the program from the refer to the same variable. Variable text will change to Stop. disk. This means that you can make names can be up to 253 characters long. Pressing the Stop button will cause changes to the program and then you can Variables can be used anywhere strings WINCMD.EXE to stop executing the have WINCMD load those changes by or numbers can be used in the program. INCMD program and to display both pressing the Reset button. The numbers you use may range from .he output and listing, windows. Again, The other way to run a WINCMD pro­ -2,147,483,648 to 2,147,483,647, and can the line in the program that wou\d have gram is 'oy stepping, through i.t one \i.ne be expressed in binary, octal, decimal, or been executed next is highlighted. The at a time. Single stepping is very handy hexadecimal format. (ln entering num­ program can then be restarted from this to see exactly how a WINCMD program bers, do not type in the commas shown point simply by clicking on the Run but- is being executed.
Recommended publications
  • Portable Paper
    Volume 2, Number 2 The HP Portable/Portable Plus Users Newsletter March / April, 1987 PortableTHE Paper Special Feature: Database Software Management Publisher's Message ...................... I Special Feature: Database Management Letters Software Charge Portable Off Car Lighter .............. 2 Introduction ............................ 16 Portable To Macintosh ..................... 4 Database Management Product Summary ...... 16 110% Lotus As A Database Manager . 18 New HP Portable? ......................... '; Executive Card Manager ................... 18 Updates on Personalized Software Products ..... 5 dBASE II ............................... 22 Buying Disks ............................ 6 Turbo Pascal Toolbox ..................... 2-} X-rays And The Portable .................... 6 PC File III .............................. 24 More Info On Backlighting ................. 33 T/Master ............................... 25 HP-IL Link Program ........ .............. 33 Condor Junior .......................... 25 Foundations Conclusion ............................. 25 Built-in Self-Test .......................... 8 PLUS Notes Six Ways To Restart Your Portable ............. 8 Lotus 2.01 and HAL ...................... 25 Getting Program To Run . ..... 8 B Drive RAM Cards With Greater Capacity ........... 26 EPROM Update .......................... 26 DOS AID Software Drawer & SPC ................ 27 Bypassing PAM ............................ 11 1erminal Through The Looking Glass ............ 27 CompuServe Autologon, Uploading Revisited ....
    [Show full text]
  • DI PROTECT™ Release Notes 16 December 2019
    Release Notes Version 3.0 DI PROTECT™ Release Notes 16 December 2019 © 2019 COPYRIGHT DIGITAL IMMUNITY www.digitalimmunity.com COPYRIGHTS & TRADEMARKS The contents of this document are the ProPerty of Digital Immunity, Inc and are confidential and coPyrighted. Use of the Digital Immunity materials is governed by the license agreement accomPanying the DI Software. Your right to coPy the Digital Immunity Materials and related documentation is limited by coPyright law. Making coPies, adaptations, or comPilation works (excePt coPies for archival PurPoses or as an essential steP in the utilization of the Program in conjunction with the equiPment) without Prior written authorization from Digital Immunity, Inc is Prohibited by law. No distribution of these materials is allowed unless with the exPlicit written consent of Digital Immunity. U.S. Government Restricted Rights (Applicable to U.S. Users Only) Digital Immunity software and documentation is Provided with RESTRICTED RIGHTS. The use, duPlication, or disclosure by the government is subject to restrictions as set forth in Paragraph (c)(l)(ii) of the Rights in Technical Data ComPuter Software clause at DFARS 252.227-7013. The manufacturer of this Software is Digital Immunity, Inc, 60 Mall Road, Suite 309, Burlington, MA 01803. Protected by multiPle Patents. Other Patents Pending. DIGITAL IMMUNITY™ is a registered trademark Protected by trademark laws under U.S. and international law. All other Intellectual brand and Product names are trademarks or registered trademarks of their resPective owners. Product Release: 3.0 Last UPdated: 16 December 2019 © Copyright 2019 by Digital Immunity, Inc. All Rights Reserved DI PROTECT™ Release Notes v3.0 | © 2019 Digital Immunity 1 TABLE OF CONTENTS 1 Introduction ......................................................................................................................
    [Show full text]
  • Windows NT® 4 for Dummies® File:///P|/VSCAN/TOSCAN/MT/NT4DUM/NT4.HTM
    Table of contents Windows NT® 4 For Dummies® file:///P|/VSCAN/TOSCAN/MT/NT4DUM/NT4.HTM Table of Contents Windows NT® 4 For Dummies® Introduction About This Book How to Use This Book And What about You? How This Book Is Organized Part I: Introducing Windows NT (Bare-Bones Stuff) Part II: Making Windows NT Do Something Part III: Using Windows NT Applications Part IV: Been There, Done That: Quick References for Moving to Windows NT Part V: Getting Help Part VI: The Part of Tens Icons Used in This Book Where to Go from Here Part I: Intro to Windows NT (Bare Bones Stuff) Chapter 1: What Is Windows NT? What Is This "Windows" Stuff, Anyway? What Does Windows NT 4 Do? Why Should I Bother Using Windows NT? Will I Like Windows NT 4 Better than Windows NT 3.51? What's the Difference between Windows NT Workstation and Windows NT Server? Bracing Yourself for Windows NT 4 Chapter 2: Boring Information, Bothersome Computer Parts The Computer Microprocessor Floppy Disks, Compact Discs (CDs), and Disk Drives Floppy disk flipping What disk drives does Windows NT like? What does "write-protected" mean? Driving with compact discs The Mouse and That Double-Click Stuff Cards and Monitors Keyboards Groups of keys More key principles Print Screen: the one fun, weird code key Modems Printers Networks Sound Cards (Disgusting Bioactive Noises) Parts Required by Windows NT Chapter 3: Windows NT Stuff Everybody Thinks You Already Know Backing Up Your Work Clicking 1 of 9 07/14/99 08:29:14 Table of contents Windows NT® 4 For Dummies® file:///P|/VSCAN/TOSCAN/MT/NT4DUM/NT4.HTM
    [Show full text]
  • OS 386 Multiuser/Multitasking Operating System
    OS 386 Multiuser/Multitasking Operating System REFERENCE GUIDE [Q] DIGITAL RESEARCH@ os REFERENCE GUIDE [jill DIGITAL RESEARCH~ COPYRIGHT Copyright © 1987 Digital Research Inc. All rights reserved. No part of this publication may be reproduced, transcribed, stored in a retrieval system, or translated into any language or computer language, in any form or by any means, electronic, mechanical, magnetic, optical, chemical, manual or otherwise without the prior written permission of Digital Research Inc, 60 Garden Court, Box DRI, Monterey, California 93942 DISCLAIMER DIGITAL RESEARCH MAKES NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE CONTENTS HEREOF AND SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE. Further Digital Research Inc. reserves the right to revise this publication and to make changes from time to time in the content hereof without obligation of Digital Research Inc to notify any person of such revision or changes. NOTICE TO USER This manual should not be construed as any representation or warranty with respect to the software named herein. Occasionally changes or variations exist in the software that are not reflected in the manual. Generally, if such changes or variations are known to exist and to affect the product significantly, a release note or READ.ME file accompanies the manual and the distribution disks. In that event, be sure to read the release note or READ.ME file before using the product. ii TRADEMARKS Digital Research and its logo, CP/M, and CP/M-86 are registered trademarks of Digital Research Inc. Cardfile, Concurrent, Concurrent DOS 386, Concurrent DOS XM, DR EDIX, DOS Plus and MP/M-86 are trademarks of Digital Research Inc.
    [Show full text]
  • Program Details
    Home Program Hotel Be an Exhibitor Be a Sponsor Review Committee Press Room Past Events Contact Us Program Details Monday, November 3, 2014 08:30-10:00 MORNING TUTORIALS Track 1: An Introduction to Writing Systems & Unicode Presenter: This tutorial will provide you with a good understanding of the many unique characteristics of non-Latin Richard Ishida writing systems, and illustrate the problems involved in implementing such scripts in products. It does not Internationalization provide detailed coding advice, but does provide the essential background information you need to Activity Lead, W3C understand the fundamental issues related to Unicode deployment, across a wide range of scripts. It has proved to be an excellent orientation for newcomers to the conference, providing the background needed to assist understanding of the other talks! The tutorial goes beyond encoding issues to discuss characteristics related to input of ideographs, combining characters, context-dependent shape variation, text direction, vowel signs, ligatures, punctuation, wrapping and editing, font issues, sorting and indexing, keyboards, and more. The concepts are introduced through the use of examples from Chinese, Japanese, Korean, Arabic, Hebrew, Thai, Hindi/Tamil, Russian and Greek. While the tutorial is perfectly accessible to beginners, it has also attracted very good reviews from people at an intermediate and advanced level, due to the breadth of scripts discussed. No prior knowledge is needed. Presenters: Track 2: Localization Workshop Daniel Goldschmidt Two highly experienced industry experts will illuminate the basics of localization for session participants Sr. International over the course of three one-hour blocks. This instruction is particularly oriented to participants who are Program Manager, new to localization.
    [Show full text]
  • Jim2 Version 4.3 Release Notes
    Happen Business Pty Limited 29 - 33 Pitt Street PO Box 126, Mortdale NSW 2223 Australia p. +61 2 9570 4696 f. +61 2 8569 1858 w. www.happen.biz Jim2® Business Engine Version 4.3 (all editions) Release Notes Jim2® Business Engine v4.3 Release Notes – 05/02/19 Welcome to Jim2 Version 4.3 Promotional Pricing, Stock Flow, Commissions, UI Updates Jim2 v4.3 introduces numerous new features and enhancements throughout most areas of Jim2. The big new features are Promotional Pricing, Commission Sessions and Stock Flow. Promotional Pricing is a powerful new feature that allows special promotional, bid or contract pricing, based on CardFiles, CardFile Groups, Price Levels and Projects. Commission Sessions allow for tracking, processing and reconciling of sales commissions, based on a number of calculation methods. Stock Flow provides ETA management at an integrated stock line level view on purchase orders and linked jobs, and displays a single view of the expected delivery date from a vendor and the job due date advised to your customers. Additional UI updates, regional and tax support for Canada, and much more, makes Jim2 v4.3 one of the most exciting updates to date. Promotional Pricing – Page 4 • New promotional and bid pricing functionality Commission Sessions – Page 19 • New Commission Sessions functionality Purchase Orders – Page 25 • Line level due date Stock Flow – Page 26 • Expected delivery date from vendor and job due date advised to customers Copy/Move/Merge – Page 27 • Copy/move/merge within jobs, quotes and project templates Jobs and Quotes – Page 30 • Job Line level PO due date • Sell details – updated • Purchase details • Commission details • Promotional Pricing tab User Interface – Page 32 • Search Ribbon – new search ribbon feature (Ctrl+L) • Scheduler – updated ‘clean’ UI • Scroll bars – autohide • Quick Access Toolbar – copy document from clipboard Email – Page 34 • New pop-up window on Assign CardFile for Email Regional Settings Canada – Page 35 • Canada is now fully supported, along with new regional and tax settings.
    [Show full text]
  • Release Notes
    Happen Business Pty Limited 29 - 33 Pitt Street PO Box 126, Mortdale NSW 2223 Australia p. +61 2 9570 4696 f. +61 2 8569 1858 w. www.happen.biz Jim2® Business Engine Version 4.2 (all editions) Release Notes Jim2® Business Engine v4.2 Release Notes – 06/06/18 Welcome to Jim2 Version 4.2 – ‘Security and Multilevel Manufacturing’ Jim2 v4.2 introduces numerous new features and enhancements throughout most areas of Jim2. With a focus on matching user security to the multi–faceted roles of staff (especially in larger companies), Jim2 v4.2 includes major updates to security, including new effective security roles, enhanced overall visibility of user security and roles, new user groups functionality, trackable reports, and greatly enhanced history and logging. Another major feature is the introduction of multilevel manufacturing capability, allowing the use of manufactured products (sub–assemblies) to be used in other manufacturing processes. Jim2 v4.2 also includes CardFile updates, new regional settings, increased list counts, major performance improvements, and dozens of additional enhancements and fixes. User Groups • New User Groups field, which introduces User Group Category and User Group Tags to sort staff into departments and roles. Organise users, ready to match with new enhancement to Items that enable jobs and quotes to be allocated to a User Group, rather than individual staff. Great for updating Items when a new staff member joins, moves to a new role, or moves on. User Security • New focus on User Security Groups, and now being able to assign a user to multiple security role profiles to suit the many hats they wear within the business.
    [Show full text]
  • To: Anthonys Darrylr Cc: Cameronm Tonyw Subject: Re: OLE Date: Wed Apt 29 16:48:08 PDT 1992
    2. Maples is really interested in having the Mac presented in a positive light at the conference ( as are we all I think). Can we see a copy of the agenda. I don’t think this warrants specific Mac sessions or anything as detailed as that, just some extension of what we discussed today regarding as proposed time frame foF implementation. Maples was interested in distributing 9ome sort of document that would "commit" us to doing this on the Mac. Do either of you have an opinion on that? If we can’t produce something that is solid in this short ti~e frame, I am in favor of not distributing anything. Random info is clearly not what we need floating around at this point. Please advise on this issue. Thanks, Lisa From greqw Fri Nov 30 10:59:44 1990 To: anthonys darrylr Cc: cameronm tonyw Subject: Re: OLE Date: Wed Apt 29 16:48:08 PDT 1992 Date: Fri Nov 30 11:42:20 1990 I will talk with Tony again. The bottomline was that we were not completely convinced that the API changes would he sufficient and would not require changes later after the initial release of the libraries. Therefore, we did not change the existing APIS. If TonyW did not let PhilipL k~1ow when we made the decision to stay with the existing APIs’, then we screwed up. I am willing to jerk the ISVs around if we can convince ourselves that the link management design will be effective. We do not have much time.
    [Show full text]
  • Beginning .NET Game Programming in En
    Beginning .NET Game Programming in en DAVID WELLER, ALEXANDRE SANTOS LOBAo, AND ELLEN HATTON APress Media, LLC Beginning .NET Game Programming in C# Copyright @2004 by David Weller, Alexandre Santos Lobao, and Ellen Hatton Originally published by APress in 2004 All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN 978-1-59059-319-6 ISBN 978-1-4302-0721-4 (eBook) DOI 10.1007/978-1-4302-0721-4 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Technical Reviewers: Andrew Jenks, Kent Sharkey, Tom Miller Editorial Board: Steve Anglin, Dan Appleman, Gary Cornell, James Cox, Tony Davis, John Franklin, Chris Mills, Steve Rycroft, Dominic Shakeshaft, Julian Skinner, Jim Sumser, Karen Watterson, Gavin Wray, John Zukowski Assistant Publisher: Grace Wong Project Manager: Sofia Marchant Copy Editor: Ami Knox Production Manager: Kari Brooks Production Editor: JanetVail Proofreader: Patrick Vincent Compositor: ContentWorks Indexer: Rebecca Plunkett Artist: Kinetic Publishing Services, LLC Cover Designer: Kurt Krames Manufacturing Manager: Tom Debolski The information in this book is distributed on an "as is" basis, without warranty. Although every precaution has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work.
    [Show full text]
  • Ms-Windows Informaton for Pcsa V2.0
    ,.I ~.j ) MS-WINDOWS INFORMATON FOR PCSA V2.0 ) ) ) ******************************************* * * 11 * PCSA V2.0 MS-WINDOWS PROBLEMS * * * ******************************************* ) SPRt Component Abstract ----- ---------------- 01688 Other LA210 Printer Does Not Print Right Margin Of Pixels 01689 MS-Write Selecting DRAFT QUALITY From Print Menu Hangs System Upon Attempting To Print 01735 File/Disk Mgmt. When Connection To Drive E Lost, Must Reboot 01790 Printing "Unable to Print" write with The T~xt-on1y LINE.DRV Printer Driver 01796 printing LN03.DRV. Lists Fonts That The LN03 Can't Produce 01845 Printing LN03Plus Driver Doesn't Support Font Cartridges List 01851 Printing LN03PLUS Can't DrawOn'Bottom Of Page 00765 Display Display Disappears Off Left Of Screen 00858 Printing Printing From A Class A Using GDI ", ) 00977 Calendar CALENDAR Doesn't Handle Lowercase "AM" Or "PM" 00978 Calendar CALENDAR Doesn't Like 24 Hour Time Format Sometimes 01198 Data Exchange Script Dialog / Clipboard Problem 01272 Cardfi1e Text/Picture Alignment Problem 01556 Other NI-KIT TSR PIF Files Make Reference To VAXmate Document 01607 ' Printing Inconsistent Labeling In Control Panel Setup Printer 01674 Control Panel Control Panel Dialog Box Has Non-Standard Tab Key Handling 01842 Initialization The WIN.INI In System Area Not Set Up For OUI 00793 MS-Write MS-Write And Text-only Files ) 01675 Other COpy Does Not Support Use Of When Copying To Logical Device 01768 Initialization Inconsistency In SETUP Menus 01857 printing Recommend More Intelligent· printing From DOS ) Exec 01672 Data Exchange Strange Screen Exchange Error Causes Drive Switch In DOS Exec 01255 Other Under WINDOWS, XCOPY C:\*.BAT A: Does Not Work 01262 File/Disk Mgmt.
    [Show full text]
  • Windows in Concurrent PC
    Using Concurrent PC DOS OTHER BOOKS BY THE AUTHOR Microcomputer Operating Systems (1982) The Byte Guide to CP/M-86 (1984) Using Concurrent PC DOS Mark Dahmke McGraw-Hili Book Company New York St. Louis San Francisco Auckland Bogota Hamburg Johannesburg London Madrid Mexico Montreal New Delhi Panama Paris Sao Paulo Singapore Sydney Tokyo Toronto Library of Congress Cataloging-in-Publication Data Dahmke, Mark. U sing Concurrent PC DOS. Bibliography: p. Includes index. 1. Concurrent PC DOS (Computer operation system) 1. Title. QA76.76.063D34 1986 005.4' 469 85-15473 ISBN 0-07-015073-7 Copyright © 1986 by McGraw-Hili, Inc. All rights reserved. Printed in the United States of America. Except as permitted under the United States Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a data base or retrieval system, without the prior written permission of the publisher. 1234567890 DOC/DOC 893210876 ISBN 0-07-015073-7 The editors for this book were Steven Guty and Vivian Koenig, the designer was Naomi Auerbach, and the production supervisor was Teresa F. Leaden. It was set in Century Schoolbook by Byrd Data Imaging. Printed and bound by R. R. Donnelley & Sons Company. To my sister Patricia Contents Chapter 1. Introduction 1 What Is Concurrent PC DOS? 1 What Is an Operating System? 1 The DOS Family Tree 3 The Scope of This Book 5 Chapter 2. Concurrent PC DOS Compatibility 6 Concurrent PC DOS Compatibility 6 PC·DOS, TopView, and the IBM PC AT 7 Concurrent CP/M·86 9 Chapter 3.
    [Show full text]
  • NI Vxipc-486 200 Series Windows Manual
    Full-service, independent repair center -~ ARTISAN® with experienced engineers and technicians on staff. TECHNOLOGY GROUP ~I We buy your excess, underutilized, and idle equipment along with credit for buybacks and trade-ins. Custom engineering Your definitive source so your equipment works exactly as you specify. for quality pre-owned • Critical and expedited services • Leasing / Rentals/ Demos equipment. • In stock/ Ready-to-ship • !TAR-certified secure asset solutions Expert team I Trust guarantee I 100% satisfaction Artisan Technology Group (217) 352-9330 | [email protected] | artisantg.com All trademarks, brand names, and brands appearing herein are the property o f their respective owners. Find the National Instruments VXIpc-486 Model 566 at our website: Click HERE Getting Started with Your NI-VXI ™ Software for the VXIpc™-486 Model 200/500 Series and Windows bus March 1995 Edition Part Number 320930A-01 © Copyright 1995 National Instruments Corporation. All Rights Reserved. National Instruments Corporate Headquarters 6504 Bridge Point Parkway Austin, TX 78730-5039 (512) 794-0100 Technical support fax: (800) 328-2203 (512) 794-5678 Branch Offices: Australia (03) 879 9422, Austria (0662) 435986, Belgium 02/757.00.20, Canada (Ontario) (519) 622-9310, Canada (Québec) (514) 694-8521, Denmark 45 76 26 00, Finland (90) 527 2321, France (1) 48 14 24 24, Germany 089/741 31 30, Italy 02/48301892, Japan (03) 3788-1921, Mexico 95 800 010 0793, Netherlands 03480-33466, Norway 32-84 84 00, Singapore 2265886, Spain (91) 640 0085, Sweden 08-730 49 70, Switzerland 056/20 51 51, Taiwan 02 377 1200, U.K. 0635 523545 Limited Warranty The media on which you receive National Instruments software are warranted not to fail to execute programming instructions, due to defects in materials and workmanship, for a period of 90 days from date of shipment, as evidenced by receipts or other documentation.
    [Show full text]