krishnanhemanth
Registered User.
- Local time
- Tomorrow, 01:48
- Joined
- Jun 12, 2009
- Messages
- 115
hi everybody
i have a textbox "QTYSUPPLIED"
on CHANGE event i have code
MsgBox "PLEASE CHANGE THE UPDATED VALUE IN THE FORM VENDOR MATERIAL INSPECTION"
its working fine
but the problem is
for every number i change the message keeps popping
for example...i need to change 100 to 253
what it does is
i change the 1 to 2...the message pops
i change the 0 to 5---the message pops up
i change the 0 to 3----the message pops up
i want only 1 message after the textbox is completely updated
i tried this ...
on change event
if me.qtysupplied.onlostfocus then
MsgBox "PLEASE CHANGE THE UPDATED VALUE IN THE FORM VENDOR MATERIAL INSPECTION"
end if
end sub
its giving an error Type mismatch (Error 13)
please help
i have a textbox "QTYSUPPLIED"
on CHANGE event i have code
MsgBox "PLEASE CHANGE THE UPDATED VALUE IN THE FORM VENDOR MATERIAL INSPECTION"
its working fine
but the problem is
for every number i change the message keeps popping
for example...i need to change 100 to 253
what it does is
i change the 1 to 2...the message pops
i change the 0 to 5---the message pops up
i change the 0 to 3----the message pops up
i want only 1 message after the textbox is completely updated
i tried this ...
on change event
if me.qtysupplied.onlostfocus then
MsgBox "PLEASE CHANGE THE UPDATED VALUE IN THE FORM VENDOR MATERIAL INSPECTION"
end if
end sub
its giving an error Type mismatch (Error 13)
please help