4.30: IDE crashes when screen recording
Posted: Sat Jan 10, 2009 2:04 pm
Screen recorder:
http://hyperionics.com/downloads/HC1Setup.exe
Start screen recording and compile this code:
The IDE crashes.
http://hyperionics.com/downloads/HC1Setup.exe
Start screen recording and compile this code:
Code: Select all
OpenWindow(0, 0, 0, 512, 384, "", #PB_Window_ScreenCentered | #PB_Window_SystemMenu)
ListIconGadget(0, 10, 10, 400, 300, "Number", 200, #PB_ListIcon_GridLines)
AddGadgetColumn(0, 0, "hash", 150)
For I = 0 To 200
AddGadgetItem(0, -1, Str(I) + #LF$ + MD5Fingerprint(@I, 4))
Next
Repeat
Select WaitWindowEvent()
Case #PB_Event_CloseWindow
Break
EndSelect
ForEver