Verfasst: 12.09.2005 21:41
Die beiden Gadgets überschneiden sich doch !?
Das deutsche PureBasic-Forum
https://www.purebasic.fr/german/
Code: Alles auswählen
OpenWindow(0,0,0,155,228,#PB_Window_SystemMenu|#PB_Window_MinimizeGadget,"")
CreateGadgetList(WindowID())
CreateImage(123,107,157)
StartDrawing(ImageOutput())
Box(0,0,107,157,RGB(0,0,0) )
StopDrawing()
ImageGadget(123, 5, 5,107,157, ImageID())
ListIconGadget(500,10,10,130,160,"",110)
AddGadgetItem(500,-1,"bla")
Repeat
EventID = WaitWindowEvent()
If EventID=#PB_Event_CloseWindow:End:EndIf
ForEver