Hi,
When you have the following setup :
Select A
case A1
case A2
select B
case B1
case B2
end select
case A3
case else
end select
When you have A3 as condition , it will always go to the "case else" statement of the first select.
After some testing, the reason looks to be the nested case in A2, because if you place the "case A3" statement before the nested select than it works OK.
So..This works :
Select A
case A1
case A3 <---- Moved statement before next nested statement
case A2
select B
case B1
case B2
end select
case else
end select
Kind Regards,
Wim
When you have the following setup :
Select A
case A1
case A2
select B
case B1
case B2
end select
case A3
case else
end select
When you have A3 as condition , it will always go to the "case else" statement of the first select.
After some testing, the reason looks to be the nested case in A2, because if you place the "case A3" statement before the nested select than it works OK.
So..This works :
Select A
case A1
case A3 <---- Moved statement before next nested statement
case A2
select B
case B1
case B2
end select
case else
end select
Kind Regards,
Wim