Jump to content

Recommended Posts

Posted

Hi,

I am using $WS_EX_WINDOWEDGE for some tabs, however it doesn't work for buttons. Is there a similar function for buttons? I am using the below code:

$var= GuiCtrlCreateButton ($test, 18, 168, 110, 20, $WS_EX_WINDOWEDGE)

Posted (edited)

Hmm, that doesn't look like the tabs. Any other suggestions?

Edit; both don't look like the tabs.

Edited by Tagor
Posted

Test this code....

#include <GUIConstants.au3>

GUICreate("",300,60)
GUICtrlCreateCheckBox("What did you say ? It didn't work...? Hah !",10,10,280,40,$BS_PUSHLIKE)
GUISetState()

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Posted (edited)

Works for me... but I have XP's ugly theme disabled...

Edit: Here's the code

#include <GUIConstants.au3>
GUICreate("",300,60)

GUICtrlCreateRadio("Works for me...",10,10,100,40,$BS_PUSHLIKE)
GUICtrlCreateRadio("Works for me...",120,10,100,40,$BS_PUSHLIKE)

GUISetState()
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
Edited by CyberSlug
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Posted (edited)

Compare the first image with this image :D

<{POST_SNAPBACK}>

This is not a standard XP style.

You are adding styles to the gui to achieve this look, or you have adjust the setting of your themes on your OS. :)

My windows have rounded corners. Yours are not. Adjusted styles may affect the outcome, of your gui.

Edited by MHz

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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...