A
Arvi Laanemets
Hi
MS Help does say:
"You set the ControlTipText property by using a string expression up to 255
characters long."
But in Properties window, I can enter only string, not a string expression?
To be more specific, I need this propertie for textbox on contionous form to
be set to
=Iif(HiddenFieldValue=0;""; "Difference: " & HiddenFieldValue)
, so when I hold the mouse pointer over the control, and the value,
calculated in field HiddenFieldValue for this row is not 0, a proper message
is displayed. (All rows where HiddenFieldValue<>0, are also colored by
conditional formatting, but I want to give additional information about how
big and with which sign the difference is.)
With single form, I can use VBA for this, but I think it doesn't work with
contionous forms in a way I want - the tip text depends on active row and is
same for all rows.
Thanks in advance for any help
Arvi Laanemets
MS Help does say:
"You set the ControlTipText property by using a string expression up to 255
characters long."
But in Properties window, I can enter only string, not a string expression?
To be more specific, I need this propertie for textbox on contionous form to
be set to
=Iif(HiddenFieldValue=0;""; "Difference: " & HiddenFieldValue)
, so when I hold the mouse pointer over the control, and the value,
calculated in field HiddenFieldValue for this row is not 0, a proper message
is displayed. (All rows where HiddenFieldValue<>0, are also colored by
conditional formatting, but I want to give additional information about how
big and with which sign the difference is.)
With single form, I can use VBA for this, but I think it doesn't work with
contionous forms in a way I want - the tip text depends on active row and is
same for all rows.
Thanks in advance for any help
Arvi Laanemets