30-05-2008, 06:35 PM
How would you make a check box invisible or at least where it doesnt have a lil grey ring around it. i want it to have the same background as the forms pic.
Check box
|
30-05-2008, 06:35 PM
How would you make a check box invisible or at least where it doesnt have a lil grey ring around it. i want it to have the same background as the forms pic.
30-05-2008, 06:44 PM
I think that you can change it from being 3D to being flat and that takes away the border?
30-05-2008, 07:04 PM
well could you tell me how to make a custom control, or which ever one is easier.
30-05-2008, 07:08 PM
ok, oh boy this should be fun.
30-05-2008, 07:36 PM
Or jsut.. use something else.
Just make a Checkbox in Photoshop/Paint and use that as an Image attached to a variable, or even jsut visibility.
30-05-2008, 08:42 PM
Make a check box in photoshop (or something) and make it fit in with your GUI. Then, in the code, when a user clicks on the checkbox, load up a second image of the checked checkbox. You could also make it invisible this way and add cool things, such as hover affects...
30-05-2008, 08:55 PM
i didnt think of that XD. ill do that. but whats a hover effect lol.
30-05-2008, 09:01 PM
It's an event for objects. Make a picture box the size of your checkbox you made and in Sub Main() have it set the picture depending on the variable and then double click the picture box and click the drop down box and select MouseDown or MouseOver and try experimenting with those.
30-05-2008, 09:09 PM
hmmm so like if mouse over then load the picbox with like a gray check a couple pixels above where the real one will go. then if click or mouse down then load the real black check.
30-05-2008, 09:53 PM
If you hover over a button, it lights up. If you click it, it gets gray. If you release(after clicking), it changes to maybe a different color. YOu can apply these to anything (such as a checkbox).
30-05-2008, 10:06 PM
Just grab the color of your gui, and put that color as the check boxes bkg color.
31-05-2008, 01:08 AM
Another alternative:
When the form loads the check boxes add this: Check1.Height = 0 Check1.Width = Check1.Height Also make the check box flat rather than 3d. Then use a label set to transparent. *Note: This is just another method not the best.
31-05-2008, 02:45 AM
ok thanks you guys i think im just goin to go with the pic boxes that way i can add stuff to it. thanks for the help
|
« Next Oldest | Next Newest »
|