[Gambas-user] Gridview Mode

2013-08-26 Thread Shane
I am unable to set the Gridview Mode Property in the IDE I get Incorrect Property Value (not an Object) [System] OperatingSystem=Linux Kernel=3.8.0-29-generic Architecture=x86_64 Distribution=Ubuntu 13.04 Desktop=XFCE Theme=QGtk Language=en_AU.UTF-8 Memory=3808M [Libraries] Cairo=libcairo.so.0.0.

Re: [Gambas-user] How to return a event from an embedded sub form

2013-08-26 Thread Tobias Boege
On Mon, 26 Aug 2013, Fabien Bodard wrote: > never use public control Why? -- Introducing Performance Central, a new site from SourceForge and AppDynamics. Performance Central is your source for news, insights, analysis

Re: [Gambas-user] How to return a event from an embedded sub form

2013-08-26 Thread Fabien Bodard
never use public control insteed in the embedded form add Public Function GetButton() as Button return btnOk end 2013/8/26 Tobias Boege > On Mon, 26 Aug 2013, Marty wrote: > > Hello, > > > > I need to return a button click from an embedded sub form. I managed to > > get the sub form embed

Re: [Gambas-user] accessing mdb files

2013-08-26 Thread Willy Raets
On Mon, 2013-08-26 at 21:23 +0200, Fernando Martins wrote: > On 08/26/2013 07:39 PM, Randall Morgan wrote: > > Linux does not have direct support for mdb as far as I am aware. > > > > > There is mdbtools, which includes a primitive odbc driver, that I was > trying to use. > > http://mdbtools.sour

Re: [Gambas-user] accessing mdb files

2013-08-26 Thread Fernando Martins
On 08/26/2013 07:39 PM, Randall Morgan wrote: > Linux does not have direct support for mdb as far as I am aware. > > There is mdbtools, which includes a primitive odbc driver, that I was trying to use. http://mdbtools.sourceforge.net/ Regards, Fernando --

Re: [Gambas-user] accessing mdb files

2013-08-26 Thread Randall Morgan
Linux does not have direct support for mdb as far as I am aware. Under Linux, you would need to either locate a an access driver for odbc or use something like Jackcess in Java middle-ware to access the db. There are other possibilities such as running MSSQL on a windows machine and remotely conne

Re: [Gambas-user] How to return a event from an embedded sub form

2013-08-26 Thread Tobias Boege
On Mon, 26 Aug 2013, Marty wrote: > Hello, > > I need to return a button click from an embedded sub form. I managed to > get the sub form embedded in the main form using the code found in the > tips that run when Gambas loads. > > The sub form has a button called OK. I want to capture the btnOK

[Gambas-user] How to return a event from an embedded sub form

2013-08-26 Thread Marty
Hello, I need to return a button click from an embedded sub form. I managed to get the sub form embedded in the main form using the code found in the tips that run when Gambas loads. The sub form has a button called OK. I want to capture the btnOK_Click event and use it in the main form. I kno

Re: [Gambas-user] compilation issue (2nd try)

2013-08-26 Thread PICCORO McKAY Lenz
there's new packages for debian real linux systems.. come from venenux repositories, this package are more stable and get backported fixeds.. From: Kende Kriszti?n > Subject: Re: [Gambas-user] compilation issue (2nd try) > To: gambas-user@lists.sourceforge.net > Message-ID: <20130825213402.17f40f

[Gambas-user] accessing mdb files

2013-08-26 Thread Fernando Martins
Hi, Has anyone been able to access .mdb files? I tried with ODBC but got to the same stage reported here: http://gambas.8142.n7.nabble.com/Seg-fault-rev-3903-odbc-db-selecting-td4746.html i.e., no errors in connection, but no data back from a simple select. Regards, Fernando

Re: [Gambas-user] Problems with the IDE and Stream buffering

2013-08-26 Thread Tobias Boege
On Wed, 21 Aug 2013, Tobias Boege wrote: > Hi folks, > > is anyone else having trouble with the latest revision(s)? I observed two > things: > > 1) Stream buffering broken. If I have a Process (it may equivalently well >be only a Process problem (not a general Stream one) as it is the Process

Re: [Gambas-user] hConnection = New Connection ( [ DatabaseURL As String ] )

2013-08-26 Thread Tobias Boege
On Mon, 26 Aug 2013, Bruce wrote: > What syntax for "DatabaseURL As String"? > > I'm trying to create a connection to an SQLite db in a different gambas > project source directory: > > $conn = New > > Connection("/share/projects/gambas3_proj/horse/horseBO/.connection/bometa.conne

Re: [Gambas-user] Get versions of libraries and components at runtime?

2013-08-26 Thread Tobias Boege
On Mon, 26 Aug 2013, Bruce wrote: > Short of including debug lines in each and every library, is there some > way to detect and print the versions of libraries and components loaded > by a Gambas application at runtime? > What do you mean by "versions of [...] components"? AFAIK, Gambas component

Re: [Gambas-user] Different sizes of controls on differend distro

2013-08-26 Thread Kende KrisztiƔn
> Hi, > > I saw that problem before but now now I cant ignore it. > > I have a buttons which size is choosen according to picture size. > My buttons size = 189 x 42 > And during opening project now I got new sizes of buttons = 162 x 36 > > How can I build a programm when I don't know what the si

[Gambas-user] Different sizes of controls on differend distro

2013-08-26 Thread abbat81
Hi, I saw that problem before but now now I cant ignore it. I have a buttons which size is choosen according to picture size. My buttons size = 189 x 42 And during opening project now I got new sizes of buttons = 162 x 36 How can I build a programm when I don't know what the size to expect ? Th