Pop Up Box

jman_66

New member
Local time
Today, 23:26
Joined
May 3, 2001
Messages
5
I need a pop up box to come up after every tenth input into a field??
 
on current
dim remainder as integer
dim record as long
record=me.currentrecord
remainder=record Mod 10
IF remainder=0 then 'This is a multiple of 10
Whatever your popup box is...msgbox, inputbox, openform...
end if
 

Users who are viewing this thread

Back
Top Bottom