IS there a way to use the table field description for Forms. So that instead of the field name it shows the field description, like say for a survey or something ?
Why you want to do this is a mystery, but I guess you have your reasons.
Might I suggest [blue]enumerating thru the textboxes and setting the ControlTipText[/blue]. To accomplish this, add a question mark [purple]?[/purple] to the [blue]Tag[/blue] property of all textboxes of interest. Then in the [blue]Load[/blue] event of the form:
Code:
[blue] Dim ctl As Control
On Error Resume Next
For Each ctl In Me.Controls
If ctl.Tag = "?" Then
ctl.ControlTipText = CurrentDb.TableDefs("TableName").Fields(ctl.Name).Properties("Description")
End If
Next
On Error GoTo 0[/blue]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.