Posted by alexandre
(194.236.154.174) on April 22, 2003 at 10:47:17: I found two problems. First - If we have: "Public data$ As String data$ is never set to anything and is always a empty String but if I declare some value for data$ before like Public data$ As String = "1234567890" Then it works. Is this a Bug or is this supposed to be like that???
If we have "Public data$ As String For i=0 to 7 step 1 This doesn't work as it should. i+1 seems to be ignored and only i seems to be used thus giving an error in the first loop because data$(0) is an error. "Public data$ As String For i=0 to 7 step 1 This works perfectly as it should. Are those bugs or are they supposed to be like that?? I have tried only in the terminal program so I don't know if the card would behave equally. Best Regards Alex
|