代码搜索:MsgBox
找到约 3,543 项符合「MsgBox」的源代码
代码结果 3,543
www.eeworm.com/read/230581/14281159
ats if.ats
Section Main
Var @a as AtsInt
@a = 3
if @a == 2 then
msgbox "2"
elseif @a == 3 then
msgbox "3"
else
msgbox "other"
end if
End Section
www.eeworm.com/read/127056/14383473
vbs task_a.vbs
sub btnOK_OnClick()
'' 任务标题
if Trim(formTask.subject.value) = "" then
msgbox "对不起,请输入任务标题!"
formTask.subject.focus()
exit sub
end if
if len(formTask.content.value) > 3000 then
ms