Re: [Gambas-user] comments

2009-07-13 Thread Dimitris Anogiatis
Sorry if I'm butting in the conversation, but what if instead of /* don't parse this */ you add another paste function on the IDE called "Paste As Comments" and assign it a rather unique keyboard shortcut like Ctrl + Alt + \ and paste whatever is in the clipboard in text format, as comments (w

Re: [Gambas-user] comments

2009-07-13 Thread Ron
Stephen Bungay wrote: > I made up a standard comment block a long time ago as a text file, I > simply paste it in and modify/add to it as needed. Yes you have to put > the ' at the start of every new comment line, but IMHO that is no big deal. > > Steve. > > Yeah but the the damage is already

[Gambas-user] Fedora 10 and 11 packages should now be correctly packaged for 2.14.0

2009-07-13 Thread Steven James Drinnan
Good news, Just got a reply about the packaging issue, will download and test and keep an eye on it. So hopefully now fedora packages will be correct. Steven Drinnan -- Enter the BlackBerry Developer Challenge This

Re: [Gambas-user] SmtpClient: error 550-'Message SHOULD have Date: but does not'

2009-07-13 Thread Doriano Blengino
Bill-Lancaster ha scritto: > Dear Benoît > > here is the code: > > PUBLIC SUB Button4_Click() > DIM hMsg AS NEW SmtpClient > > hMsg.To.Add("a...@xx.com") > hMsg.Subject = "Garethn" > hMsg.Add("Angi, had Garry sent paper work to us?") > hMsg.From = "bill-lancas...@lineone.ne

Re: [Gambas-user] comments

2009-07-13 Thread Stephen Bungay
I made up a standard comment block a long time ago as a text file, I simply paste it in and modify/add to it as needed. Yes you have to put the ' at the start of every new comment line, but IMHO that is no big deal. Steve. Ron wrote: > But.. sometimes you want to paste some lines of text as com

Re: [Gambas-user] comments

2009-07-13 Thread Jean-Yves F. Barbier
Ron_1st a écrit : > On Monday 13 July 2009, Ron wrote: >> Benoît Minisini wrote: Hi, AFAIK ther's no possibility to comment a block of code; could you add this? (such as C comment for example). JY >>> If you find a syntax that I like and that does not interfe

Re: [Gambas-user] comments

2009-07-13 Thread Benoît Minisini
> On Monday 13 July 2009, Ron wrote: > > Benoît Minisini wrote: > > >> Hi, > > >> > > >> AFAIK ther's no possibility to comment a block of code; could you add > > >> this? (such as C comment for example). > > >> > > >> JY > > > > > > If you find a syntax that I like and that does not interfer with

Re: [Gambas-user] comments

2009-07-13 Thread Ron_1st
On Monday 13 July 2009, Ron wrote: > Benoît Minisini wrote: > >> Hi, > >> > >> AFAIK ther's no possibility to comment a block of code; could you add this? > >> (such as C comment for example). > >> > >> JY > >> > > If you find a syntax that I like and that does not interfer with an already >

[Gambas-user] DataBrowser toolbar

2009-07-13 Thread Jean-Yves F. Barbier
Hi, How can I access the buttons of a DataBrowser ToolBar in order to forbid/modify some actions? JY -- -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a limited ti

Re: [Gambas-user] comments

2009-07-13 Thread Ron
But.. sometimes you want to paste some lines of text as comment into your code. If you do this your way the text gets parsed/changed as soon as you paste it. Before you get the change to mark it as comment.It would be nice if you can type /* and */ and paste the stuff between it so the editor leave

Re: [Gambas-user] pb search & replace

2009-07-13 Thread Charlie Reinl
Am Montag, den 13.07.2009, 22:39 +0200 schrieb Jean-Yves F. Barbier: > Charlie Reinl a écrit : > > Am Montag, den 13.07.2009, 21:15 +0200 schrieb Benoît Minisini: > >>> Debian sid regular 2.13.1-1 > >>> === > >>> > >>> Hi, > >>> > >>> The search & replace command has a weird

Re: [Gambas-user] comments

2009-07-13 Thread Charlie Reinl
Am Montag, den 13.07.2009, 22:36 +0200 schrieb Jean-Yves F. Barbier: > Charlie Reinl a écrit : > > Am Montag, den 13.07.2009, 22:09 +0200 schrieb Jean-Yves F. Barbier: > >> But thanks anyway :) > >> > >> JY > >> -- > >> Among all savage beasts, none is found so harmful as woman. > >>

