private void PickedStartAction() { switch (tabIndex) { case 0: if (holdLeft == true) { mouse.HoldLeft(); // comes fromMouse operations } else if (holdLeftAndRight == true) { mouse.HoldLeftAndRight(); // comes fromMouse operations } break; case 2: if (singleLeft == true) { start = true; SingleLeftWithLoop(); // comes from region below } else if (singleRight == true) { start = true; SingleLeftPlusShift(); // comes from region below } break; //case 1: //case 3: // msg.SelectTab(); // break; } }