Re: [Gambas-user] let's nominate Gambas

2009-05-25 Thread wig
Is there a preferred category to nominate Gambas for? Best project? Best tool or utility for developers? Best project (or does it still count as best NEW project?) Best project for the enterprise? ...? I know you can select more than one categorie, but maybe it is stronger if we target certain

Re: [Gambas-user] server socket problem

2009-05-25 Thread guiodic
Ron_1st wrote: No, this is not correct. My internet connection is 20Mbits (20/8 = 2500 KByte/second) When I write 1Kb (8kbit) it goes with 20Mbs speed on the wire. Using packets of 1 KByte every second is a transfer rate (bandidth) The average is then the wished 1 Kbits using 1/2500

Re: [Gambas-user] TextArea scrolling

2009-05-25 Thread Jussi Lahtinen
Hi! I must wake up this forgotten issue... This is still valid problem and I got more information about it. This line of code: TextArea1.EnsureVisible() In GTK+, makes textarea to scroll down, but in Qt it in fact do opposite, scroll up! So if you haven't touch to scroll bar, it looks like it

Re: [Gambas-user] TextArea scrolling

2009-05-25 Thread Jussi Lahtinen
OK, two problems. When adding line to textarea: TextArea1.Text = Something gb.NewLine Cursor jumps to columnline zero. Other problem is that I need propertie ReadOnly to be True, and then at least the cursor is not visible if there even is one. Jussi 2009/5/25 Benoît Minisini

Re: [Gambas-user] TextArea scrolling

2009-05-25 Thread Benoît Minisini
OK, two problems. When adding line to textarea: TextArea1.Text = Something gb.NewLine Cursor jumps to columnline zero. Normal, you are assigning the Text property. Use the Insert() method instead. Other problem is that I need propertie ReadOnly to be True, and then at least the cursor