[Gambas-user] Webkit ?not rendering strike through properly

2010-01-15 Thread richard terry
Not sure if this problem is mine/webmit/my gambas. I just had occasion to use strikethough in some html , and despite the code it did't appear in the webkit window. Some time later I noticed it was appearing in another webkit window using the same code. I swiped the paragraph which should have

Re: [Gambas-user] update to report-ng

2010-01-15 Thread richard terry
On Friday 15 January 2010 21:36:57 Joshua Higgins wrote: > Hi list, > > I have updated the report-ng script so that it should work with any > distro that is supplying an /etc/lsb-release file. Before it only > expected Ubuntu to provide this file. > > Regards, > > >>-- > works with ARCH

[Gambas-user] problem with aligment same width (gambas3)

2010-01-15 Thread kobolds
gambas3 qt4 I notice that gb ide auto change the width when it's not suppose too. I have 3 button each with width 90, 100,100 I want all 3 button width become 90 . I select them and choose align same width . I notice all 3 button width now become 91 when it suppose to be 90 . -- View this

Re: [Gambas-user] Collections

2010-01-15 Thread Charlie Reinl
Am Freitag, den 15.01.2010, 16:04 -0300 schrieb Pino Zollo: > DIM Dict AS NEW Collection > DIM Element AS String > > Dict["Blue"] = 3 > Dict["Red"] = 1 > Dict["Green"] = 2 > > FOR EACH Element IN Dict > PRINT Element; > NEXT > Salut, did you ever more then run that code ? debug ? or looked w

[Gambas-user] problem bold style in select font dialog (gambas3)

2010-01-15 Thread kobolds
I small problem with the select font dialog . when I try to select to bold style , the text doesn't change to bold . I have to first click other style (normal , italic or bold italic) and then click the bold style , by then the bold style will work . -- View this message in context: http://o

[Gambas-user] Collections

2010-01-15 Thread Pino Zollo
Hi, please can somebody explain the following from the documentation: DIM Dict AS NEW Collection DIM Element AS String Dict["Blue"] = 3 Dict["Red"] = 1 Dict["Green"] = 2 FOR EACH Element IN Dict PRINT Element; NEXT 3 1 2 -- 3,1 and 2 are Integer, so why Element is a String

Re: [Gambas-user] PictureBox problem (Gambas3)

2010-01-15 Thread kobolds
I found the problem . sorry it's my fault . I mess up some code while try to rewrite my program in gb2 to gb3. Benoît Minisini wrote: > >> I having strange problem with PictureBox to display image. >> >> if I choose the image from picturebox properties , the image show up but >> when I do i

[Gambas-user] Collection of String[2]

2010-01-15 Thread Pino Zollo
Please, where am I wrong ? For Element[1] and Element[0] I get always the same values STATIC PUBLIC Lista AS NEW Collection ... ... PUBLIC FUNCTION xyz ... DIM Element AS String[2] DIM Parti AS String[2] ... DO WHILE... Parti[0] = myStruc.Value(0) Parti[1] = myStruc.Value(2)

[Gambas-user] update to report-ng

2010-01-15 Thread Joshua Higgins
Hi list, I have updated the report-ng script so that it should work with any distro that is supplying an /etc/lsb-release file. Before it only expected Ubuntu to provide this file. Regards, -- joshua higgins >>-- report-ng Description: Binary data -

[Gambas-user] [SOLVED] Re: Help needed with pcre

2010-01-15 Thread nospam.nospam.nos...@gmail.com
2010/1/15 nospam.nospam.nos...@gmail.com : > I have this line of code: > > Reg = New Regexp("=A7=F1=FChw=A4=A3", "=[\\da-fA-F]{2}") > > "=A7" is correctly matched, but it is the only match returned. > > How do I make Regexp match every occurrence so that =F1,=FC, =A4 and > =A3 are also returned as

Re: [Gambas-user] PictureBox problem (Gambas3)

2010-01-15 Thread Benoît Minisini
> I having strange problem with PictureBox to display image. > > if I choose the image from picturebox properties , the image show up but > when I do it from program , the picture not showing . > > in the program I do this > picturebox1.picture = picture[application.path & "/image/back.png"] > >

[Gambas-user] Help needed with pcre

2010-01-15 Thread nospam.nospam.nos...@gmail.com
I have this line of code: Reg = New Regexp("=A7=F1=FChw=A4=A3", "=[\\da-fA-F]{2}") "=A7" is correctly matched, but it is the only match returned. How do I make Regexp match every occurrence so that =F1,=FC, =A4 and =A3 are also returned as matches? I've tried perldoc.perl.org and other sites bu