Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Doriano Blengino
Bill Richman ha scritto: > Well, I upgraded to Gambas 2.19 using the instructions for Ubuntu > Intrepid found here: http://gambasdoc.org/help/install/ubuntu?view. > Since "Help/About" now reports 2.19, I have to assume that worked, and > I'm still getting the same behavior (jumping into the "_

[Gambas-user] IconView control questions

2010-01-18 Thread Bill Richman
I'm having a little trouble figuring out how to get the iconview control to behave as I would like. The "grid spacing" property seems to adjust the horizontal distance between the icons, but is there any way to change the vertical spacing between the icons and the text, and between sequential

Re: [Gambas-user] Custom controls - 1 more question

2010-01-18 Thread Benoît Minisini
> How do i add a control to a form in code? i've tried dim name as label > then name = new label(parentformname) in the form open method but it > doesn't appear. thanks, aaron > Can you show your code? -- Benoît Minisini -

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

2010-01-18 Thread Benoît Minisini
> 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 . > Bug fixed in revision #2615 for Ga

[Gambas-user] Custom controls - 1 more question

2010-01-18 Thread Aaron Peachey
How do i add a control to a form in code? i've tried dim name as label then name = new label(parentformname) in the form open method but it doesn't appear. thanks, aaron -- Throughout its 18-year history, RSA Conference co

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Bill Richman
Well, I upgraded to Gambas 2.19 using the instructions for Ubuntu Intrepid found here: http://gambasdoc.org/help/install/ubuntu?view. Since "Help/About" now reports 2.19, I have to assume that worked, and I'm still getting the same behavior (jumping into the "_click" event when running the .c

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Bill Richman
Thanks for the suggestions. I updated to Gambas 2.19, but that didn't seem to help. I assume you're referring to the files it creates in the .gambas folder inside each project folder? I've deleted those - although I think that what the "Clean up" option does - and re-run the program. The fi

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

2010-01-18 Thread kobolds
here I attach the test project and snap shot. the database is in sqlite3 . you need to change the path of the connection 1. after you open the database manager , at the top right you will see red close button (to close the tab) click on it , it will close the whole ide when it not suppose to be

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

2010-01-18 Thread Benoît Minisini
> >> 1. when I close the database manager , it close the whole gb3 > > > > Where do you click exactly? Can you give me more details? > > the red close tab button > Can you send me your full project and tell me what should I do to reproduce the bug. If it needs a specific database connection, ca

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

2010-01-18 Thread kobolds
>> 1. when I close the database manager , it close the whole gb3 > Where do you click exactly? Can you give me more details? > the red close tab button Benoît Minisini wrote: > >> I though the one show at the connection is db manager ?. >> I create a sqlite db connection . when I click on

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

2010-01-18 Thread Benoît Minisini
> I though the one show at the connection is db manager ?. > I create a sqlite db connection . when I click on it , it show db manager > where I can add/modify or delete table. > > even though it's integrated into the ide , I though it's still db manager . > Ah, OK, yes it is! :-) > 1. when I c

Re: [Gambas-user] How to move an object within a form

2010-01-18 Thread Matti
I did this with PictureBoxes. 1. On MouseDown event, the start position of the PictureBox is taken: iMStartx = Mouse.X iMStarty = Mouse.Y 2. On MouseMove event, the sub is: ("Rahmen" are the PictureBoxes, and "Ziel" means target) PUBLIC SUB Rahmen_MouseMove() DIM Zielx AS Integer DIM Zie

Re: [Gambas-user] How to move an object within a form

2010-01-18 Thread Werner
On 18/01/10 19:27, Fiddler63 wrote: > I'm trying to move an object within a form. > The following code allows me to move the form, but not the object within the > form, ie when I click on the mouse I can move the form around on the screen, > but no the object within the form. > > Any suggestions ?

Re: [Gambas-user] How to move an object within a form

2010-01-18 Thread Werner
On 18/01/10 19:27, Fiddler63 wrote: > I'm trying to move an object within a form. > The following code allows me to move the form, but not the object within the > form, ie when I click on the mouse I can move the form around on the screen, > but no the object within the form. > > Any suggestions ?

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

2010-01-18 Thread kobolds
I though the one show at the connection is db manager ?. I create a sqlite db connection . when I click on it , it show db manager where I can add/modify or delete table. even though it's integrated into the ide , I though it's still db manager . Benoît Minisini wrote: > >> I having some

Re: [Gambas-user] How to move an object within a form

2010-01-18 Thread Fiddler63
I would like the user to be able to move the drawingarea around within the form. The drawingarea(s) will eventuality be created dynamically, when I get around to understand that part as well. Image a bunch of boxes like a mindmap, which you can move around on the screen (within the form). Kim

Re: [Gambas-user] How to move an object within a form

