View Full Version : Message boxes


Marfun
08-01-2000, 06:35 PM
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

stimpy
08-02-2000, 10:05 PM
This cant be done can it

Richie
08-03-2000, 08:43 AM
You can create your own pop up form and add it to a before update validation event.

gino
08-07-2000, 04:25 PM
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).]