??? 07/01/05 06:03 Read: times |
#96367 - TAB Responding to: ???'s previous message |
Mehdi said:
Steve,
At first I used space for going to next line,I guessed maybe my problem is here Yes, it certainlt is! I found that 0DH is for going to first of existed line
And 0BH is for going to next line(cursor position), 0DH = CR; ASCII Carriage Return code. For PC Files you need CR followed immediately by LF at the end of each line - see: http://www.8052.com/forum/read.phtml?id=96338 0BH = VT; ASCII code for Vertical Tab (commonly known as just "TAB") This simply means, "advance the cursor to the next Tab Stop." The positions of Tab Stops are entirely user-defined - you cannot rely upon a TAB having any speficic effect upon the cursor position! You need to use spaces to layout your unless you have some specific application where you can guarantee the interpretation of TAB characters. Mehdi said:
... company said me We need your design without any additional software to installing in computer, It seems it is an advantage Maybe that thay can say our design can work in all pc's without any installation!!! In that case, no TABs!! |