|
-
Sep 28th, 2000, 07:11 AM
#1
Thread Starter
Frenzied Member
i do i put just a part of a label in bold.
-
Sep 28th, 2000, 07:25 AM
#2
_______
<?>
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.
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Sep 28th, 2000, 07:47 AM
#3
_______
<?>
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
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
-
Sep 28th, 2000, 07:53 AM
#4
Thread Starter
Frenzied Member
ahhhhhhhhhhhhh
that's a good idea,ISaidSebs
thanx a lot HeSaidJoe
-
Sep 28th, 2000, 08:11 AM
#5
_______
"A myth is not the succession of individual images,
but an integerated meaningful entity,
reflecting a distinct aspect of the real world."
___ Adolf Jensen
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|