can some of the words in HelpProvider string be made bold ??
also how can i insert a line break in it ??
are these things possible ??
Printable View
can some of the words in HelpProvider string be made bold ??
also how can i insert a line break in it ??
are these things possible ??
for a line break you can use chr(10) or chr(13) in your string something like:
VB Code:
HelpProvider1.SetHelpString(Button1, "THIS" & Chr(13) & "THAT")
Any idea about the bold thingie ??