Message boxes

Marfun

New member
Local time
Today, 17:26
Joined
Jul 3, 2000
Messages
6
In forms, when you go to the properties of fields, there are the data validation rule and data validation text options. Whatever you type in the validation text, comes up in a message box. What I want to do is change the properties of this particuar box, such as changing the image which appears on it. How may I achieve this?
Waiting eagerly for any answers.
Thanks, Marfun
 
You can create your own pop up form and add it to a before update validation event.
 
try using this in the event:

dim strmsg as string
strmsg="text"

put a if statment here for validation rule
if(strmsg,your icon here + button,"title")=button then
'do something
else
'do something
end if



[This message has been edited by gino (edited 08-07-2000).]
 

Users who are viewing this thread

Back
Top Bottom