M
mezzanine1974
Say that there is a table T_PERSONAL [Name (text), Surname (text),
Salary (integer)].
I created a Tabular Form (F_PERSONAL) which retrieves information
from
T_PERSONAL.
I want to put a image for a specific record on the form, if the
record
satisfy some specific criteria. For other record which does not
satisfy the criteria, image should be invisible.
Say that, if [Name (text)] ~text13~ is "ALBERT", Image Object
~Image13~ should be visible. I dont suppose that Image Object should
be included in T_PERSONAL. It will be inserted manualy during design
stage of Tabular Form.
I would not ask this question, if access would enable me to apply
Conditional Formatting for Image Objects, which we insert manually.
Do we need to write such code?
If Form_F_PERSONAL.text13.Value = "ALBERT" Then
Form_F_PERSONAL.Image13.Visible = False
If so, please tell me to which event i should insert? If not, what is
the way to solve this problem please ?
Salary (integer)].
I created a Tabular Form (F_PERSONAL) which retrieves information
from
T_PERSONAL.
I want to put a image for a specific record on the form, if the
record
satisfy some specific criteria. For other record which does not
satisfy the criteria, image should be invisible.
Say that, if [Name (text)] ~text13~ is "ALBERT", Image Object
~Image13~ should be visible. I dont suppose that Image Object should
be included in T_PERSONAL. It will be inserted manualy during design
stage of Tabular Form.
I would not ask this question, if access would enable me to apply
Conditional Formatting for Image Objects, which we insert manually.
Do we need to write such code?
If Form_F_PERSONAL.text13.Value = "ALBERT" Then
Form_F_PERSONAL.Image13.Visible = False
If so, please tell me to which event i should insert? If not, what is
the way to solve this problem please ?