2010-01-18 Thread Fabien Bodard
what do you want to do exactly... i don't understand :/ (english is not my primary language !) 2010/1/18 Fiddler63 : > > I'm trying to move an object within a form. > The following code allows me to move the form, but not the object within the > form, ie when I click on the mouse I can move the fo

Re: [Gambas-user] Program going off the rails in a way I ca n't explain. Help?

2010-01-18 Thread Benoît Minisini
> Benoît Minisini wrote: > >> I've got a really weird problem going on. I've been working on this > >> project for about a month, and today I decided to make some major > >> changes to the user interface operates. I moved some code around and > >> delete some code, and now when I run it in the ID

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

2010-01-18 Thread Benoît Minisini
> I having some problem with the database manager on gb3 The database manager has been deprecated and will be removed in Gambas 3. What are you talking about? -- Benoît Minisini -- Throughout its 18-year history, RSA C

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Bill Richman
Charlie Reinl wrote: > Am Montag, den 18.01.2010, 08:23 -0600 schrieb Bill Richman: > >> I've got a really weird problem going on. I've been working on this >> project for about a month, and today I decided to make some major >> changes to the user interface operates. I moved some code around

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Bill Richman
Benoît Minisini wrote: >> I've got a really weird problem going on. I've been working on this >> project for about a month, and today I decided to make some major >> changes to the user interface operates. I moved some code around and >> delete some code, and now when I run it in the IDE, it rand

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Charlie Reinl
Am Montag, den 18.01.2010, 08:23 -0600 schrieb Bill Richman: > I've got a really weird problem going on. I've been working on this > project for about a month, and today I decided to make some major > changes to the user interface operates. I moved some code around and > delete some code, and now

Re: [Gambas-user] What is gb.qte when compiling?

2010-01-18 Thread Sprachschule Eilert
Am 18.01.2010 14:00, schrieb Benoît Minisini: >> Just downloaded 2.19 and wanted to compile it. Running configure, it says >> >> THESE COMPONENTS ARE DISABLED: >> >> - gb.corba >> - gb.db.firebird >> - gb.db.odbc >> - gb.db.sqlite2 >> - gb.gtk.svg >> - gb.qte >> - gb.sdl >> - gb.sdl.sound >> >> So,

Re: [Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Benoît Minisini
> I've got a really weird problem going on. I've been working on this > project for about a month, and today I decided to make some major > changes to the user interface operates. I moved some code around and > delete some code, and now when I run it in the IDE, it randomly jumps > into the sub t

[Gambas-user] Program going off the rails in a way I can't explain. Help?

2010-01-18 Thread Bill Richman
I've got a really weird problem going on. I've been working on this project for about a month, and today I decided to make some major changes to the user interface operates. I moved some code around and delete some code, and now when I run it in the IDE, it randomly jumps into the sub that handle

Re: [Gambas-user] What is gb.qte when compiling?

2010-01-18 Thread Benoît Minisini
> Just downloaded 2.19 and wanted to compile it. Running configure, it says > > THESE COMPONENTS ARE DISABLED: > > - gb.corba > - gb.db.firebird > - gb.db.odbc > - gb.db.sqlite2 > - gb.gtk.svg > - gb.qte > - gb.sdl > - gb.sdl.sound > > So, everything ok as usual, but I do not know what gb.qte is

[Gambas-user] What is gb.qte when compiling?

2010-01-18 Thread Rolf-Werner Eilert
Just downloaded 2.19 and wanted to compile it. Running configure, it says THESE COMPONENTS ARE DISABLED: - gb.corba - gb.db.firebird - gb.db.odbc - gb.db.sqlite2 - gb.gtk.svg - gb.qte - gb.sdl - gb.sdl.sound So, everything ok as usual, but I do not know what gb.qte is from the Components dialog

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

2010-01-18 Thread Fiddler63
Yep, running 64 bit Kim Ron Klinkien wrote: > > Didn't follow the complete thread, but are you running on a 64 bits OS? > > I had some weird crashes too (all fixed now), they occurred quite often, > but sometimes I had to restart my program 20+ times in a row to make it > fail again, it was

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

2010-01-18 Thread Ron
Didn't follow the complete thread, but are you running on a 64 bits OS? I had some weird crashes too (all fixed now), they occurred quite often, but sometimes I had to restart my program 20+ times in a row to make it fail again, it was because it only crashed when it was loaded in 64 bits memor

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

2010-01-18 Thread Fiddler63
2010/1/18 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 y

[Gambas-user] How to move an object within a form

2010-01-18 Thread Fiddler63
I'm trying to move an object within a form. The following code allows me to move the form, but not the object within the form, ie when I click on the mouse I can move the form around on the screen, but no the object within the form. Any suggestions ? PRIVATE $MX AS Integer PRIVATE $MY AS Integer

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

2010-01-18 Thread Kadaitcha Man
2010/1/18 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