|
-
Mar 9th, 2008, 09:00 PM
#1
Thread Starter
Lively Member
[RESOLVED] How do we replace boring Bullets with Numbers, like MSWord can?
I currently use boring bullets in my RTB application but I would really love it if I could implement numbered Bullets. IE: 1)
My boring code is as follows:
Code:
Private Sub cmdBullet_Click()
If rtbEditBox.SelBullet = False Then
'Sets the bullet's Indention
rtbEditBox.BulletIndent = 200
'Makes the Bullet Appear
rtbEditBox.SelBullet = True
rtbEditBox.SetFocus
'Remove the Bullet mark
ElseIf rtbEditBox.SelBullet = True Then
'Removes the Bullet
rtbEditBox.SelBullet = False
rtbEditBox.SetFocus
End If
End Sub
Got any clever ideas my fellow geeks?
Much appreciated,
Azeccia
-
Mar 9th, 2008, 09:46 PM
#2
Re: How do we replace boring Bullets with Numbers, like MSWord can?
Waiting for a full featured smart phone with out marrying a provider
Go Android
Go raiders 
-
Mar 9th, 2008, 11:23 PM
#3
Thread Starter
Lively Member
Re: How do we replace boring Bullets with Numbers, like MSWord can?
Thanks for the help.
Any guess on this?
 Originally Posted by isnoend07
Isnoed07,
I checked out IQ Wordpad as you suggested but unfortunately it left me puzzled on a different concern I have developed...
In the IQWordpad it uses cmDlg.Color = Text1.SelColor
But what I need to know is what is the colorsyntax that the cmDlg is sending when a user selects a color?
Or rather, what is the syntax to change a rtb.SelColor?
I already tried rtb.SelColor = Red but to no avail =(
I appreciate all of your time and efforts,
Azeccia
Last edited by Azeccia; Mar 9th, 2008 at 11:29 PM.
-
Mar 9th, 2008, 11:37 PM
#4
Re: How do we replace boring Bullets with Numbers, like MSWord can?
try
rtb.SelColor = vbRed or vbblue
or
rtb.SelColor = RGB(209, 0, 0)
Waiting for a full featured smart phone with out marrying a provider
Go Android
Go raiders 
-
Mar 10th, 2008, 12:11 AM
#5
Thread Starter
Lively Member
Re: How do we replace boring Bullets with Numbers, like MSWord can?
Thank you once again isnoend07 =)
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
|