English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

and how can I access it, if I have it?

2006-09-20 05:03:35 · 9 answers · asked by Ghostwriter 2 in Computers & Internet Programming & Design

9 answers

DOS = Disk Operating System

If in XP use run OR Command Prompt

2006-09-20 05:06:28 · answer #1 · answered by Anonymous · 0 0

DOSBox is Perfect Sync Software's new Development Tool for programmers who work with DOS and Console Applications, including legacy programs.

DOSBox makes it possible to:

"Ghost Control" DOS and Console Applications from other applications
Add Windows-oriented functions to DOS and Console Applications
Tightly integrate existing DOS/Console Applications with Windows Applications
DOSBox is a "wrapper" program that can link itself to virtually any DOS or Console Application -- even if you didn't write it -- through a "Control File". By placing commands in the Control File, a DOS or Console Application can tell DOSBox to do things like:

Change the title bar text and icon
Maximize, Minimize, Restore, Hide, or Show the application
Switch to the fullscreen or window mode
Play WAV Sound Files
Display Windows "message boxes"

2006-09-20 05:14:40 · answer #2 · answered by Anonymous · 0 0

DOS is a shell, it allows you to communicate with the computer using text commands. It's what you'd have used before grapical "windows" or if you want to run certain useful tools like ping or nslookup or xcopy.

Go to Start > Run > type cmd and click ok. That is a DOS console.

2006-09-20 05:07:37 · answer #3 · answered by Iain Speed 2 · 0 0

What is a Console?

A console is a text mode interface connected right to the heart of 32-bit Windows. If you double-click on the MS-DOS icon in Windows, the window that opens with the C:\> prompt is your text console. In it, you can execute commands such as DIR, CLS, COPY, etc. Additionally, you can run text mode applications such as XCOPY32.EXE and PING.EXE. These programs are actually 32-bit Windows applications that use special calls to the Win32 API in order to display text inside the console window.

PB/CC eliminates the need for you to learn these special Win32 API calls in order to create console applications. The whole process is handled for you when you use the PRINT, LOCATE, COLOR, CLS, and other statements in the PB/CC language. This frees you to concentrate on the task at hand.

While not every application you write for Windows will need to be a console application, the console is ideally suited for many types of tasks. For example, using STDIN LINE and STDOUT you can write a utility which takes input from a redirected file, processes it, and sends the output to the standard output device which can be redirected to a new file. A prime example is the SORT.EXE utility that comes with DOS:

SORT < myfile.txt > sorted.txt

The text file "myfile.txt" is read, sorted, and written back to the file "sorted.txt". By using standard input and output for file I/O, the SORT utility can easily be used by other programs which do not have native sorting capability. Porting the SORT utility to a Windows console application gives it the ability to work with much larger files.

DOS programs are limited to available "real mode" memory, which is typically around 640 Kb (less than one Megabyte). 32-bit Windows applications, on the other hand, can access up to two Gigabytes of memory. This is a significant difference.

I.S. and I.T. departments may find PB/CC particularly useful for porting existing DOS applications written in PB/DOS or QuickBasic into the Windows environment. For example, the simple text interface of a DOS application allows data entry operators to quickly enter repetitive information such as telephone orders or inventory data. When ported to a Windows GUI application, the response by the operating system is much slower and often requires additional steps involving a mouse to accomplish the same task. Re-training employees to use the new software and the lower productivity can then raise costs significantly.

Quite often, accounting departments are willing to continue using older DOS programs in order to avoid these problems, even if it means not being able to add additional features such as Internet connectivity, and integration with fast database servers such as MS SQL and Oracle. By porting your application to PB/CC, exactly the same user interface can be retained, and the new features can be added.

Besides the text console interface, PB/CC offers BASIC programmers complete access to the complete Win32 API, including the Winsock API for Internet access, and ODBC for accessing SQL and other database servers. Win32 console applications also have a two Gigabyte flat memory address, so trying to fit everything into 640 Kb or 16 Megabytes of EMS memory is no longer required. A string variable can be many Megabytes in size and the limitation of arrays is measured in Gigabytes instead of Kilobytes.
http://www.powerbasic.com/support/help/pbcc/what_is_a_console_.htm

2006-09-20 05:07:00 · answer #4 · answered by Carla S 5 · 0 0

A proper name for it go by is Commandline Prompt; Command Line, Command Prompt.

There is icon for it somewhere buried in Start menu, but one betterway to access it is Start -> Run

Type "cmd" (no quotes in actual entry) and click Execute. You should have it in any kind of Windows setup (including NT/2k/XP)

2006-09-20 05:10:11 · answer #5 · answered by Andy T 7 · 0 0

A dos console is a window that displays dos.

2006-09-21 10:19:58 · answer #6 · answered by Siu02rk 3 · 0 0

Go Start>All Programs>Accesories> Command Prompt in Windows XP. Then you can go here and find more http://en.wikipedia.org/wiki/MS-DOS

2006-09-20 05:09:17 · answer #7 · answered by PainMaster 3 · 0 0

From your Windows, click Start -> Run.
Type cmd
Press Enter.

2006-09-20 06:45:55 · answer #8 · answered by alakit013 5 · 0 0

Dave Dove and David Lewis asked the same question. You should read their answers side by side.

2016-08-20 06:03:37 · answer #9 · answered by Anonymous · 0 0

fedest.com, questions and answers