If I wanted to make one label that includes some text and pulls in a data field, like this (see image) is there a way I can have just the text “Data Title: “ appear in BOLD?
"Data Title: " & Gallery1.Selected.'OTHER SPECIFICATIONS'
In this example, I would like Data Title: to appear in bold... any suggestions please?
Thank you,
🙂
If you use an HTML text control rather than a label control, you can set just "data title" to bold by setting the HTMLText property to the following:
"<b>Data Title: </b>" & Gallery1.Selected.'OTHER SPECIFICATIONS'