vCbbAdvMLoc, vCbbAdvSLoc 두 개의 콤보박스가 있고
콤보박스 vCbbAdvMLoc에서 1~5일 경우, vCbbAdvSLoc은? 1|2|3|4|5|6 의 값을
6~10일 경우, vCbbAdvSLoc은? 1|2|3|4|5|6|7|8의 값을
11~15일 경우, vCbbAdvSLoc 1|2|3|4|5|6|7|8|9|10의 값을 가지게 하고 싶습니다.
아래처럼 코드를 짰는데 작동되지 않네요.
제가 프로그램을 제대로 이해하지 못한것 같은데 수정좀 부탁드립니다.
Gui, Add, ComboBox, x130 y100 w40 Choose1 vCbbAdvMLoc, 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15??
Gui, Add, ComboBox, x170 y100 w40 vCbbAdvSLoc, %AdvSloc%
-------------------------------------------------------------------
if (vCbbAdvMLoc > 0) and (vCbbAdvMLoc < 6)
{
%AdvSloc% = 1|2|3|4|5|6
return
}
else if (vCbbAdvMLoc > 5) and (vCbbAdvMLoc < 11)
{
%AdvSloc% = 1|2|3|4|5|6|7|8
return
}
else if (vCbbAdvMLoc > 10)
{
%AdvSloc% = 1|2|3|4|5|6|7|8|9|10
return
}