Re: [Gambas-user] A few questions prompted by recent posts

2015-05-02 Thread Benoît Minisini
Le 03/05/2015 00:46, adamn...@gmail.com a écrit : > The comments on identifier naming, about both conventions (like > sWhatever for a string and bWhatever for a boolean) and also IDE > interpretations (like "_MyClass" is hidden) have reminded me of a > couple of things I have been meaning to ask: >

[Gambas-user] A few questions prompted by recent posts

2015-05-02 Thread adamn...@gmail.com
The comments on identifier naming, about both conventions (like sWhatever for a string and bWhatever for a boolean) and also IDE interpretations (like "_MyClass" is hidden) have reminded me of a couple of things I have been meaning to ask: 1) the automatic hiding of Identifiers beginning with "

Re: [Gambas-user] A few questions

2013-02-27 Thread Tobias Boege
On Mon, 25 Feb 2013, Astrostream wrote: > Hello Everyone, > > I am new to gambas but not to programming, and I just have a few questions > that I cannot find the answers to. Any ideas or help that can lead to some > answer would be great. > > 1) a) Am i able to call a function from bash of a runn

Re: [Gambas-user] A few questions

2013-02-25 Thread Rob Kudla
On 02/25/2013 06:05 PM, Astrostream wrote: > New here, but how did this site get the picture i have set? i never set > anything. I had to go to the link in your post to see what you were talking about. This is actually a mailing list on Sourceforge; Nabble just takes public mailing lists and provi

Re: [Gambas-user] A few questions

2013-02-25 Thread Astrostream
New here, but how did this site get the picture i have set? i never set anything. -- View this message in context: http://gambas.8142.n7.nabble.com/A-few-questions-tp41242p41243.html Sent from the gambas-user mailing list archive at Nabble.com. -

[Gambas-user] A few questions

2013-02-25 Thread Astrostream
Hello Everyone, I am new to gambas but not to programming, and I just have a few questions that I cannot find the answers to. Any ideas or help that can lead to some answer would be great. 1) a) Am i able to call a function from bash of a running gambas program? (want to be able to allow connecti

Re: [Gambas-user] A few questions

2011-01-31 Thread Fabien Bodard
2011/1/31 Jussi Lahtinen : >> >> > Before I can load an example, I get a dialog with the following message. >> > Why does Gambas think the project is already open when it's not? >> > >> > "This project seems to be already opened. >> > >> > Opening the same project twice can lead to data loss." >> >

Re: [Gambas-user] A few questions

2011-01-31 Thread Jussi Lahtinen
> > > Before I can load an example, I get a dialog with the following message. > > Why does Gambas think the project is already open when it's not? > > > > "This project seems to be already opened. > > > > Opening the same project twice can lead to data loss." > > > > [ Do not open ] [ Open after a

Re: [Gambas-user] A few questions

2011-01-31 Thread Benoît Minisini
> > When I start gambas3 from the console command line, I get the following > messages before Gambas starts. > > jrs@Laptop:~$ gambas3 > Qt: Session management error: None of the authentication protocols > specified are supported > warning: unable to load Qt translation: en_US.utf8 > warning: una

Re: [Gambas-user] A few questions

2011-01-31 Thread Doriano Blengino
John Spikowski ha scritto: > BTW: I fixed my running as root when I shouldn't have problem. The > following commands will recursively change your owner and group > permissions for files and directories. > > *** FILES *** > find . -type f -exec chown -R me {} \; > find . -type f -exec chgrp -R me {}

[Gambas-user] A few questions

2011-01-30 Thread John Spikowski
BTW: I fixed my running as root when I shouldn't have problem. The following commands will recursively change your owner and group permissions for files and directories. *** FILES *** find . -type f -exec chown -R me {} \; find . -type f -exec chgrp -R me {} \; *** DIRECTORIES *** find . -type d

Re: [Gambas-user] A few questions

2008-09-24 Thread Doriano Blengino
Benoit Minisini ha scritto: > On mercredi 24 septembre 2008, Doriano Blengino wrote: > >> STATIC SUB *Attach* ( _Object_ AS Object, _Parent_ AS Object, _Name_ AS >> String ) >> >> "it depends >> in which class the instruction attach() is compiled". >> > No. Object.Attach() will send ev

Re: [Gambas-user] A few questions

2008-09-24 Thread Benoit Minisini
On mercredi 24 septembre 2008, Doriano Blengino wrote: > > > > The Object.Attach() method does not depend on its context, contrary to > > the NEW instruction. > > I can not catch the point. It seems to me that I can use object.attach() > everywhere, because in its parameters: > > STATIC SUB *

Re: [Gambas-user] A few questions

2008-09-24 Thread Doriano Blengino
Benoit Minisini ha scritto: > On mercredi 24 septembre 2008, Doriano Blengino wrote: > >> Yes, this is true. But I installed the v2.7.xxx (debian repository) on >> another machine to see if it had many improvements and, as far I could >> see from a quick tour, there was nothing exiciting. I have

Re: [Gambas-user] A few questions

2008-09-24 Thread Benoit Minisini
On mercredi 24 septembre 2008, Doriano Blengino wrote: > Benoit Minisini ha scritto: > > On mardi 23 septembre 2008, Doriano Blengino wrote: > >> Hi, > >> > >> I am facing a series of little problems (gambas v. 2.0.0). > > > > You should use a more recent version of Gambas, otherwise what I will sa

Re: [Gambas-user] A few questions

2008-09-24 Thread Doriano Blengino
Benoit Minisini ha scritto: > On mardi 23 septembre 2008, Doriano Blengino wrote: > >> Hi, >> >> I am facing a series of little problems (gambas v. 2.0.0). >> >> > > You should use a more recent version of Gambas, otherwise what I will say may > not work. > Yes, this is true. But I inst

Re: [Gambas-user] A few questions

2008-09-23 Thread Benoit Minisini
On mardi 23 septembre 2008, Doriano Blengino wrote: > Hi, > > I am facing a series of little problems (gambas v. 2.0.0). > You should use a more recent version of Gambas, otherwise what I will say may not work. > I made a fmPreview which, by raising a "getpage" event, gets data from > the main p

[Gambas-user] A few questions

2008-09-23 Thread Doriano Blengino
Hi, I am facing a series of little problems (gambas v. 2.0.0). I made a fmPreview which, by raising a "getpage" event, gets data from the main program and displays them, and/or actually prints them on a printer. fmPreview is a form with a few controls in it. fmPreview itself raises a "getpage"