Spectrum
08-15-07, 09:48 AM
How do I get the | symbol in msdos. Anyone know? All help would be appreciated, thanks in advance.
|
|
View Full Version : | symbol... Spectrum 08-15-07, 09:48 AM How do I get the | symbol in msdos. Anyone know? All help would be appreciated, thanks in advance. leopold99 08-15-07, 09:50 AM http://answers.yahoo.com/question/index?qid=20070711051010AAR0qVa edit: more info. ALT+124 displays the pipe character (|). i'm not at all certain this will work with your code page or not. if it does then post back with the keyboard layout you are using it with.(english, french, etc.) pencil 08-15-07, 08:36 PM Try Shift + \ leopold99 08-15-07, 09:59 PM Try Shift + \ yes, this works in windows. you need to boot to dos to see if it still works. i don't have a floppy drive in this machine but i DO have an old bootable CD with winME on it. i'll scrounge it up and see. draqon 08-15-07, 10:02 PM How do I get the | symbol in msdos. Anyone know? All help would be appreciated, thanks in advance. This is the piping symbol. Use it to redirect output from one program to StdIn of another program. The second program is usually a filter or search program. draqon 08-15-07, 10:07 PM yes, this works in windows. you need to boot to dos to see if it still works. i don't have a floppy drive in this machine but i DO have an old bootable CD with winME on it. i'll scrounge it up and see. just go to programs->accessories->command prompt leopold99 08-15-07, 10:07 PM Try Shift + \ this produces the same symbol as on my keyboard, two vertical slashes not a vertical line. the alt+124 doesn't produce anything. this could be because this combination is used in batch files. i booted to dos from my winME cd and am using an american english keyboard layout. leopold99 08-15-07, 10:08 PM just go to programs->accessories->command prompt isn't dos. kevinalm 08-15-07, 11:28 PM Two verticle slashes is the same character as one verticle line. The pipe. Just different fonts. Pete 08-16-07, 12:00 AM How do I get the | symbol in msdos. Anyone know? All help would be appreciated, thanks in advance. If you just want the pipe (usually a broken vertical line in text only screens), use Shift+\. Character 179 is a vertical line in extended ASCII. Hold Alt, type 179 on the keypad, release Alt. Or use CHR$(179) or similar if you're programming. |