B
Bob
If you enter something other than a number , I want a message box to
apperar:
MsgBox "You Must enter a number from 0-100", vbApplicationModal +
vbInformation + vbOKOnly
Thanks for any help with this.......Bob
Private Sub tbOwnerPercent_AfterUpdate()
If Len([tbOwnerPercent]) = 0 Then
Exit Sub
End If
tbOwnerPercent.value = CSng(val(tbOwnerPercent.value) / 100)
End Sub
apperar:
MsgBox "You Must enter a number from 0-100", vbApplicationModal +
vbInformation + vbOKOnly
Thanks for any help with this.......Bob
Private Sub tbOwnerPercent_AfterUpdate()
If Len([tbOwnerPercent]) = 0 Then
Exit Sub
End If
tbOwnerPercent.value = CSng(val(tbOwnerPercent.value) / 100)
End Sub