Thread: Button Problem

Results 1 to 3 of 3
  1. #1
    Sonxr's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    0
    My Mood
    Paranoid

    Button Problem

    Im having issues with some GUI in my application. I made it so that when I click a button, it changes the background color AND the text. I was able to make the background change in the properties but had to make code for the text color, when its activated.

    Private Sub BunifuFlatButton2_Click_1(sender As Object, e As EventArgs) Handles BunifuFlatButton2.Click
    BunifuFlatButton2.Textcolor = Color.FromArgb(30, 33, 36)
    BunifuFlatButton3.Textcolor = Color.FromArgb(231, 234, 234)
    MEMAPI.WriteByte(MEMAPI.GameStart + OFFSET_UI, 1)
    End Sub

    Private Sub BunifuFlatButton3_Click_1(sender As Object, e As EventArgs) Handles BunifuFlatButton3.Click
    BunifuFlatButton3.Textcolor = Color.FromArgb(30, 33, 36)
    BunifuFlatButton2.Textcolor = Color.FromArgb(231, 234, 234)
    MEMAPI.WriteByte(MEMAPI.GameStart + OFFSET_UI, 0)
    End Sub


    The issue is when I click another button on the same panel, it forgets that I pressed that button (only visually) and it doesn't stay with the colors I made it to, as you can see with the Gyazo.






    https://gyazo.com/e8faba5b59be8416aeaa9e730d955f76

  2. #2
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    The background color of the button only changes because it has the focus. Set the background color in your click events

  3. The Following User Says Thank You to Biesi For This Useful Post:

    Sonxr (07-11-2017)

  4. #3
    qEnigma's Avatar
    Join Date
    Dec 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    9
    My Mood
    Psychedelic
    You need to change the OnMouseClick color

Similar Threads

  1. [Help] Button problem...
    By Pepsi- in forum Call of Duty Modern Warfare 3 Coding, Programming & Source Code
    Replies: 5
    Last Post: 03-31-2013, 09:31 PM
  2. [Problem] The Dislike button on Facebook
    By Loouis in forum General
    Replies: 17
    Last Post: 06-14-2012, 09:46 AM
  3. Console/Trainer Greyed out button problem.
    By Corntoast in forum Vindictus Discussions
    Replies: 3
    Last Post: 02-19-2011, 09:47 PM
  4. ~ button problem
    By woodz in forum Call of Duty Modern Warfare Help
    Replies: 4
    Last Post: 09-04-2010, 09:06 AM
  5. text on a button in vb6 problem
    By 123456789987654321 in forum WarRock - International Hacks
    Replies: 2
    Last Post: 06-09-2007, 08:12 AM