redndahead 0 Posted March 10, 2004 Need more help with styles. How do you make radio boxes pushlike? I have tried the $BS_PUSHLIKE and the $BS_PUSHBOX and even tried BitOR'ing these. No luck. Any thoughts? Any luck with trying to get the run option of comboboxes to work while it is hidden? red Share this post Link to post Share on other sites
Valik 478 Posted March 10, 2004 AU3GUIXP example below. Global $BS_PUSHLIKE = 4096 EnvSet("GUI", "title=Test|w=200|h=200") EnvSet("OBJ1", "type=radio|text=Test1|x=5|y=5|w=100|h=20|style=" & $BS_PUSHLIKE) EnvSet("OBJ2", "type=radio|text=Test2|x=5|y=25|w=100|h=20|style=" & $BS_PUSHLIKE) RunWait("au3guixp.exe") Share this post Link to post Share on other sites
redndahead 0 Posted March 10, 2004 I can manipulate the control I just can't get it to use it's run portion. It's easy to work around but it would be nice to not have to. As far as the styles go I am a freaking idiot. I had Style=$BS_PUSHLIKE Instead of Style=' & $BS_PUSHLIKE Thanks guys. red :iamstupid: Share this post Link to post Share on other sites