[Gambas-user] rendering text in a GLArea

2014-01-10 Thread terco IDE
> >> Le 10/01/2014 16:56, terco IDE a ?crit : > >>> Hi, does anyone has an example on rendering some text in a glArea with > >>> (or without) openGL? > >>> > >>> tnx! > >>> > >>> Saludos > >>> Martin > >>> > >> > >> Look at the PdfPresentation example, it uses a GLArea. And I don't know > >> what

[Gambas-user] rendering text in a GLArea

2014-01-10 Thread terco IDE
> >> Le 10/01/2014 16:56, terco IDE a ?crit : > >>> Hi, does anyone has an example on rendering some text in a glArea with > >>> (or without) openGL? > >>> > >>> tnx! > >>> > >>> Saludos > >>> Martin > >>> > >> > >> Look at the PdfPresentation example, it uses a GLArea. And I don't know > >> what

[Gambas-user] Release of Gambas 3.5.2

2014-01-10 Thread Benoît Minisini
Hi, Gambas 3.5.2 has been released, with 67 bug fixes backported from the development version. The detail is there: http://gambasdoc.org/help/doc/release/3.5.2?view A last-minute bug has been fixed in the gb.gtk component, so those who already have made packages of Gambas 3.5.2 must redone it.

Re: [Gambas-user] How to change the colors on a menu created with the Menu Editor

2014-01-10 Thread Benoît Minisini
Le 10/01/2014 23:43, Marty a écrit : > Hello, > > I'd like to change the background color on a menu created with the Menu > Editor. It appears to be a light gray now and it looks poor compared to > other controls. It would look better (IMHO) if I could change the > background to light blue. Is this

[Gambas-user] How to change the colors on a menu created with the Menu Editor

2014-01-10 Thread Marty
Hello, I'd like to change the background color on a menu created with the Menu Editor. It appears to be a light gray now and it looks poor compared to other controls. It would look better (IMHO) if I could change the background to light blue. Is this possible? I have not found any such propert

Re: [Gambas-user] How to convert .XmlElementAttributes into string

