Appologises for this newbe question:
I need to create windows and gadgets dynamically. Why am I getting giant ID-numbers? Shouldn't they start on, like, zero or something and then increase by one at a time?
If I keep on creating a few gadgets PB throws a warning: "Do you really want to use this big gadget number!".
Using PB ver. 4.51 and WinXP.
I have restarted my computer, running "no" other apps in the background.
Code: Select all
EnableExplicit
Debug OpenWindow(#PB_Any, 0, 0, 99, 99, "Test Dynamic WindowNumber")
;"Why am I getting such a high window_number 3.943.872 ?"
End