Results 1 to 6 of 6
  1. #1
    alvaritos's Avatar
    Join Date
    May 2008
    Gender
    male
    Posts
    234
    Reputation
    9
    Thanks
    73
    My Mood
    Amazed

    [Help] Changing Richtextbox's selection color. [solved]

    How I make a Richtextbox change Forecolor ON THE SELECTED TEXT?

  2. #2
    pushdis15's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    spokane washington
    Posts
    923
    Reputation
    20
    Thanks
    170
    My Mood
    Twisted
    beleave this will work

    Code:
    Private Sub button1_Click()
    CommonDialog1.ShowColor
    RichTextBox1.SelColor = CommonDialog1.Color
    End Sub
    ?
    PlayStation ID:
    Boxing509

    Quote Originally Posted by pushdis15
    Women now have choices. They can be married, not married, have a job, not have a job, be married with children, unmarried with children. Men have the same choice we've always had: work, or prison.

  3. #3
    alvaritos's Avatar
    Join Date
    May 2008
    Gender
    male
    Posts
    234
    Reputation
    9
    Thanks
    73
    My Mood
    Amazed
    Nope, all text becames same color

  4. #4
    pushdis15's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    spokane washington
    Posts
    923
    Reputation
    20
    Thanks
    170
    My Mood
    Twisted
    can u make it where just that text is a color? like
    Code:
    richTextBox1.SelectionColor = Color.blue 'or what ever color u want the color of that text
    PlayStation ID:
    Boxing509

    Quote Originally Posted by pushdis15
    Women now have choices. They can be married, not married, have a job, not have a job, be married with children, unmarried with children. Men have the same choice we've always had: work, or prison.

  5. The Following User Says Thank You to pushdis15 For This Useful Post:

    alvaritos (04-22-2011)

  6. #5
    Erinador's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    224
    Reputation
    14
    Thanks
    111
    My Mood
    Bored
    What Pushdid said should work.

  7. #6
    alvaritos's Avatar
    Join Date
    May 2008
    Gender
    male
    Posts
    234
    Reputation
    9
    Thanks
    73
    My Mood
    Amazed
    Okay It works thanks!