VBScriptエラーのエラーである"'Select' がありません。"の原因と対処に関して説明します。
エラーメッセージ:
'Select' がありません。
エラーメッセージ(英語):
Expected 'Select'
スポンサード リンク
エラーコード:
1022
エラー原因:
select 〜 end select の終了を表すEnd selectにおいて、selectが見つかりませんでした。
【誤】
x=2
Select Case x
Case 1
MsgBox "値は1"
Case 2
MsgBox "値は2"
Case 3
MsgBox "値は3"
Case Else
MsgBox "値は1,2,3以外"
End
【正】
x=2
Select Case x
Case 1
MsgBox "値は1"
Case 2
MsgBox "値は2"
Case 3
MsgBox "値は3"
Case Else
MsgBox "値は1,2,3以外"
End select
スポンサード リンク
対処:
select 〜 end selectは、end selectで終了します。
スポンサード リンク