[Gambas-user] Rendering text with OpenGL example

2014-01-13 Thread terco IDE
> >> Yes (using OpenGL), but it's rather involved. I had an epic failure of > >> hardware and human logic this week and am just wrapping up restoring > >> sanity to my server and workstation, but give me a day or so and I'll > >> give you the source code. > >> > >> It's my understanding that Open

[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 > >>> M

[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 > >>> M

[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

[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

Re: [Gambas-user] Gambas-user Digest, Vol 92, Issue 14

2014-01-08 Thread terco IDE
> > Hi all: > > > > the openGL funcion > > > > getString( name ) as string > > > > gives error when using it like: > > Dim s As String > >s = gl.GetString(gl.VENDOR) > > > > Error: not returning value > > > > as if were defined like a sub > > > > I'm using Gambas 3.5.90 > > > > Saludos > > Ma

[Gambas-user] OpenGL's getString(mode) not returning string

2014-01-07 Thread terco IDE
Hi all: the openGL funcion getString( name ) as string gives error when using it like: Dim s As String s = gl.GetString(gl.VENDOR) Error: not returning value as if were defined like a sub I'm using Gambas 3.5.90 Saludos Martin --

Re: [Gambas-user] how to convert VB Project file to Gambas

2013-12-13 Thread terco IDE
You can't convert it, you need to port it. A good thing is to have someone that's already into Gambas (I'm lucky to have the help of the guys at gambas-es.org), but if you are not doing open-source, you're in your own. We're porting a big program like this: 1st create the main form, with menus

[Gambas-user] FW: Matrix resize

2013-12-09 Thread terco IDE
, hArray.Bounds[1]) - 1 > > hNewArray[ii, jj] = hArray[ii, jj] > > Next > > Next > > > > Return hNewArray > > > > End > > > > > > And here is how to use it: > > > > Dim iMyArray As New Integer[5, 5] > > > > iMyA

Re: [Gambas-user] Matrix resize

2013-12-05 Thread terco IDE
ds[1]) - 1 > > hNewArray[ii, jj] = hArray[ii, jj] > > Next > > Next > > > > Return hNewArray > > > > End > > > > > > And here is how to use it: > > > > Dim iMyArray As New Integer[5, 5] > > > > iMyArra

[Gambas-user] Matrix resize

2013-12-05 Thread terco IDE
First of everything: BIG thanks to Benoit for crating Gambas! Is there any workaround for resizing matrices? rigth now, I'm using this code notMatrix.Resize(100*200) ' 100 rows, 200 cols ' get element [row,col] x = notMatrix[col + row*200] , and on a big program, code get's really dirty Th

Re: [Gambas-user] Calling a sub from a Webview

2013-12-04 Thread terco IDE
Hi: i'm the mad guy who made that VB code wich calls Funcitions from the HTML code :) I'n new to Gambas, but from what I've read, it is possible to set up an Object Observer ...so why not intercept the webview control and do things BEFORE the Click event takes place? Saludos Martin > From:

[Gambas-user] C++ library for matrix operations

2013-11-28 Thread terco IDE
Hi all: (first post here) I'm porting a VB6 program that does Structural Calculations https://sourceforge.net/projects/estru3d/ wich uses a lots of matrix operations plus a ecuations solver for band matrixes. I've made a DLL for the win32 enviroment 10 years ago that speeded up x100 then solv