[Gambas-user] Webview + images Kubuntu 9 / Kubuntu 10

2011-04-08 Thread richard terry
I'm having a problem with images being shown in the webview control in kubuntu 10. I run 9 on my laptop, no problems. Its not my program, as I modified the code in the webrowser example to just show the contents of a html file > all the text is ok, but not the pictures. The same file renders ok

[Gambas-user] Shell script output to label text

2011-04-08 Thread Ganesh Kumar
Hi , I want shell script output, printed to the label text, Please help me.. my code,, *** PUBLIC SUB Form_Open() DIM sStr AS String SHELL "sh /home/dhana/foo.sh" TO sStr IF InStr(sStr, " ") THEN Label1.text =" " & sStr E

Re: [Gambas-user] Editor-preferences Q)

2011-04-08 Thread richard terry
On Friday 08 April 2011 22:59:34 Jussi Lahtinen wrote: Ah, thanks, I would have thought the editor font should be under editor. Regards richard > Check "preferences > interface" and "preferences > style". > > Jussi > > On Fri, Apr 8, 2011 at 11:11, richard terry wrote: > > Hi List, > > > > Ca

Re: [Gambas-user] gb3 RC1: using structures to replace the loss of Mk$ functions

2011-04-08 Thread Benoît Minisini
> Kevin Fishburne wrote: > > Ahh, I understand a little better. I don't know much about endianness, > so please excuse my ignorance here. > > ... > > While it would be slow, I could just write functions for flipping the > byte order of characters in a string. That would work fine for the > client b

Re: [Gambas-user] gb3 RC1: using structures to replace the loss of Mk$ functions

2011-04-08 Thread Doriano Blengino
Il 08/04/2011 09:04, Kevin Fishburne ha scritto: > On 04/08/2011 02:32 AM, Doriano Blengino wrote: > >> >> Endiannes refers to the order the bytes are kept in memory, when a >> numerical multi-byte value is involved. Strictly speaking, strings are >> not affected. For example, human beings are

[Gambas-user] Dynamically loading labels doesn't work for me.

2011-04-08 Thread Corne van Tonder
Hey Guy's, I've been trying to load label on to a form in code using both gambas2, as well as Gambas3. I can create a TextBox, thus.. Public Sub Form_Open() Dim i As TextBox Me.Arrangement = Arrange.Column i = New TextBox(Me) i.width = 100 i.text = "Hello, World!" End I cannot do the sa

[Gambas-user] Inconsistent _compare method usage with .Exist()

2011-04-08 Thread Jussi Lahtinen
Hi! See attachment. I get: True False False When this is expected; True False True Shouldn't be this way, am I right? Gambas 3 rev 3737 @ Ubuntu 10.10 64bit Jussi Inconsistency-0.0.1.tar.gz Description: GNU Zip compressed data -

[Gambas-user] How different about Expand event of Treeview in Gambas 3

2011-04-08 Thread Phạm Quang Dương
Hi, >From the Wiki (for Gambas 2) for Expand event of Tree view: Raised when an item is expanded. The internal cursor is set to the expanded item. This wiki does not exist for Gambas 3 With Gambas3 I get the TreeView.Item same as TreeView.Current in Expand event. Is it change of Expand event?

Re: [Gambas-user] Editor-preferences Q)

2011-04-08 Thread Jussi Lahtinen
Check "preferences > interface" and "preferences > style". Jussi On Fri, Apr 8, 2011 at 11:11, richard terry wrote: > Hi List, > > Can't see anywhere now to set the font size in the preferences > editor > > settings. Am I missing something? > > Installed gambas on a new machine and the edito

Re: [Gambas-user] New website

2011-04-08 Thread Rolf-Werner Eilert
Am 07.04.2011 23:03, schrieb Benoît Minisini: Am 07.04.2011 11:08, schrieb Rolf-Werner Eilert: Am 07.04.2011 10:58, schrieb Benoît Minisini: Am 06.04.2011 21:24, schrieb Benoît Minisini: On Tue, 2011-04-05 at 00:49 +0200, Benoît Minisini wrote: The new website has been uploaded to sourceforge

[Gambas-user] Editor-preferences Q)

2011-04-08 Thread richard terry
Hi List, Can't see anywhere now to set the font size in the preferences > editor > settings. Am I missing something? Installed gambas on a new machine and the editor fonts are small and hard to read. Any help appreciated. --

Re: [Gambas-user] gb3 RC1: using structures to replace the loss of Mk$ functions

2011-04-08 Thread Kevin Fishburne
On 04/08/2011 02:32 AM, Doriano Blengino wrote: > Kevin Fishburne ha scritto: >> >> Ahh, I understand a little better. I don't know much about endianness, >> so please excuse my ignorance here. When reading socket data into a >> string how is the data affected exactly? I can think of a few possibil