Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread Fabien Bodard
2011/7/15 wally wa...@voosen.eu: Is there any difference between DrawArea and ScrollArea when using painted=true and the draw_event ? Can i set the drawable area bigger than the controls size (ScrollArea.W, ScrollArea.H) ? If i draw e.g. a line over the extends of width and heigth the

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread wally
Fabian, please jsut tell m: Is there a difference or not when using paint_event. wally On Saturday, July 16, 2011 09:53:45 Fabien Bodard wrote: 2011/7/15 wally wa...@voosen.eu: Is there any difference between DrawArea and ScrollArea when using painted=true and the draw_event ? Can i

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread Fabien Bodard
2011/7/16 wally wa...@voosen.eu: Fabian, please jsut tell m: Is there a difference or not when using paint_event. no difference just the paint.widht/height that are the full size menus the scrollbar size. take a look at the iconview to see what event, and what property are used wally

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread wally
Merci Fabiean, paint.widht/height thats a hint i can work with! I'm too stupid to derive documentation ad hoc from c sourcecode. Thats the reason i always ask here for examples :) And it is the reason i use Gambas, otherwiese i would do C/C++ and Qt directly. OK, let me try these properties

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread wally
Paint.height/width is read-only and returns the size H/W of the ScrollArea control. How to make the scrollbars appear ? On Saturday, July 16, 2011 12:32:28 wally wrote: Merci Fabiean, paint.widht/height thats a hint i can work with! I'm too stupid to derive documentation ad hoc from c

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread Benoît Minisini
Is there any difference between DrawArea and ScrollArea when using painted=true and the draw_event ? Can i set the drawable area bigger than the controls size (ScrollArea.W, ScrollArea.H) ? If i draw e.g. a line over the extends of width and heigth the scrollbars does not appear as i

Re: [Gambas-user] DrawArea vs ScrollArea ?

2011-07-16 Thread Benoît Minisini
Merci Fabiean, paint.widht/height thats a hint i can work with! I'm too stupid to derive documentation ad hoc from c sourcecode. Thats the reason i always ask here for examples :) And it is the reason i use Gambas, otherwiese i would do C/C++ and Qt directly. OK, let me try these

[Gambas-user] DrawArea vs ScrollArea ?

2011-07-15 Thread wally
Is there any difference between DrawArea and ScrollArea when using painted=true and the draw_event ? Can i set the drawable area bigger than the controls size (ScrollArea.W, ScrollArea.H) ? If i draw e.g. a line over the extends of width and heigth the scrollbars does not appear as i expected.