MsgBoxÀÇ ¹öÆ° À̸§ ¹Ù²Ù±â

´ÙÀ½Àº ŸÀ̸Ӹ¦ »ç¿ëÇÏ¿© MsgBox ´ëÈ­»óÀÚÀÇ ¹öÆ° À̸§À» ¹Ù²Ù´Â ¿¹Á¦ÀÔ´Ï´Ù. ¹öÆ° À̸§Àº ¹Ù²î´õ¶óµµ, IfMsgBox ¸í·É¾î´Â ¿©ÀüÈ÷ ¹öÆ°ÀÌ ±×ÀÇ ¿ø·¡ À̸§À¸·Î ÂüÁ¶µÇ±â¸¦ ¿ä±¸ÇÕ´Ï´Ù.

ÀÌ ½ºÅ©¸³Æ® ³»·Á¹Þ±â  |  ´Ù¸¥ »ùÇà ½ºÅ©¸³Æ®  |  È¨À¸·Î

#SingleInstance
SetTimer, ChangeButtonNames, 50 
MsgBox, 4, Add or Delete, Choose a button:
IfMsgBox, YES 
    MsgBox, You chose Add. 
else 
    MsgBox, You chose Delete. 
return 

ChangeButtonNames: 
IfWinNotExist, Add or Delete
    return  ; °è¼Ó ´ë±â.
SetTimer, ChangeButtonNames, off 
WinActivate 
ControlSetText, Button1, &Add 
ControlSetText, Button2, &Delete 
return