[futurebasic] Re: [FB] URLSIMPLEDOWNLOAD error?

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : November 2000 : Group Archive : Group : All Groups

From: Jay Reeve <jktr@...>
Date: Sun, 12 Nov 00 20:47:15 -0600
>Added code was like so....
>
>FOR x% = 1 to 255
>    blank$ = blank$ + "0"
>NEXT
>
Oops--that's definitely not what you want. That gives you the following 
string:
"00000000000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000",
where each char is represented with the value 48 (_"0"). What you want is 
FOR x% = 1 to 255
    blank$ = blank$ + CHR$(0)
NEXT
...but that's what you had to start with if you used CLEAR LOCAL.

 0"0
 =J= a  y
  "