Web Browser: Edge
SpiderBasic: 2.31
Code: Select all
If OpenWindow(0, 0, 0, 200, 250, "DateGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
DateGadget(0, 10, 10, 180, 25, "%yyyy-%mm-%dd") ; Show 2013-07-10 , Correct.
DateGadget(1, 10, 10+25+10, 180, 25, "%yyyy-%mm-%dd %hh:%mm:%ss") ; Show 2023-07-10 %12:07:%00, wrong .
DateGadget(2, 10, 10+25+10+25+10, 180, 25, "%yyyy-%mm-%dd %hh:%ii:%ss") ;When add this and run, it move the x,y to 0,0 and text is not appear .
EndIf

// Moved from "Bugs Reports" to "Coding Questions" (Peter)