Boolean Quickly

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ucasesoftware

    Boolean Quickly

    I find a solution to inverse quickly boolean

    i use

    Select case myBoolean
    Case true
    myBoolean = false
    Case False
    myBoolean = true
    end select

    but i can remember there is a quickly way...

  • Herfried K. Wagner [MVP]

    #2
    Re: Boolean Quickly

    "ucasesoftw are" <ucasesoftware@ hotmail.fr> schrieb:[color=blue]
    >I find a solution to inverse quickly boolean
    >
    > i use
    >
    > Select case myBoolean
    > Case true
    > myBoolean = false
    > Case False
    > myBoolean = true
    > end select[/color]

    \\\
    MyBoolean = Not MyBoolean
    ///

    --
    M S Herfried K. Wagner
    M V P <URL:http://dotnet.mvps.org/>
    V B <URL:http://classicvb.org/petition/>

    Comment

    • ucasesoftware

      #3
      Re: Boolean Quickly

      thx

      Comment

      Working...