i do i put just a part of a label in bold.
Printable View
i do i put just a part of a label in bold.
You don't.
It's either Label1.FontBold = True
or
Label1.FontBold = False
You could use text as an image and display it as an image
from some other control.
Code:'here is another walk around
'add 3 labels to a form Label1,Label2,Label3
'run it
Private Sub Form_Load()
Label1.AutoSize = True
Label2.AutoSize = True
Label3.AutoSize = True
Label2.FontBold = True
Label1.Caption = "Please "
Label2.Caption = "help me out "
Label3.Caption = "will you?"
Label1.Left = 100
Label2.Left = 100 + Label1.Width
Label3.Left = 100 + Label1.Width + Label2.Width
End Sub
that's a good idea,ISaidSebs
thanx a lot HeSaidJoe
ISaidSeb :D :D :D