strikethrough the textbox in access

D

Duane Hookom

You can use the Line method in code. For instance if you want to draw a line
through the order date text box on a report for records where the :
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Me.ForeColor = vbRed
If Me.OrderDate < #1/1/1997# Then
Me.Line (Me.OrderDate.Left, _
Me.OrderDate.Top + 0.5 * Me.OrderDate.Height) _
-Step(Me.OrderDate.Width, 0)
End If
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top