IonicWind Software

Aurora Compiler => GUI => Topic started by: Bruce Peaslee on January 09, 2006, 09:27:08 PM

Title: Maximum Number of Child Windows
Post by: Bruce Peaslee on January 09, 2006, 09:27:08 PM
I plan on having over 100 child windows in my main window as part of my project. Placing them is a painstaking manual task. As I get up to about ten, no problem; but if I go any higher, the program acts up. Is there any limit to the number of child windows the main window can have?
Title: Re: Maximum Number of Child Windows
Post by: Zen on January 10, 2006, 05:41:55 AM
In IBasic i managed to open about 70. How are you storing your windows? If you store them in a linked list, a linked list of variables to you window class that is. You should be ok. I dont think there is a limit as such to the number of child windows you can open.

Another thing is maybe if they are all open at the same time on initialization of your program, it could be your computer having trouble.

Lewis
Title: Re: Maximum Number of Child Windows
Post by: Parker on January 10, 2006, 01:49:10 PM
The only limitation should be windows. Could you describe the problem in more detail, or post some code that demonstrates the problem?
Title: Re: Maximum Number of Child Windows
Post by: Bruce Peaslee on January 10, 2006, 02:32:47 PM
Quote from: Parker on January 10, 2006, 01:49:10 PM
The only limitation should be windows. Could you describe the problem in more detail, or post some code that demonstrates the problem?
I replaced them with static controls - as a test - and it runs OK. I must have a logic problem somewhere. I'll putter around some more first.