Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Changing background color for lists and textboxes? [Coded GUI]


Alpha
 Share

Recommended Posts

I seem to be having a bit of a problem here, I can't change the background color of lists and textboxes. Any help?

More specifically the "Who's Online", the "Spells", and the two chatboxes.

I can change the background color of everything else though..
It's a coded GUI..
-Alpha
Link to comment
Share on other sites

Um… open it in visual basic.... click on the object  I.E. lstWhosOnline and go to the right side of the screen where your properties list is... scroll till you find the property Background Color or w/e and click that and a pop up with colors will show up.
Link to comment
Share on other sites

Ah. Ok. I remember now. Cus i changed the color on one of my old projects so I knew it was easy.

All you had to do is search the project for "lstOnline.BackColor" and it takes you right to the problem…
```
frmMirage.lstOnline.BackColor = RGB(R1, G1, B1)
```It's in sub LoadColors in modGeneral.

Just comment that out and it'll let you change the color manually.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...