Qbasicnews.com

Full Version: Little vertical line?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how or can tellmehow to make that little vertical line?
Code:
PRINT CHR$(179)

Is that what you're talking about?
screen 13
cls
line(10,10)-(20,10),15


line(start x posistion, start y posistion)-(end x posistion,end y posistion), colour



For more details, look under the line function in qb help
What little vertical line? Next time you post a question, please specify more clear. It makes it easier for us to answer your question.
this one?

<HR WIDTH=50%>

that's not going to work is it? :oops:

*peace*

Meg.
take a look at Plasma's post, it's prolly what you're looking for.

If you go here: http://qbasicnews.com/qboho/qckadvr.ac.shtml
you can see the standard ASCII character set. note the numbers next to each symbol.

you can either use CHR$(number), or hold down the alt key and type in the numbers on the numeric keypad (this doesn't work for some.)

Example: if you want to print an o with two dots over it, you can either type "PRINT CHR$(148)" or you can type:

PRINT "ö"

I put that symbol there by hitting alt+[1,4,8] on the numeric keypad.

*peace*

Meg.
the characters on that website don't all display correctly for me. You can see the right list by going into QB's help, "contents" and "ASCII character codes"

*peace*

Meg.