Re: [Gambas-user] How to pass a structure to a C routine

2015-08-19 Thread martin p cristia
nevermind, just found out ;) -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] I am getting really irritated.

2015-08-19 Thread Benoît Minisini
Le 18/08/2015 23:41, adamn...@gmail.com a écrit : > On Tue, 18 Aug 2015 16:56:48 +0300 > Jussi Lahtinen wrote: > >> I tested packaging with revision 7222. In vendor name "-" is translated as >> "_". I have some vague image in my head that this was done to comply with >> some linux standard. >> But

Re: [Gambas-user] Issue 632 in gambas: Unable to retrive blob data from MySQL

2015-08-19 Thread gambas
Updates: Status: Fixed Comment #2 on issue 632 by benoit.m...@gmail.com: Unable to retrive blob data from MySQL https://code.google.com/p/gambas/issues/detail?id=632 It should be fixed in revision #7229. -- You received this message because this project is configured to send all iss

Re: [Gambas-user] Issue 632 in gambas: Unable to retrive blob data from MySQL

2015-08-19 Thread gambas
Updates: Status: Accepted Labels: -Version3.8 Version-3.8.0 Comment #1 on issue 632 by benoit.m...@gmail.com: Unable to retrive blob data from MySQL https://code.google.com/p/gambas/issues/detail?id=632 (No comment was entered for this change.) -- You received this message bec

Re: [Gambas-user] Offline documentation - how to activate it?

2015-08-19 Thread Charlie
Go to *Tools > Preferences > Help & Applications* and switch on *Use offline help* -- View this message in context: http://gambas.8142.n7.nabble.com/Offline-documentation-how-to-activate-it-tp52278p52281.html Sent from the gambas-user mailing list archive at Nabble.com.

[Gambas-user] R: How to pass a structure to a C routine

2015-08-19 Thread Ru Vuott
Hello Martin, here an example, so you can see in /tmp the C source-code: Public Struct punto3d x As Float Y As Float z As Float End Struct ' double rotate3D(punto3D * pp) Public Extern rotate3D(point3D As Punto3d) As Fl

Re: [Gambas-user] Multidimensional dynamic array basics

2015-08-19 Thread Jussi Lahtinen
You can't do it dynamically with normal syntax: Dim iMyArray As Integer[x, y] Instead use declaration like this: Dim iMyArray As Integer[][] But then, you can't access it as the normal way (iMyArray[x, y]) either, but instead: iMyArray[x][y] = something iMyArray[x].Add(something) iMyArray[x][y].

[Gambas-user] Offline documentation - how to activate it?

2015-08-19 Thread Sprachschule Eilert
Just downloaded the offline documentation, but when I switch to Use Offline, nothing is found. Any other step needed? Thanks for any insight... Rolf -- ___ Gambas-user mailing

Re: [Gambas-user] Multidimensional dynamic array basics

2015-08-19 Thread nando
Personally, I like to think of a 2D array of integers as a 1D array of objects, with each element an array of integers I've done something like this with complete success: ' Public rec As New Object[100]'declare rec as an array of objects and create it.

Re: [Gambas-user] Multidimensional dynamic array basics

2015-08-19 Thread Gianluigi
Hello Kevin, I'm on vacation and I'm not sure I understand the question, I am attaching this example in Italian perhaps with Google Translator can help. Regards Gianluigi 2015-08-19 8:22 GMT+02:00 Kevin Fishburne : > I need to know how to declare, initialize and add elements to a > two-dimensio