Since nobody's posting.. an odd thing I found..

BlitzPlus Forums/BlitzPlus Beginners Area/Since nobody's posting.. an odd thing I found..

BlackD(Posted 2004) [#1]
	Data Chr$(65)
Why does this produce an OPEN FILE dialogue, as opposed to the letter A?

+BlackD


Regular K(Posted 2004) [#2]
hmm as far as i know, i dont think you can do that in data statements, as data statements must be static, and chr returns a dynamic string :o


Shagwana(Posted 2004) [#3]
Now that is indeed odd!


Grisu(Posted 2004) [#4]
*sigh* it's confusing, these tons of forums...

A better seach function would really help!


Rck(Posted 2004) [#5]
That is sweet, writing a program with ASCII.


Kevin_(Posted 2004) [#6]
You are better off assigning a string name to your chr$(65).
Instead of using the DATA statement use someting like a$=chr$(65)

You can then add them together...

a$=chr$(65)+chr$(66)+chr$(67) etc.....

Hope that helps.