J jman_66 New member Local time Today, 23:26 Joined May 3, 2001 Messages 5 May 16, 2001 #1 I need a pop up box to come up after every tenth input into a field??
C charityg Registered User. Local time Today, 23:26 Joined Apr 17, 2001 Messages 634 May 16, 2001 #2 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
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