10-21-2025, 07:59 AM
See how I set that up for you Steve? 
I knew AND was a bit thing but I was guessing it would be every other one that would "be equal" like odd and even numbers or a byte thing... but 2 on then 2 off... more that just one bit then but NOT a whole byte. Its the comparing to len(f$) = 2 then, OK.
So lets try len(f$) = 7
Calling them " Both equal.", still f's with the mind! LOL

I knew AND was a bit thing but I was guessing it would be every other one that would "be equal" like odd and even numbers or a byte thing... but 2 on then 2 off... more that just one bit then but NOT a whole byte. Its the comparing to len(f$) = 2 then, OK.
So lets try len(f$) = 7
Code: (Select All)
f$ = "1000000"
For i = 0 To 9
g$ = "1" + String$(i, "0")
Print i; "f$ = "; Chr$(34); "10"; Chr$(34); " g$ = "; Chr$(34); g$; Chr$(34);
If Len(f$) And Len(g$) Then
Print , , " Both equal.";
End If
Print
NextCalling them " Both equal.", still f's with the mind! LOL
724 855 599 923 575 468 400 206 147 564 878 823 652 556 bxor cross forever