Re: [Gambas-user] pb search & replace

2009-07-13 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Am Montag, den 13.07.2009, 21:15 +0200 schrieb Benoît Minisini: >>> Debian sid regular 2.13.1-1 >>> === >>> >>> Hi, >>> >>> The search & replace command has a weird behaviour: it don't replace text >>> that is commented; can I override this? >>> >>>

Re: [Gambas-user] comments

2009-07-13 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Am Montag, den 13.07.2009, 22:09 +0200 schrieb Jean-Yves F. Barbier: >> But thanks anyway :) >> >> JY >> -- >> Among all savage beasts, none is found so harmful as woman. >> -- St. John Chrysostom, 304-407. > > Oh my good, the church and woman.

Re: [Gambas-user] comments

2009-07-13 Thread Charlie Reinl
Am Montag, den 13.07.2009, 22:09 +0200 schrieb Jean-Yves F. Barbier: > But thanks anyway :) > > JY > -- > Among all savage beasts, none is found so harmful as woman. > -- St. John Chrysostom, 304-407. Oh my good, the church and woman. ---

[Gambas-user] fields access pb

2009-07-13 Thread Jean-Yves F. Barbier
Hi, Derived from Database example, I've got a DataBrowse with 2 visible fields (I guess I can't access the other without doing that?!) and 2 DataControls for input. My PB is I don't know how to set the values of the other 4 fields (shall I put hidden DataControls in order to do that?) One thing t

Re: [Gambas-user] pb search & replace

2009-07-13 Thread Charlie Reinl
Am Montag, den 13.07.2009, 21:15 +0200 schrieb Benoît Minisini: > > Debian sid regular 2.13.1-1 > > === > > > > Hi, > > > > The search & replace command has a weird behaviour: it don't replace text > > that is commented; can I override this? > > > > JY > > Toggle the button

Re: [Gambas-user] comments

2009-07-13 Thread Jean-Yves F. Barbier
Stephen Bungay a écrit : >Highlight the block of code you want to comment out then click > the little comment icon in the text-editor toolbar. Presto! The block of > code is commented out. No fuss, no muss. > > Steve. Yes but no: many times I have to comment/decomment many parts of a si

Re: [Gambas-user] comments

2009-07-13 Thread Stephen Bungay
Highlight the block of code you want to comment out then click the little comment icon in the text-editor toolbar. Presto! The block of code is commented out. No fuss, no muss. Steve. Jean-Yves F. Barbier wrote: > Hi, > > AFAIK ther's no possibility to comment a block of code; could you

Re: [Gambas-user] Never mind....

2009-07-13 Thread Stephen Bungay
Doriano Blengino wrote: > Stephen Bungay ha scritto: >>I see there are TWO places to set the default tab size. One under >> Project->Properties->Options and the other under >> Tools->Preferences->Editor. A little confusing this, since one is using >> the editor to edit the project, it logica

Re: [Gambas-user] pb search & replace

2009-07-13 Thread Benoît Minisini
> Debian sid regular 2.13.1-1 > === > > Hi, > > The search & replace command has a weird behaviour: it don't replace text > that is commented; can I override this? > > JY Toggle the button "search inside comments" in the find toolbar. -- Benoît --

[Gambas-user] ide

2009-07-13 Thread Jean-Yves F. Barbier
Hi, One thing would be cool: the possibility for the auto-completion to replace the current word we're on. JY -- -- Enter the BlackBerry Developer Challenge This is your chance to win up to $100,000 in prizes! For a l

