When tabbing through gadgets with XP skins disabled, I get visual confirmation that gadget focus has changed. With XP skins enabled, the ButtonGadgets seem lifeless with no visual change?
In addition to that, using the ampersand(&) in the ButtonGadget text, for underlining an associated accelerator key, doesn't seem to work with XP skins enabled.
Who amongst this great group will guide me to my sanity?
Code: Select all
If OpenWindow(0, 100, 100, 220, 170, #PB_Window_SystemMenu, "Tab Test")
If CreateGadgetList(WindowID(0))
StringGadget(0, 10, 10, 200, 20, "")
StringGadget(1, 10, 40, 200, 20, "")
ButtonGadget(2, 10, 70, 200, 20, "Button&1")
StringGadget(3, 10, 100, 200, 20, "")
ButtonGadget(4, 10, 130, 200, 20, "Button&2")
ActivateGadget(0)
EndIf
EndIf
Repeat
Event = WaitWindowEvent()
Until Event = #PB_Event_CloseWindow
End