Re: [Gambas-user] Error - Signal 11 - Gambas 2.19

2010-01-17 Thread Fiddler63
> A button with the following code will cause a Signal 11 error in Gambas > 2.19. If I remove the ([50, 50]) I get no error. > > PUBLIC SUB New_Btn_Click() > DIM hPic AS Picture > hPic = NEW Picture([50, 50]) > > END > > Cheers > Kim > Please provide your full project, because you shou

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

2010-01-17 Thread nospam.nospam.nos...@gmail.com
2010/1/18 Benoît Minisini : >> > my desktop scale is 7 >> > >> > >> > my screen size is 1280 x 800 >> >> OK, I succeeded in reproducing the bug. Now I have to investigate... >> > > The bug has been fixed in revision #2613 for Gambas 2. The fix for Gambas 3 > will follow. Thanks for that.

Re: [Gambas-user] report-ng script

2010-01-17 Thread Benoît Minisini
> Good idea, seems better that way. > > Benoit, is there a central place we can put this script? > Maybe the better place is in the IDE source code? -- Benoît Minisini -- Throughout its 18-year history, RSA Conference

Re: [Gambas-user] Custom controls

2010-01-17 Thread Aaron Peachey
> > > > For example, you have to: > > 1) Create a class named "MyLabel" in your project. > 2) Use "INHERITS Label". > > But you have to use it manually, and you won't see it in the IDE toolbox. > > If you want that, you have to create a component, as explained in the link > provide by nospam x 3. >

[Gambas-user] problem with database manager (gambas3)

2010-01-17 Thread kobolds
I having some problem with the database manager on gb3 1. when I close the database manager , it close the whole gb3 2. cannot add /modify /delete the records in a table. if no records in the table and I click on the view , I get exception and gb3 terminate . the add button always disable and the

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

2010-01-17 Thread Benoît Minisini
> 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 w

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

2010-01-17 Thread Benoît Minisini
> > my desktop scale is 7 > > > > > > my screen size is 1280 x 800 > > OK, I succeeded in reproducing the bug. Now I have to investigate... > The bug has been fixed in revision #2613 for Gambas 2. The fix for Gambas 3 will follow. Regards, -- Benoît Minisini

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

2010-01-17 Thread Benoît Minisini
> my desktop scale is 7 > > > my screen size is 1280 x 800 > OK, I succeeded in reproducing the bug. Now I have to investigate... -- Benoît Minisini -- Throughout its 18-year history, RSA Conference consistently attr

Re: [Gambas-user] Modal dialog + Balloon hangs program

2010-01-17 Thread Benoît Minisini
> Hi all, > > Last night I discovered this feature: > > If you have a balloon on FMain and want to let it appear while there is > a modal dialog open (I didn't test a non-modal form yet), the balloon > isn't shown and the program hangs, eating 100 % CPU load. > > I made a little test app to show

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

2010-01-17 Thread nospam.nospam.nos...@gmail.com
2010/1/18 Benoît Minisini : >> OK , I think I finally found the bugs . >> >> you can try your self and will see the bug. >> 1. add a button to a form >> 2. change the button width and height to 60 . or any even number >> 3. click to select the button to copy and paste . see the new pasted button >>

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

2010-01-17 Thread kobolds
my desktop scale is 7 my screen size is 1280 x 800 Benoît Minisini wrote: > >> OK , I think I finally found the bugs . >> >> you can try your self and will see the bug. >> 1. add a button to a form >> 2. change the button width and height to 60 . or any even number >> 3. click to select the

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

2010-01-17 Thread Benoît Minisini
> OK , I think I finally found the bugs . > > you can try your self and will see the bug. > 1. add a button to a form > 2. change the button width and height to 60 . or any even number > 3. click to select the button to copy and paste . see the new pasted button > width and height now become 59 .

Re: [Gambas-user] PictureBox.Picture.Image[x, y] output interpretation

2010-01-17 Thread Benoît Minisini
> 2010/1/17 kevinfishburne : > > When retrieving the value of a pixel at x,y from the picture in a > > picturebox control it outputs a single value. How does this value > > represent the pixel's value, and can it be easily converted to an RGB > > value? > > Red = Value Mod 256 > Green = Int(Value

Re: [Gambas-user] Custom controls

2010-01-17 Thread Benoît Minisini
> Hi all, > I'm just learning Gambas and trying to do something simple (I thought) > by making custom versions of controls. > > For example, I want to inherit the Label and TextBox controls to add > some new properties and methods. > As a basic example, in my program the labels for mandatory field

Re: [Gambas-user] Error - Signal 11 - Gambas 2.19

2010-01-17 Thread Benoît Minisini
> A button with the following code will cause a Signal 11 error in Gambas > 2.19. If I remove the ([50, 50]) I get no error. > > PUBLIC SUB New_Btn_Click() > DIM hPic AS Picture > hPic = NEW Picture([50, 50]) > > END > > Cheers > Kim > Please provide your full project, because you should

Re: [Gambas-user] report-ng script

2010-01-17 Thread Joshua Higgins
Good idea, seems better that way. Benoit, is there a central place we can put this script? 2010/1/17 Doriano Blengino : > Hi Joshua, > > just took a look at your script, and wanted to make a stupid suggestion. > > Instead of writing: > >   echo "[OperatingSystem]" > $OutputFile >   echo "Operatin

Re: [Gambas-user] Error - Signal 11 - Gambas 2.19

2010-01-17 Thread Fabien Bodard
hPicture = NEW Picture ( [ Width AS Integer, Height AS Integer, Transparent AS Boolean ] ) 2010/1/16 Fiddler63 : > > A button with the following code will cause a Signal 11 error in Gambas 2.19. > If I remove the ([50, 50]) I get no error. > > PUBLIC SUB New_Btn_Click() > DIM hPic AS Picture > hPi