[Done] Certain gadgets dinging PB4.1b3

Post bugreports for the Windows version here
Derek
Addict
Addict
Posts: 2356
Joined: Wed Apr 07, 2004 12:51 am
Location: England

[Done] Certain gadgets dinging PB4.1b3

Post by Derek »

Under Vista Business x86 (at least, maybe others)

Clicking on either the listicongadget or the explorerlistgadget and then moving using the cursor keys causes a ding sound after each keypress.

Seems to be limited to certain os'es though.

Code: Select all

OpenWindow(0, 0, 0, 240, 380, "Test", $ca0001) 
CreateGadgetList(WindowID(0))
 
ListIconGadget(1, 10, 10, 210, 80, "Col1", 100) 
AddGadgetItem(1, -1, "Row1") 
AddGadgetItem(1, -1, "Row2") 

StringGadget(2,10,100,210,20,"Test")

ListViewGadget(3,10,130,210,80)
AddGadgetItem(3, -1, "Row1")
AddGadgetItem(3, -1, "Row2") 

ExplorerListGadget(4,10,220,210,120,"c:")

Repeat 
Until WaitWindowEvent()=16
maw

Post by maw »

I just want to add that if you have an ListIconGadget on a PanelGadget just clicking on an item with the mouse will cause plinging on some machines (my friends Vista Business x86 for example). Using the cursor keys seems to pling on all tested versions of Vista.

Code: Select all

OpenWindow(0, 0, 0, 320, 240, "Test", #PB_Window_ScreenCentered|#PB_Window_SystemMenu)
CreateGadgetList(WindowID(0))
ListIconGadget(1, 20, 140, 200, 80, "Col1", 100, #PB_ListIcon_FullRowSelect)
AddGadgetItem(1, -1, "Row1")
PanelGadget(2, 10, 10, 300, 120)
AddGadgetItem(2, -1, "Tab1")
ListIconGadget(3, 10, 10, 200, 80, "Col1", 100, #PB_ListIcon_FullRowSelect)
AddGadgetItem(3, -1, "Row1")
CloseGadgetList()

Repeat
   Select WaitWindowEvent()
      Case #PB_Event_CloseWindow
         Break
   EndSelect
ForEver 
Derek
Addict
Addict
Posts: 2356
Joined: Wed Apr 07, 2004 12:51 am
Location: England

Post by Derek »

@maw, I know you found the bug, just thought I'd post it and try to get it looked at. :wink:
maw

Post by maw »

Oh, I'm very greatful you did that so I didn't have to :lol:
Fred
Administrator
Administrator
Posts: 16619
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: Certain gadgets dinging PB4.1b3

Post by Fred »

I can't reproduce it here and we don't do any sounds, so it seems to be an OS specific stuff. Can anybody else confirm ?
Post Reply