Jump to content

Is this a bug or am I just missing something?


Recommended Posts

Can someone please try this code?, it is supposed to give me more than just "0|2" in the message box.

I think that if I initialize a variable as a string, I can't assign it number values, unless they are inserted as a string, am I right?

So when I do $c = $b where $b = 0, it is just ignoring it?

Thanks for the help.

$a = 0
$b = 0
$c = ""
For $a = 0 to 2
    For $i = 0 to 4
        $b = 0
        Select 
            Case $c = ""
                $c = $b
                
            Case $c <> "" And $i = 0
                $c = $c & "|" & $a & "|" & $b
                
            Case Else
                $c = $c & "|" & $b
                
        EndSelect
    Next
Next
$c = $c & "|" & ($a - 1)
MsgBox(0, "What the Hell", $c)
Link to comment
Share on other sites

u have a case for when $c is nothing and then $c is not nothing, when will it ever be anything else?

To answer your quetion try converting your numerical values to strings.

Edited by qazwsx
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...