2014-01-10 Thread Tobias Boege
On Fri, 10 Jan 2014, Floryn90 wrote: > When declaring Dim hXmlElementAttributes As .XmlElementAttributes > gambas tell me "Unexpected '.' " > I see you don't really understand what you're typing so let me explain this first: .XmlElementAttributes is a virtual class (which is IMHO one of the be

Re: [Gambas-user] Translating forms in gambas

2014-01-10 Thread Fabien Bodard
http://www.gambasdoc.org/help/comp/gb/system/language?v3 A the begining of your app 2014/1/9 Charlie Reinl : > Am Donnerstag, den 09.01.2014, 22:20 +0100 schrieb Floryn90: >> Hi Charlie, >> I need to change the language when user click on >> Menu->Languages->"Language Name". >> >> Nella citazione

Re: [Gambas-user] rendering text in a GLArea

2014-01-10 Thread Benoît Minisini
Le 10/01/2014 22:28, terco IDE a écrit : > >> Le 10/01/2014 16:56, terco IDE a ?crit : >>> Hi, does anyone has an example on rendering some text in a glArea with (or >>> without) openGL? >>> >>> tnx! >>> >>> Saludos >>> Martin >>> >> >> Look at the PdfPresentation example, it uses a GLArea. And I

Re: [Gambas-user] How to convert .XmlElementAttributes into string

2014-01-10 Thread Fabien Bodard
well it seem you have to learn how gambas work Dim hELm as XmlElement Dim hNode as xmlNode hElm = For each hElm in hDoc.GetElementByTag("MyTag") For each hNode in hElm.Attributes Print "Attribute: " & hNode.Name & " = " & hNode.Value Next Next 2014/1/10 Floryn90 : > When declaring Dim hXml

[Gambas-user] rendering text in a GLArea

2014-01-10 Thread terco IDE
> Le 10/01/2014 16:56, terco IDE a ?crit : > > Hi, does anyone has an example on rendering some text in a glArea with (or > > without) openGL? > > > > tnx! > > > > Saludos > > Martin > > > > Look at the PdfPresentation example, it uses a GLArea. And I don't know > what you mean by *not* using O

Re: [Gambas-user] Anotating a pdf image

2014-01-10 Thread Tobias Boege
On Fri, 10 Jan 2014, bill-lancaster wrote: > I have a number of files in pdf format and I'd like to add some text to the > image and save as a pdf file. > Is this possible? > If so, some hints as to how would be appreciated. > Hmm. I've personally used a tool called pdftk for manipulating PDFs -

Re: [Gambas-user] Menu Show Event with Unity desktop

2014-01-10 Thread Benoît Minisini
Le 09/01/2014 05:07, Greg Raffaelle a écrit : > I set the environment variable APPMENU_DISPLAY_BOTH=1 as suggested and > the program menu is now displayed on both the global unity menu at the > top of the screen and on the main form. > > However, I still believe the program main class is only recei

Re: [Gambas-user] Rendering text with OpenGL example

2014-01-10 Thread Benoît Minisini
Le 10/01/2014 16:56, terco IDE a écrit : > Hi, does anyone has an example on rendering some text in a glArea with (or > without) openGL? > > tnx! > > Saludos > Martin > Look at the PdfPresentation example, it uses a GLArea. And I don't know what you mean by *not* using OpenGL to draw in a GLArea

Re: [Gambas-user] How to convert .XmlElementAttributes into string

2014-01-10 Thread Floryn90
When declaring Dim hXmlElementAttributes As .XmlElementAttributes gambas tell me "Unexpected '.' " Nella citazione in data ven 10 gen 2014 17:36:10 CET, Kende Krisztián ha scritto: > 2014-01-10 17:22 keltezéssel, Floryn90 írta: >> How can i convert a .XmlElementAttributes into string >> >> > >

Re: [Gambas-user] How to convert .XmlElementAttributes into string

2014-01-10 Thread Kende Krisztián
2014-01-10 17:22 keltezéssel, Floryn90 írta: > How can i convert a .XmlElementAttributes into string > > http://www.gambasdoc.org/help/comp/gb.xml/.xmlelementattributes/_next?v3 http://www.gambasdoc.org/help/comp/gb.xml/xmlnode/tostring?v3 ---

[Gambas-user] How to convert .XmlElementAttributes into string

2014-01-10 Thread Floryn90
How can i convert a .XmlElementAttributes into string -- CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Choosing CenturyLink Cloud For Critical Workloads, Development Environments

[Gambas-user] Rendering text with OpenGL example

2014-01-10 Thread terco IDE
Hi, does anyone has an example on rendering some text in a glArea with (or without) openGL? tnx! Saludos Martin -- CenturyLink Cloud: The Leader in Enterprise Cloud Services. L

[Gambas-user] Anotating a pdf image

2014-01-10 Thread bill-lancaster
I have a number of files in pdf format and I'd like to add some text to the image and save as a pdf file. Is this possible? If so, some hints as to how would be appreciated. Gambas 3.5.1 Kubuntu 13.04 -- View this message in context: http://gambas.8142.n7.nabble.com/Anotating-a-pdf-image-tp451

Re: [Gambas-user] How to delete a xml node

2014-01-10 Thread Floryn90
Gambas 3.5.2 on Ubuntu Nella citazione in data ven 10 gen 2014 15:56:55 CET, Fabien Bodard ha scritto: > In what component.. with what class (xmldocument ?) > Le 10 janv. 2014 15:33, "Floryn90" a écrit : > >> Hi everyone, >> How can i delete a xml node if the node atribute name is the same as >

Re: [Gambas-user] How to delete a xml node

2014-01-10 Thread Floryn90
I'm using Xmlreader for reading the xml file and xmlwriter for writing the xml file but don't work properly I need to read the xml file, find node attribute name, delete node element if the name is the same with name given by user. Nella citazione in data ven 10 gen 2014 15:56:55 CET, Fabien Bo

Re: [Gambas-user] How to delete a xml node

2014-01-10 Thread Fabien Bodard
In what component.. with what class (xmldocument ?) Le 10 janv. 2014 15:33, "Floryn90" a écrit : > Hi everyone, > How can i delete a xml node if the node atribute name is the same as > given name? > > Thanks in advance for answers! > > > ---

Re: [Gambas-user] Forcenewpage in report component - part 1 of 2

2014-01-10 Thread Fabien Bodard
This isn't a bug it's because the computing is done page by page for the viewer so 3 page no need more time than 3000 on the preview. For printing, all the pages are computed before. Le 10 janv. 2014 14:26, "Greg Raffaelle" a écrit : > Fabien, > > I tried the latest trunk version of Gambas3.5.90

[Gambas-user] How to delete a xml node

2014-01-10 Thread Floryn90
Hi everyone, How can i delete a xml node if the node atribute name is the same as given name? Thanks in advance for answers! -- CenturyLink Cloud: The Leader in Enterprise Cloud Services. Learn Why More Businesses Are Ch

Re: [Gambas-user] Forcenewpage in report component - part 1 of 2

2014-01-10 Thread Greg Raffaelle
Fabien, I tried the latest trunk version of Gambas3.5.90 and the pages on my report are now displaying. However the numpages is not correct. When the pages are first displayed in preview they are numbered like this: Page 1 of 2 Page 2 of 3 Page 3 of 4 Page 4 of 5 Page 5 of 6 Page 6 of 6 But

Re: [Gambas-user] Can't compile 3.5.2

2014-01-10 Thread VonZorch
Benoît Minisini wrote > Le 02/01/2014 20:22, VonZorch a écrit : >> Running Mint 16, in console as root. When I enter ./configure it returns >> "No >> such file or directory". >> What do I need to do here. >> > > Everything is explained in the 'INSTALL.html' file. > > You can get the latest versi

Re: [Gambas-user] gb.Report : Setting label colors

2014-01-10 Thread Fabien Bodard
Use reportbrush.color instead Report.color is deprecated buggy and need to be removed. Le 9 janv. 2014 11:05, "Fabien Bodard" a écrit : > You are one of the first advanced user of gb.report... Thank you > > So bugs are... I will see what I can do ... I have no many time today > Le 9 janv. 2014 0