Thank you.
EggHeadCafe - Software Developer Portal of Choice
Screenscrape Realtime Quotes with Regex and XML
http://www.eggheadcafe.com/tutorials/aspnet/a242f7bc-6dfb-465c-8ff0-6f63b4fbf718/screenscrape-realtime-quo.aspx
You can't format a text control with a single border on the bottom,
but did you try placing a line (using the line control) at the bottom
edge of the text control sized to the width of the control?
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
If that doesn't work, just a little code gives you a lot of functionality.
Select every control you want underlined and enter UL in the tag properties.
You can do this simultaneously. Then add some code to the On Format event of
the section containing the controls:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim ctl As Control
Dim intLess As Integer
intLess = 50 'allows you to make the line a _
little shorter than the width of the text box
For Each ctl In Me.Controls
If ctl.Tag = "UL" Then
Me.Line (ctl.Left, ctl.Top + ctl.Height)-Step(ctl.Width -
intLess, 0)
End If
Next
End Sub
If you want, you can set the format, color, or thickness of the line.
--
Duane Hookom
Microsoft Access MVP