08-22-2025, 12:49 AM
Option _Explicit
Dim cmd$, count1%, count2%
Open "text.txt" For Output As #1
cmd$ = Command$(count1%) ' <<< this is saying cmd$ = Command$(0) because you never assigned count1% !!!
' just as this line reports!!!
Print #1, "Command$ elements1 cntr ="; count1% ' = 0
count1% is always 0 because you don't make it anything other.
Dim cmd$, count1%, count2%
Open "text.txt" For Output As #1
cmd$ = Command$(count1%) ' <<< this is saying cmd$ = Command$(0) because you never assigned count1% !!!
' just as this line reports!!!
Print #1, "Command$ elements1 cntr ="; count1% ' = 0
count1% is always 0 because you don't make it anything other.
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever

