gusbrunston
Programmer
Hi. I've searched for this with no luck.
Some of the records in a table have a comment entered in a control...many do not. I'd like to put an icon (like the paper clip that shows there is an attachment to an email in Outlook Express) in the single rows in a continuous record subform when the record does have a comment. Or, if I could use this face as an example:
So the face (or, preferably a little icon of a paper clip) indicates that the fourth record in the list has a comment in the "txtComment" control for that record, and needs attention from some user passing by.
I tried some code like this:
That got me an error message that it was an improper use of the function "Visible".
Pardner, I'd sure appreciate some help on this one...
Gus Brunston An old PICKer, using Access2000. Celebrating this year my 72nd birthday and my 50th wedding anniversary.
padregus@attbi.com
Some of the records in a table have a comment entered in a control...many do not. I'd like to put an icon (like the paper clip that shows there is an attachment to an email in Outlook Express) in the single rows in a continuous record subform when the record does have a comment. Or, if I could use this face as an example:
Code:
12/03/2001 119.50 86.00 2.00
12/04/2001 16.50 0.00 175.00
12/05/2001 500.00 100.00 200.00
:-I 12/05/2001 250.00 75.00 1,280.00
12/07/2001 23.50 45.00 650.00
12/15/2001 95.00 16.00 950.00
So the face (or, preferably a little icon of a paper clip) indicates that the fourth record in the list has a comment in the "txtComment" control for that record, and needs attention from some user passing by.
I tried some code like this:
Code:
' imageClip is an image control
Code:
If IsNull(Me.txtComment) Then
Me.imageClip.Visible = False
Else
Me.imageClip.Visible = True
End if
That got me an error message that it was an improper use of the function "Visible".
Pardner, I'd sure appreciate some help on this one...
Gus Brunston An old PICKer, using Access2000. Celebrating this year my 72nd birthday and my 50th wedding anniversary.
padregus@attbi.com