0
記入するフォームがあります。記入しなければならないフィールドは記入しないでください。いくつかのことを助けてくださいVBAは、記入していないときに記入フォームを強制的に続けるべきではありません
これはpresedボタンの下にある場合にMe.cbTyreNsf.value = "" その後
MsgBox "You must complete the Wheel Nsf value", vbCritical
Exit Sub
End If
If Me.cbTyreNsR.value = "" Then
MsgBox "You must complete Wheel Nsr value", vbCritical
Exit Sub
End If
the function called
Call CheckifRecordExistOnWheelTable
機能 のSelect Case AVAR ケースのコード "NULL" コールinsertWheel ケースその他 電話updateWheel エンドを選択
と機能
nssf = Me.cbTyreNsf.value
Select Case nssf
Case "0"
MsgBox " Please enter the NSF tyre value", vbCritical
Me.cbTyreNsf.SetFocus
' MsgBox "about to exit"
Exit Sub
Case Else
nsf = CInt(nssf)
End Select
ことにより、任意の助けを呼ばれる関数のコード私は24時間試したすべてのものを数える
私は整数を期待しています – Tim