How to highlight a highlighted word in a Microsoft Access tag header?
If this helps, the text itself is saved in the Microsoft Access table.
The following is an example. I have a Microsoft Access form with a label, in the event Form_Load()I set the caption property of this shortcut to the value returned in the DLookup request, for example:
Private Sub Form_Load()
Me.Label0.Caption = DLookup("Field1", "Table1", "[ID] = 1")
End Sub
My text is as follows:
Fast brown fox jumps over a lazy dog
I want to raise the word Lazy . Is it possible? If so, how to do it?
thank
source
share