Setting Boolean Variables

  • Thread starter Thread starter Brian Mitchell
  • Start date Start date
B

Brian Mitchell

Is there an easy way to flip the value of a boolean variable without first
seeing what it's set to?
 
* "Brian Mitchell said:
Is there an easy way to flip the value of a boolean variable without first
seeing what it's set to?

\\\
Dim b As Boolean = ...
b = Not b
///
 
Back
Top