M
mp
Help seems to only show switch statements using equality rather than
comparison
I wanted to compare to a renage of values...
Point position = Mouse.GetPosition(Listview1 );
switch (position.X)
case < 150:
//column 1
case < 450:
//column2
case else:
//column3
do i have to use if then else costruct instead of switch?
thanks
mark
comparison
I wanted to compare to a renage of values...
Point position = Mouse.GetPosition(Listview1 );
switch (position.X)
case < 150:
//column 1
case < 450:
//column2
case else:
//column3
do i have to use if then else costruct instead of switch?
thanks
mark