Microsoft Visual Studio .NET: an Integrated Windows Program

Total Page:16

File Type:pdf, Size:1020Kb

Microsoft Visual Studio .NET: an Integrated Windows Program Microsoft Visual Using Microsoft Visual Studio .NET Studio .NET: ? Self-contained environment for Windows program development: An Integrated – creating – compiling Windows Program – linking – testing/debugging Development ? IDE that accompanies Visual C++, Visual Basic, Visual C#, and other Microsoft Environment Windows programming languages ? See Chapter 2 and Appendix D of Deitel text ? Also Appendix C of Gregory text Some Visual Studio Visual Studio Capabilities Components ? Generate starter applications without writing ? The Editors code C, C++, C#, VB source program text editors ? View a programming project in many different • cut/paste, color cues, indentation, ways • generates text files ? Edit source and include files Resource Editors ? Build the application’s user interface visually • icons, bitmaps, cursors, menus, dialog boxes, etc. • graphical, WYSIWYG, Integrated ? Compile and link • generates resource script (.rc) files ? Debug an application while it runs • integrated with text editor ? Obtain online help • Done visually ? Lots of others VC++ Unmanaged Code The Linker Compiler ? C/C++ Compiler ? Reads compiler .obj/.res files – translates source programs to machine language ? – detects and reports errors Accesses C/C++/Windows libraries – generates object (.obj) files for linker ? Generates executable (.exe or .dll) ? Resource Compiler – Reads .rc file – Generates binary resource (.res) file for linker 1 The Debugger ? powerful source code debugger ? integrated with all parts of Visual Studio ? Features – breakpoints – tracing through/over functions – variable watch windows – much more The Wizards Help ? Hover over key words in edit window and a ? AppWizard one-line help message appears – Windows code generator for MFC apps ? More detailed help can be obtained by: – automatically creates working program templates – ‘Start Page’ – ‘Search Online’ & skeleton code • To access the MSDN Online Library ? ClassWizard ? Easier to use the ‘Help’ Menu Item – facilitates easy extension of AppWizard-generated – ‘Dynamic Help’ – context sensitive classes • Click on text in edit window and corresponding topic – creation of new classes and response functions appears in help window – used to tailor AppWizard-generated MFC & .NET • Click on topic in help window to get help skeletons – ‘Contents’: Select a topic – Replaced by Properties Window in .NET – ‘Search’: Enter a topic – ‘Index’: Enter a topic Win32 API Online Help MFC Online Help ? ‘Help’ – ‘Contents’ ? ‘Help’ – ‘Contents’ – Filtered by: (Visual C++) – Filtered by: (no filter) Visual Studio .NET MSDN Library Visual C++ Windows Development Visual C++ Reference Win32 API Visual C++ Libraries SDK Documentation MFC Reference Reference Hierarchy Chart Functions by category MFC Classes Functions in alphabetical order Class Library Overview MFC Classes (!!) etc. 2 MSDN Library (on Web) Using Visual Studio .NET ? To prepare many kinds of applications ? Go to: http://msdn.microsoft.com – Win32 Console Applications (DOS programs) – Search MSDN for desired topic – Win32 API Apps in C or VC++ – Good URL for MFC: – MFC Apps in VC++ http://msdn.microsoft.com/library/default.asp?url=/library/en- us/vcmfc98/html/_mfc_class_library_reference_introduction.asp – DLLs – .NET Windows Forms Apps in Managed C#, VB, C++, and other languages – ASP.NET Web Apps and Services – ADO.NET Data Base Apps – Others Visual Studio Layout ? Menu bar ? Several tool bars ? View Windows (to the side) – Solution Explorer – Class View – Resource View – Properties Window ? Working Area (main window) – Text Editor to enter/modify source code – Resource Editors ? Output Window & Status Bar (bottom). – System messages (errors) ? Windows can be moved around, docked and undocked Toolbars ? Contain icons --instant routes to main menu functions ? Many of them ? May not be visible ? If not, right click on any visible toolbar ? Brings up following popup window ? Can activate a toolbar by clicking on its check box 3 Keyboard Shortcuts Solutions and Projects ? Solution – A single application ? All menu/toolbar selections are available from the keyboard using key – Can contain one or more projects • In Managed applications, can be in different combinations languages ? Can be faster – Overall solution information stored in a .SLN file – Open this when you want to work on a solution ? More information in Online Help ? Project – ‘Index’ | ‘Keyboard Shortcuts’ | ‘Shortcut Keys’ – Collection of files: • Source, headers, resources, settings, configuration information Important Visual Studio Temporary Visual Studio Generated Files generated files ? .sln Solution ? Many are very big and can (should) be removed! ? .vcproj Project ? .obj Compiler machine code translation ? .c, .cpp, .cs C/C++/C# Windows App source code ? .ilk Incremental link file ? .h C/C++ header ? .pch Precompiled header (huge!!!) ? .rc Resource script ? .pdb Precompiled debugging info ? .res Compiled resource ? .idb Incremental debug info ? .ico Icon ? .ncb Supports viewing classes ? .bmp Bitmap image ? .aps Supports viewing resources ? .exe Executable program ? others ? .dll Dynamic Link Library (if used) ? .aspx ASP.NET Web Form source code ? .asmx ASP.NET Web Service source code Program Configurations Setting the Configuration ? Debug ? Click ‘Build’ on Main Menu – appends debugging information ? Choose ‘Configuration Manager’ – produces more and larger files ? Choose desired configuration (‘Debug’ ? Release or ‘Release’) in ‘Active Configuration – no debugging information Box’ – optimized for size & efficiency ? Default is ‘Debug’ 4 Create a Win32 Application with Visual Studio ? Click ‘Application Settings’ in resulting ? Startup ‘Application Wizard’ Box – click ‘Start’ on Task Bar – ‘All Programs’ – Select ‘Windows Application’ from – ‘Microsoft Visual Studio .NET 2003’ | ‘Microsoft ‘Application Type’ radio buttons Visual Studio .NET 2003’ – Select ‘Empty Project’ from ‘Additional ? Creating a new solution Options’ check boxes – ‘File’ | ‘New’ | ‘Project’ from Menu Bar – In ‘New Project’ box, select ‘Visual C++ Project’ from – Click ‘Finish’ ‘Project Types:’ & click on ‘Win32 Project’ in ? Click ‘OK’ in ‘New Project Information’ ‘Templates’ – Set the ‘Location’ to a convenient directory & name Window the project (e.g. win32app1) – ‘OK’ ? Inserting source files into project: ? Alternative Way of Adding a Source – Open a new C++ file & type or copy/paste the code File to a Project: into the program: • ‘File’ | ‘New’ | ‘File’ from menu – You can also copy an existing source code • Choose ‘Visual C++’ from ‘Categories’, C++ file (.cpp) from file into the project’s directory ‘Templates’, & click ‘Open’ – Then as before: • Type or paste source code into the resulting Edit window • Save the file in the project’s directory as a C++ source file, • Choose ‘Project’ | ‘Add Existing Item’ from the giving it an appropriate name (e.g., win32app1) menu – Add the source file to the project: • Select the .cpp file & click ‘Open’ • Choose ‘Project’ | ‘Add Existing Item’ from menu – Should appear in Solution Explorer window • Click on the file you saved (e.g. win32app1.cpp) – Open it by double clicking on it • Confirm that it was added to the project by expanding ‘Source Files’ in the Solution Explorer Window – If Solution Explorer is not visible, select ‘View – Solution Explorer’ from the menu Compiling from Command Line ? Building the Solution: ? Command Line Compilers: – ‘Build’ | ‘Build Solution’ from menu – C++: CL.EXE – Project will be compiled/linked – C# : CSC.EXE – Messages/errors will appear in Output Window – Visual Basic: VBC.EXE ? All are run from a DOS session, but directory ? Running the Program: paths must be set correctly – ‘Debug’ | ‘Start’ from menu ? Easiest to start a Visual Studio .NET • Shortcut key: F5 Command Prompt (paths already set) – Or ‘Debug’ | ‘Start Without Debugging’ from – From Task Bar: • Start | All Programs | Microsoft Visual Studio 2003 | menu Visual Studio .NET Tools | Visual Studio .NET Command • Shortcut key: Ctrl-F5 Prompt (2003 version) • Start | All Programs | Microsoft Visual Studio .NET | • or click exclamation point Visual Studio .NET Tools, Visual Studio .NET Command Prompt (2002 version) 5 Command Line Compiling, ? Cleanup: continued – Copy solution, project, source, header, resource files to disk ? To compile our first Visual C++, Win32 API – Copy .exe file from project's Debug directory application from the command line: – cl kernel32.lib user32.lib gdi32.lib win32a1.cpp – Best: Delete all temporary files & copy entire solution (project directory) to floppy – Note that any required libraries (DLLs) must be specified – Delete project directory from hard drive ? There are many compiler options: ? Exiting Developer Studio: – See Online Help: – ‘File’ | ‘Exit’ from menu – ‘Index’ | ‘cl.exe compiler’ | ‘Compiler Options (C++)’ – For C#: ‘Index’ | ‘csc.exe’ 6.
Recommended publications
  • Storageworks RAID Array 200 Online Mgt Utility for Openvms AXP User's
    StorageWorks RAID Array 200 Online Management Utility for OpenVMS AXP User's Guide AA–Q6WVB–TE Digital Equipment Corporation Maynard, Massachusetts Second Printing, April 1995 The information in this document is subject to change without notice and should not be construed as a commitment by Digital Equipment Corporation. Digital Equipment Corporation assumes no responsibility for any errors that might appear in this document. The software, if any, described in this document is furnished under a license and may be used or copied only in accordance with the terms of such license. No responsibility is assumed for the use or reliability of software or equipment that is not supplied by Digital Equipment Corporation or its affiliated companies. Copyright 1995 by Digital Equipment Corporation. All rights reserved. Printed in the U.S.A. The following are trademarks of Digital Equipment Corporation: AXP, OpenVMS, StorageWorks, SWXCR, and the Digital logo. The following are third-party trademarks: Microsoft and MS-DOS are registered trademarks and Windows is a trademark of Microsoft Corporation. Intel, Intel486, and i486 are trademarks of Intel Corporation. All other trademarks and registered trademarks are the property of their respective holders. Contents Revision Record...................................................................................................................ix About This Guide ...............................................................................................................xi 1 Installing the RAID Array
    [Show full text]
  • Microsoft Staff and Student Advantage
    Microsoft Staff and Student Advantage Microsoft have launched Student Advantage to provide eligible staff and pupils with a free subscription of Microsoft Office 365 ProPlus. This allows staff and pupils to install Microsoft Office ProPlus on up to 5 devices simultaneously. This facility is available to all staff and pupils in Dundee schools exclusively through their Dundee Microsoft Office365 account. Use of this account is covered by the Acceptable Use Policy. Use is not compulsory and the facility is provided as-is. The information below is from Microsoft's Student Advantage and Office 365 FAQ blog post. What is included with Office 365 ProPlus subscription license? Office 365 ProPlus for PC (Office 2013 ProPlus base applications) Office 365 ProPlus for Mac (Office 2011 for Mac base applications) Office Mobile for iPhone/iPod Touch Office Mobile for Android Office 365 ProPlus Details How to download / What you Help and System Format get? Support Requirements Windows Server 2008 R2 Windows 7 Windows Server 2012 Windows 8 Download the application via your 32-bit Office can be installed webbased Dundee email account, See on 32-bit or 64-bit operating Below is a link to systems. details at the bottom of this page. What some excellent However 64-bit Office can you get: Word 2013 training guides on only be installed on 64-bit Excel 2013 Office 2013: operating system. To find out if you have 32-bit or PowerPoint 2013 What's new 64-bit Windows, click the start OneNote 2013 Learn the basics button, right-click Computer Office 365 Access 2013 Quick start guides then click Properties, then under ProPlus for Publisher 2013 Video tutorials System Type you should see PC Outlook 2013 Microsoft online help either 32-bit or 64-bit operating Lync 2013 resources system.
    [Show full text]
  • The Top 10 Mistakes to Avoid When Starting an Online Help Project
    Th e top 10 mistakes to avoid when starting an online help project Whitepaper Th e top 10 mistakes to avoid when starting an online help project Modern help authoring tools like RoboHelp® are very powerful and offer great flexibility to authors. However, the same power and flexibility can get new projects off to a bad start. Some mistakes are plain silly, while others can lead to hiring the wrong author, picking the wrong output format, or letting a project spin out of control in ways that call for expensive rework later. The risk involved in employing modern help authoring tools has existed ever since they appeared in 1991. Thereafter, these tools became even more powerful and feature-rich expanding the scope for errors. Two changes in the recent years can magnify the effect of such mistakes: • The ‘internalization’ of help into an accelerating documentation process In the past, help authors could make mistakes and had time to find, fix, and learn from them. But Test drive Adobe® RoboHelp 9 today, tighter time-to-market and ROI (return on investment) demands are eliminating the authors’ Try the full functionality of ability to make and learn from mistakes. It’s more important than ever to ‘get it right the first time’. RoboHelp 9 (as a part of Adobe Technical Communication Suite 3.5) • The shift from viewing online help as ‘documentation’ to ‘content’ for reuse beyond the in minutes—without downloading boundaries of the doc group the soft ware. Tutorials are also included. To test drive RoboHelp 9 Help authors now have to consider how their content may be used on a company web site, now, visit www.runaware.com/ on mobile devices, or can be found via Google searches, and more.
    [Show full text]
  • ICUT MS Agreement 2[1].0 Order Form 8-15-2001
    Independent Colleges and Universities of Texas (ICUT)- Microsoft® Campus Agreement 2.0 Faculty/Staff Work-at-Home Media Order Form (revised 8-15-01; expires 8-31-2002) ICUT sponsors a Microsoft® Campus Agreement 2.0. Eligible schools: Abilene Christian U., Austin College, Baylor U., Concordia U. at Austin, East Texas Baptist U., Houston Baptist U., Howard Payne U., Jacksonville College, Jarvis Christian College, Le Tourneau U., Lon Morris College, Lubbock Christian U., Mc Murry U., Our Lady of the Lake U., St. Edward’s U., Southwestern Adventist U., Southwestern Christian College, Texas Christian U., Texas College, Trinity U., U. of Mary Hardin-Baylor, U. of St. Thomas. Participating colleges have paid the license fee for the media (CD-ROMs) available below that faculty/staff can order for work-at-home use. Because you are only paying for the media, the prices are very low. FCCC is providing the media and accepts both credit cards and personal checks; orders can be mailed or faxed. The license agreement with Microsoft® does not include free access to phone help from Microsoft®. Hardcopy manuals are not included but are available online from Microsoft®. There is also online help at www.microsoft.com and FCCC provides limited technical assistance by email. See the FCCC website (www.facultybuys.org) for additional information, including other discounted products and services. All disks are fully guaranteed; defective disks are replaced at no charge. All sets are fully licensed copies as long as your college Microsoft® Campus Agreement 2.0 is in place. Windows®98 SE Upgrade, Windows® Me Upgrade, and Windows® 2000 Upgrade require a previous version of Windows® on your computer.
    [Show full text]
  • Help for HTML Help
    Microsoft HTML Help Overview Microsoft® HTML Help consists of an online Help Viewer, related help components, and help authoring tools from Microsoft Corporation. The Help Viewer uses the underlying components of Microsoft Internet Explorer to display help content. It supports HTML, ActiveX®, Java™, scripting languages (JScript®, and Microsoft Visual Basic® Scripting Edition), and HTML image formats (.jpeg, .gif, and .png files). The help authoring tool, HTML Help Workshop, provides an easy-to-use system for creating and managing help projects and their related files. Features About creating help Satellite .dll files enable help in all supported languages. Now help will Newa flewatuaryess i nm thias trcelhea stehe language of the installed operating system. Microsoft® HTML Help version 1.3 contains these new features: There is now a single version of Hhupd.exe that works in all supported languages. NOTE: These enhancements are designed to make HTML Help fully compliant with the language features of Microsoft Windows® 2000. For more information on multiple language support in Windows 2000, see the Multilanguage Support white paper on the Microsoft Windows 2000 Web site. Introducing HTML Help help system or Web site. The HTML Help components HTML Help contains the following components: HTML Help ActiveX control: a small, modular program used to insert help navigation and secondary window functionality into an HTML file. The HTML Help Viewer: a fully-functional and customizable three- paned window in which online help topics can appear. Microsoft HTML Help Image Editor: an online graphics tool for creating screen shots; and for converting, editing, and viewing image files. The HTML Help Java Applet: a small, Java-based program that can be used instead of an ActiveX control to insert help navigation into an HTML file.
    [Show full text]
  • Online Help – MOVI-PLC® Power Apps 3 ® 1 Welcome to "MOVI-PLC Power Apps"
    Drive Technology \ Drive Automation \ System Integration \ Services Manual MOVI-PLC® power apps Edition 03/2013 20102143 / EN SEW-EURODRIVE—Driving the world Contents Contents 1 Welcome to "MOVI-PLC® power apps"............................................................. 4 2 Introduction ......................................................................................................... 5 2.1 Which functions does the software offer? ................................................... 5 2.2 Which groups are the functions assigned to? ............................................. 5 3 Operation ............................................................................................................. 6 3.1 First steps ................................................................................................... 6 3.1.1 Start screen ................................................................................. 6 3.1.2 Program layout ............................................................................ 7 3.1.3 Starting and quitting the program manually................................. 8 3.1.4 Unit detection indicator ................................................................ 8 3.2 "Program" group ......................................................................................... 9 3.3 "Data management" group........................................................................ 10 3.3.1 Write protection and reserved RAM........................................... 10 3.3.2 Setting up write protection and reserved
    [Show full text]
  • IBM Tivoli Netview for Z/OS: Command Reference Volume 2 (O-Z) for Netview for Z/OS Terms and Definitions, See the IBM Terminology Web Site
    IBM Tivoli NetView for z/OS Version 6 Release 2 Modification 1 Command Reference Volume 2 (O – Z) IBM SC27-2848-06 Note Before using this information and the product it supports, read the information in “Notices” on page 611. This edition applies to version 6, release 2, modification 1 of IBM Tivoli NetView for z/OS (product number 5697-NV6 ) and to all subsequent versions, releases, and modifications until otherwise indicated in new editions. This edition replaces SC27-2848-05. © Copyright International Business Machines Corporation 1997, 2015. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Figures................................................................................................................. ix About this publication...........................................................................................xi Intended audience...................................................................................................................................... xi Publications................................................................................................................................................. xi IBM Tivoli NetView for z/OS library....................................................................................................... xi Related publications ............................................................................................................................ xii Accessing terminology online...............................................................................................................xii
    [Show full text]
  • Z/OS Information Roadmap
    z/OS Version 2 Release 3 z/OS Information Roadmap IBM SA23-2299-30 Note Before using this information and the product it supports, read the information in “Notices” on page 51. This edition applies to Version 2 Release 3 of z/OS (5650-ZOS) and to all subsequent releases and modifications until otherwise indicated in new editions. Last updated: 2019-06-24 © Copyright International Business Machines Corporation 1988, 2019. US Government Users Restricted Rights – Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Tables................................................................................................................... v How to send your comments to IBM......................................................................vii If you have a technical problem.................................................................................................................vii Summary of changes.............................................................................................ix Summary of changes for z/OS Version 2 Release 3 (V2R3)....................................................................... ix Summary of changes for z/OS Version 2 Release 2 (V2R2)....................................................................... ix z/OS Version 2 Release 1 summary of changes.......................................................................................... x Chapter 1. Accessing z/OS documentation............................................................. 1 Cross-document
    [Show full text]
  • Applying Document Design to Online Help Systems to Increase Usability
    BearWorks MSU Graduate Theses Spring 2017 Merging Mediums: Applying Document Design to Online Help Systems to Increase Usability Meghan M. Smith Missouri State University, [email protected] As with any intellectual project, the content and views expressed in this thesis may be considered objectionable by some readers. However, this student-scholar’s work has been judged to have academic value by the student’s thesis committee members trained in the discipline. The content and views expressed in this thesis are those of the student-scholar and are not endorsed by Missouri State University, its Graduate College, or its employees. Follow this and additional works at: https://bearworks.missouristate.edu/theses Part of the Technical and Professional Writing Commons Recommended Citation Smith, Meghan M., "Merging Mediums: Applying Document Design to Online Help Systems to Increase Usability" (2017). MSU Graduate Theses. 3064. https://bearworks.missouristate.edu/theses/3064 This article or document was made available through BearWorks, the institutional repository of Missouri State University. The work contained in it may be protected by copyright and require permission of the copyright holder for reuse or redistribution. For more information, please contact [email protected]. MERGING MEDIUMS: APPLYING DOCUMENT DESIGN TO ONLINE HELP SYSTEMS TO INCREASE USABILITY A Master’s Thesis Presented to The Graduate College of Missouri State University TEMPLATE In Partial Fulfillment Of the Requirements for the Degree Master of Arts, Writing By Meghan M. Smith May 2017 Copyright 2017 by Meghan Marie Smith ii MERGING MEDIUMS: APPLYING DOCUMENT DESIGN TO ONLINE HELP SYSTEMS TO INCREASE USABILITY English Missouri State University, May 2017 Master of Arts Meghan M.
    [Show full text]
  • Visual Basic 2010 MSDN
    Copyright 2010-2014 by Homeschool Programming, Inc. Download and Installation Instructions for Visual Basic 2010 Help Library Updated April, 2014 The Visual Basic 2010 Help Library contains reference documentation and information that will provide you with extra assistance on any programming topic with just a click of a button. These help files are not necessary for the completion of your course; however they are a helpful resource. Until the Microsoft Visual Studio 2010 release, the “Help Library” was named the “MSDN (Microsoft Developer Network) Library”, and therefore you will see these terms used interchangeably in the programming industry and also within our curriculum. You may choose to configure and use the Help Library in one of two ways: • Online Help – With this option you simply configure your Visual Basic 2010 Express software to automatically go online to Microsoft’s website whenever you need to pull up any help topic. No local download or install is required, although you will need a persistent Internet connection for this option to work. • Local Help – With this option you choose components of the Help Library and download and install them on your computer. The Help Library consists of a number of optional components that are very large and may take a long time to download and install on your computer, even with a high speed Internet connection. However, once the installation is complete, you no longer need an Internet connection to pull up help topics. We recommend using the Online Help option if possible for your student’s computer due to the speed and simplicity of this option.
    [Show full text]
  • Choosing Between Help Authoring Tools and Ccmss Introduction
    WHITE PAPER Comparison Guide: Choosing Between Help Authoring Tools and CCMSs Introduction Introduction Every few years, the debate flares up over whether to use a HAT (help authoring tool) or a CMS (content management system) to create online Help and documentation. The gist of the debate is that HATs, which appeared in 1991, are outdated and should be replaced by a CMS or, today, by a CCMS (component content management system). This white paper, which revisits that debate, touches upon topics that may help your company avoid repeating the mistakes of the 1990s when companies bought HATs without first distinguishing between different HATs’ feature sets and workflows. Note: for the purposes of this white paper, Flare is categorized as a HAT. However, Flare, like all modern HATs, went far beyond simple help authoring long ago to become the single-sourcing, multiple output powerhouses of today. The comments on the HAT side apply to most HATs but focus on Flare. The comments about the CCMS side are generic. Let’s start with a few definitions. l HATs let us create online Help and documentation in multiple online and print formats. A HAT stores the files that form a project – topics, content “fragments” like variables and snippets, plus control files like skins and stylesheets – as separate chunks using the standard Windows file structure. l CMSs (content management systems) can also create online Help and documentation in online and print formats, although they have other uses as well. Like HATs, CMSs work with chunks. The definition of “chunk” depends on the CMS, but it’s often a page or a document, such as a set of Word documents stored as individual chunks in a CMS.
    [Show full text]
  • Openvms User's Manual
    OpenVMS User’s Manual Order Number: AA–PV5JE–TK April 2001 This manual describes how to use the Compaq OpenVMS operating system. The information contained in this manual is intended for all OpenVMS users and is applicable to all computers running the OpenVMS operating system. Revision/Update Information: This manual supersedes the OpenVMS User’s Manual, Version 7.2. Software Version: OpenVMS Alpha Version 7.3 OpenVMS VAX Version 7.3 Compaq Computer Corporation Houston, Texas © 2001 Compaq Computer Corporation Compaq, VAX, VMS, and the Compaq logo Registered in U.S. Patent and Trademark Office. OpenVMS is a trademark of Compaq Information Technologies Group, L.P. in the United States and other countries. Microsoft, MS, and MS–DOS are registered trademarks of Microsoft Corporation. Motif, OSF, OSF/1, and OSF/Motif are registered trademarks, and Open Software Foundation is a trademark of The Open Group. All other product names mentioned herein may be trademarks of their respective companies. Confidential computer software. Valid license from Compaq required for possession, use, or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor’s standard commercial license. Compaq shall not be liable for technical or editorial errors or omissions contained herein. The information in this document is provided "as is" without warranty of any kind and is subject to change without notice. The warranties for Compaq products are set forth in the express limited warranty statements accompanying such products. Nothing herein should be construed as constituting an additional warranty.
    [Show full text]