;Autor: Fluid Byte EnableExplicit Define EventID If OpenWindow(0,0,0,500,400,"Window",#PB_Window_SystemMenu|#PB_Window_ScreenCentered) If CreateToolBar(1,WindowID(0)) ToolBarStandardButton(0,#PB_ToolBarIcon_New) ToolBarStandardButton(1,#PB_ToolBarIcon_Open) ToolBarStandardButton(2,#PB_ToolBarIcon_Save) SendMessage_(ToolBarID(1),#TB_SETBUTTONSIZE,0,64 | 16 << 16) SendMessage_(ToolBarID(1),#TB_AUTOSIZE,0,0) EndIf Repeat EventID=WaitWindowEvent() If EventID = #PB_Event_CloseWindow End EndIf ForEver EndIf