[Gambas-user] pb search & replace

2009-07-13 Thread Jean-Yves F. Barbier
Debian sid regular 2.13.1-1 === Hi, The search & replace command has a weird behaviour: it don't replace text that is commented; can I override this? JY -- Where does it go when you flush? -- En

Re: [Gambas-user] SmtpClient: error 550-'Message SHOULD have Date: but does not'

2009-07-13 Thread Bill-Lancaster
Dear Benoît here is the code: PUBLIC SUB Button4_Click() DIM hMsg AS NEW SmtpClient hMsg.To.Add("a...@xx.com") hMsg.Subject = "Garethn" hMsg.Add("Angi, had Garry sent paper work to us?") hMsg.From = "bill-lancas...@lineone.net" hMsg.Host = "smtp.tiscali.co.uk" h

Re: [Gambas-user] comments

2009-07-13 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : >> Hi, >> >> AFAIK ther's no possibility to comment a block of code; could you add this? >> (such as C comment for example). >> >> JY > > If you find a syntax that I like and that does not interfer with an already > existing one, why not? haaa, Saint-Taxes... priez pour

Re: [Gambas-user] comments

2009-07-13 Thread Ron
Benoît Minisini wrote: >> Hi, >> >> AFAIK ther's no possibility to comment a block of code; could you add this? >> (such as C comment for example). >> >> JY >> > If you find a syntax that I like and that does not interfer with an already > existing one, why not? > Sorry to barge in, but /

Re: [Gambas-user] comments

2009-07-13 Thread Benoît Minisini
> Hi, > > AFAIK ther's no possibility to comment a block of code; could you add this? > (such as C comment for example). > > JY If you find a syntax that I like and that does not interfer with an already existing one, why not? -- Benoît -

[Gambas-user] comments

2009-07-13 Thread Jean-Yves F. Barbier
Hi, AFAIK ther's no possibility to comment a block of code; could you add this? (such as C comment for example). JY -- What happens if a big asteroid hits Earth? Judging from realistic simulations involving a sledge hammer and a common laboratory frog, we can assume it will be pretty bad.

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Benoît Minisini
> sorry here the code > > http://www.nabble.com/file/p24460070/test.zip test.zip > OK, got it! The gb.qt TabStrip should be fixed in revision #2111. Regards, -- Benoît -- Enter the BlackBerry Developer Challenge This

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
You're right . thanks Werner-9 wrote: > > Werner wrote: >> kobolds wrote: >> >>> sorry here the code >>> >>> http://www.nabble.com/file/p24460070/test.zip test.zip >>> >>> Benoît Minisini wrote: >>> >>> > the whole project I doing now still in very messy status . but I >

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Werner
Werner wrote: > kobolds wrote: > >> sorry here the code >> >> http://www.nabble.com/file/p24460070/test.zip test.zip >> >> Benoît Minisini wrote: >> >> the whole project I doing now still in very messy status . but I confirm the problem exist by create a new project to see if

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
mine show tab strip 1 , but the button also show out Werner-9 wrote: > > kobolds wrote: >> sorry here the code >> >> http://www.nabble.com/file/p24460070/test.zip test.zip >> >> Benoît Minisini wrote: >> the whole project I doing now still in very messy status . but I confirm >>

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Werner
kobolds wrote: > sorry here the code > > http://www.nabble.com/file/p24460070/test.zip test.zip > > Benoît Minisini wrote: > >>> the whole project I doing now still in very messy status . but I confirm >>> the problem exist by create a new project to see if it happen or not . >>> >>> now that y

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
sorry here the code http://www.nabble.com/file/p24460070/test.zip test.zip Benoît Minisini wrote: > >> the whole project I doing now still in very messy status . but I confirm >> the problem exist by create a new project to see if it happen or not . >> >> now that you said that , I also not su

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Benoît Minisini
> the whole project I doing now still in very messy status . but I confirm > the problem exist by create a new project to see if it happen or not . > > now that you said that , I also not sure whether the problem is because of > kde 4.3 qt 4.5 . > > I guess this is why I unable to compile gambas3 >

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
the whole project I doing now still in very messy status . but I confirm the problem exist by create a new project to see if it happen or not . now that you said that , I also not sure whether the problem is because of kde 4.3 qt 4.5 . I guess this is why I unable to compile gambas3 on the y

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Benoît Minisini
> qt . version 2.14 > > using binary from Guillermo Ballester Valor. > > > on opensuse 11.1 x64 kde 4.3 RC2 release 142 > OK, but please provide the real code (i.e. a project archive), as what you described is not coherent. Regards, -- Benoît -

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
qt . version 2.14 using binary from Guillermo Ballester Valor. on opensuse 11.1 x64 kde 4.3 RC2 release 142 Benoît Minisini wrote: > >> follow my example to emulate the bug . >> >> 1 create a form >> 2. drag and drop a tabstrip control to the form >> 3. set the count to 3 , it will create

