> Really? That is a surprise...
> I was just testing this version of Stan's example (attached below) on my
> WinXP box, and it appears to be working perfectly well.
>
> I wonder why your's doesn't work?
void resume_resizing()
{
size_range(0, 0, 10000, 10000);
}
This is working fine if i try with above function
But this shows same problem as before if i try with following
void resume_resizing()
{
size_range(0, 0, 100000, 100000);
}
I think it's outside int range(2 power 16 - 1 = 65535) so that may be the
reason.
Well thanks for a solution.
Now if i want window size should not be less than (300,300) then i may write
void resume_resizing()
{
size_range(300, 300, 10000, 10000);
}
Is it OK?
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk