Link to home
Start Free TrialLog in
Avatar of IVSRAMAMURTY
IVSRAMAMURTY

asked on

how to print msofiice files in dos mode

we are working with msoffice 98 and using a dot-matrix printer. it was taking along time to print in windows mode. so i would like to open the office files in ms-dos mode so that i can print the files fastly.

or else suggest any other solution so that i can able to print office files fastly.



Avatar of slink9
slink9

You can't open Office files in MSDos mode since you need MSOffice (a Windows program) to run it.  You can save the documents in a txt file and print them in DOS mode, but you will lose all formatting (font, tabs, etc).
In your printer options you can also print in draft output You will also lose some formatting But will print faster

...Bob
Avatar of SysExpert
Other options are to print to a file.  You can install a printer with the print to file option or it may appear in the print options window.


Then from a DOS indow you can do

copy  filename.xxx  prn

or
copy  filename.xxx  LPT1    etc.

I hope this helps !
It is not totally inconceivable that a dot-matrix printer will print MSOffice programs output as graphics. Hence print slowly. If you're talking MSWord, try using a printer font instead of TrueType, see if it makes a difference.
Regards
/RID
ASKER CERTIFIED SOLUTION
Avatar of Crash2100
Crash2100
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
If you go with the .prn file

Printing .prn files in Win9x

A way to enable drag-and-drop printing of these files in Windows 9x.

First, open Windows Notepad and create a new text file in the \windows folder named printer.bat. This file should have one line:

copy %1 lpt1 /b

This line takes a variable In (%1) and copies it to lpt1 (you can also change this to a different lpt port) with the /b switch to denote that it is a binary file. Next, follow these steps:


Click Start | Programs | Windows Explorer | View Menu | Options.
Click New Type in the File Types tab.
Type Printer in the Description Of Type field.
Type prn in the Associated Extension field.
Click New.
Type print in the Action field.
Type c:\windows\printer.bat in the Application Used To Perform Action field.
Click OK and then click Set Default.
Navigate (in Explorer) to the printer.bat file in c:\windows.
Right-click on the file and select Properties.
Click the Program tab, select the Close On Exit check box, and click OK.

Finally, create a shortcut on the desktop to c:\windows\printer.bat by right-clicking on printer.bat and then clicking Send To | Desktop (create shortcut).

Once you have done this, you can drag a .prn file onto the printer shortcut icon, right-click on a .prn file, and select Print from the context menu or double-click the .prn file.

...Bob
Install a local printer and select port FILE instead of LPTx. Give the same driver as your printer.

Open an Office document and print it to this new printer.

From dos you will be able to print the file with the copy command as said in previous messages.