hey gang, I'm going crazy!! here is the code:
dim message(2) as string
message(1)="hello"
message(2)="there"
do
set cursor 50,50:print message(1)
set cursor 50,70:print message(2)
text 50,90,message(1)+message(2)
sync
loop
Now looking at this simple code you would assume it would print..
hello
there
hellothere
Instead!! it prints...
there
there
therethere
Its like the array sets all the values within itself to the last value assigned to any index.
I am using dbpro 1.075 is this a bug????
HELP PLZ!!! DRIVING ME NUTS!!!