Re: [Gambas-user] where is line ,rectangle , circle

2009-07-13 Thread Benoît Minisini
> Benoît Minisini wrote: > >> since I don't see it on default gambas control , I wonder had anyone > >> wrote > >> such control ? > >> > >> for example > >> line --> can set the color ,thickness ,shape ,horizontal or vertical > >> rectangle --> can set tickness ,the edge color , fill color and edge

Re: [Gambas-user] Bug inTabStrip control

2009-07-13 Thread Benoît Minisini
> follow my example to emulate the bug . > > 1 create a form > 2. drag and drop a tabstrip control to the form > 3. set the count to 3 , it will create 3 tab > 4. add a button to tab1 > 5. at form _open() event add the following code > ' only left tab1 visible , hide the rest > > tabstrip1

[Gambas-user] Bug inTabStrip control

2009-07-13 Thread kobolds
follow my example to emulate the bug . 1 create a form 2. drag and drop a tabstrip control to the form 3. set the count to 3 , it will create 3 tab 4. add a button to tab1 5. at form _open() event add the following code ' only left tab1 visible , hide the rest tabstrip1[1].visible = tru

Re: [Gambas-user] When does trunk become the stable release?

2009-07-13 Thread Ron
Benoît Minisini wrote: >> Benoît, >> >> are there any plans to make a future trunk/development release the >> stable one? >> ie have a new feature freeze and work on bug fixes for a period. >> - ASP-like web pages in the IDE. >> - Web application development in the IDE. >> These features look

Re: [Gambas-user] When does trunk become the stable release?

2009-07-13 Thread Benoît Minisini
> Benoît, > > are there any plans to make a future trunk/development release the > stable one? > ie have a new feature freeze and work on bug fixes for a period. > Yes, but at the moment it is "when it is ready". "When it is ready" means: - Qt4 component. - WebKit component. - DBUS component. - D

[Gambas-user] When does trunk become the stable release?

2009-07-13 Thread Ron
Benoît, are there any plans to make a future trunk/development release the stable one? ie have a new feature freeze and work on bug fixes for a period. I'm using Gambas 2.x for some time now, but I want to have new v4l2 and other goodies, but it must be a stable version. One that compiles witho

Re: [Gambas-user] Question re Gambas when qt3 dropped

2009-07-13 Thread Benoît Minisini
> I've a question as my project extensively used khtml, mainly for display > and perhaps I could always use another control for display of my html, but > I wondered if there were plans to have an alternate browser in-place before > one can no longer access the khtml control. > > Regards > > > Richa

Re: [Gambas-user] Directory naming in the IDE tree

2009-07-13 Thread Benoît Minisini
> As you know my tree is in SVN > > If I try and rename a directory in the gambas IDE with anything other than > ascii eg progress_notes (not progressnotes), then it won't allow it. > > However if I rename the directory outside of the tree then gambas loads it > and shows it ok. > > Any solution.