シートのVBAコード
下記のVBAコードを追加してください。
'問題4 答えのチェック
Private Function Ex4AnswerCheck() As Boolean
Dim s1 As String
Dim ln As Long
Ex4AnswerCheck = False
On Error GoTo ErrExit:
'数値のチェック
ln = Range("B14") + Range("B15") + Range("B16")
If ln = Range("B17") Then
'計算式を取得
s1 = Range("B17").Formula
'「$」を取り除く
ExReplaceStr s1, "$", ""
'「B14」と「B16] と 「SUM」があれば正解とする
If InStr(s1, "B14") > 0 And InStr(s1, "B16") > 0 And InStr(s1, "SUM") > 0 Then
Ex4AnswerCheck = True
End If
End If
Exit Function
ErrExit:
End Function
下記のVBAコードに変更してください。
'出来たボタン
Private Sub CommandButton2_Click()
Dim bret As Boolean
'終了フラッグ
endFlag = True
DoEvents
Select Case ComboBox1.ListIndex
Case 0: bret = Ex1AnswerCheck '問題1
Case 1: bret = Ex2AnswerCheck '問題2
Case 2: bret = Ex3AnswerCheck '問題3
Case 3: bret = Ex4AnswerCheck '問題4
End Select
If bret Then
Label6.ForeColor = &H8000&
Label6.Caption = "正解です。よくできました。"
'次の問題を表示する
If ComboBox1.ListCount - 1 > ComboBox1.ListIndex Then
'ComboBox1.ListIndex = ComboBox1.ListIndex + 1
CommandButton3.Caption = "次の問題"
Else
'問題は終了
MsgBox "正解です。よくできました。" & vbCrLf & "問題はこれで終了です。お疲れ様でした。"
ComboBox1.ListIndex = 0
Label4.Caption = ComboBox1.Column(1)
Label2.Caption = ""
Label6.Caption = ""
CommandButton3.Caption = "始める"
End If
Else
CommandButton3.Caption = "やり直す"
Label6.ForeColor = vbRed
Label6.Caption = "間違っています。"
End If
'経過時間をリセット
Label1.Caption = 0
Label3.Caption = "開始ステップを選択し、「始める」ボタンをクリックしてください。"
ComboBox1.Enabled = True
CommandButton1.Enabled = False
CommandButton2.Enabled = False
CommandButton3.Enabled = True
End Sub
'開始ボタン
Private Sub CommandButton3_Click()
If CommandButton3.Caption <> "始める" And Label6.Caption <> "間違っています。" And Label6.Caption <> "時間切れです!!" Then
If ComboBox1.ListCount - 1 > ComboBox1.ListIndex Then
ComboBox1.ListIndex = ComboBox1.ListIndex + 1
Else
'問題は終了
ComboBox1.ListIndex = 0
MsgBox "問題はこれで終了です。お疲れ様でした。"
CommandButton3.Caption = "始める"
End If
Label4.Caption = ComboBox1.Column(1)
End If
Label6.Caption = ""
CommandButton1.Enabled = True
CommandButton2.Enabled = True
CommandButton3.Enabled = False
ComboBox1.Enabled = False
'終了フラッグをリセット
endFlag = False
Label3.Caption = "ワークシート上で、課題を実行してください。"
Select Case ComboBox1.ListIndex
Case 0: '問題1
Label2.Caption = "[ B10 ] セルに [ 125 ] と入力してください。"
ExDoexercise (20)
Case 1: '問題2
Label2.Caption = "[ D3 ] セルに [ 地球にやさしい ] と入力してください。"
ExDoexercise (10)
Case 2: '問題3
Range("B10") = 125
Label2.Caption = "[ B11 ] セルに セル[ B10 ]に56をプラスする計算式を入力してください。"
ExDoexercise (15)
Case 3: '問題4
Range("B14") = 15
Range("B15") = 112
Range("B16") = 7251
Label2.Caption = "[ B14~B16 ]の合計を関数を使用し、[ B17 ] セル入力してください。"
ExDoexercise (15)
End Select
Label3.Caption = "開始ステップを選択し、「始める」ボタンをクリックしてください。"
ComboBox1.Enabled = True
CommandButton1.Enabled = False
CommandButton2.Enabled = False
CommandButton3.Enabled = True
End Sub
実行中の画面
■問題4 [ B14~B16 ]の合計を関数を使用し、[ B17 ] セル入力してください。
■正解画面 B17には 「=SUM(B14:B16)」が入力されています。 正解です。