View previous topic :: View next topic |
Author |
Message |
ANIL SARATHY Beginner
Joined: 30 Aug 2005 Posts: 88 Topics: 3 Location: Syracuse,New york
|
Posted: Wed Sep 21, 2005 7:34 am Post subject: Problem with display of S9(18) in forum |
|
|
in one of the post i have typed s9(one eight) ie s9(18 )
but it displayed in other way ie S9(18 )
is it something with
Maximum of numbers in a variable is 18 , unless it is compiler option arith(extent), where it goes until 31.
_________________ Anil Sarathy |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Sep 21, 2005 7:50 am Post subject: |
|
|
ANIL SARATHY,
If you are talking about the smileys when you type s9(eighteen), then it is because 8 followed by closing parenthsis turns into a simley icon.
so to avoid that just put a space between 8 and ) or better yet use code blocks and then you don't have to worry about smileys
ex:
{code}
01 ws-a pic s9(18) comp
{/code}
Now replace { with [ and you will get this
Code: |
01 ws-a pic s9(18) comp
|
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
|
|