Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Comment #17 on issue 601 by justlost...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 How to get one? -- You received this message because this project is configured to send all issue notifications to this address. You may adjust

Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Comment #16 on issue 601 by justlost...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 I cant chk in I dont seem to have an ID for the repository -- You received this message because this project is configured to send all issue no

Re: [Gambas-user] Custom Eval (was Re: The new Border class)

2015-02-08 Thread Fabien Bodard
Dim ccol As Collection = ["Nr": 2, "Page_2": 8] Print Eval(Eval("\"Page_\" & Nr", ccol), ccol) This work for me ... My feature request is for use in case like spreadheet, report fields, but also user small exten script. WIth this abilities they will be able to interact on the application work in

Re: [Gambas-user] Issue 603 in gambas: Logging class will not load in project

2015-02-08 Thread gambas
Comment #3 on issue 603 by justlost...@gmail.com: Logging class will not load in project https://code.google.com/p/gambas/issues/detail?id=603 Never checked in before, so may take a while to get it right... :) -- You received this message because this project is configured to send all issue

Re: [Gambas-user] Issue 603 in gambas: Logging class will not load in project

2015-02-08 Thread gambas
Comment #2 on issue 603 by sebi...@gmail.com: Logging class will not load in project https://code.google.com/p/gambas/issues/detail?id=603 Sorry about that! I was running tests inside the gb.logging project and forgot to test it with an external project. You can commit your change to the sv

Re: [Gambas-user] Custom Eval (was Re: The new Border class)

2015-02-08 Thread Charlie Reinl
Am Sonntag, den 08.02.2015, 14:46 +0100 schrieb Fabien Bodard: > oups i missed for the first one : > iResult = MyCol[eval("Sum_of_Value_page_" & CStr(Page_Nr), myCol)] > > 2015-02-08 14:45 GMT+01:00 Fabien Bodard : > > ??? > > If I summarize what i see I can answer : > > > > iResult = MyCol[eval(

Re: [Gambas-user] Issue 603 in gambas: Logging class will not load in project

2015-02-08 Thread gambas
Comment #1 on issue 603 by justlost...@gmail.com: Logging class will not load in project https://code.google.com/p/gambas/issues/detail?id=603 Updated The Class file added EXPORT DIRECTIVE Attached corrected class project Do you want me to check this in? Attachments: gb.logging-3.6.9

[Gambas-user] Issue 603 in gambas: Logging class will not load in project

2015-02-08 Thread gambas
Status: New Owner: Labels: Version-TRUNK Stopsappfromrunning Priority-Medium Linux openSuse13.2 x86-64 KDE GUI-Any New issue 603 by justlost...@gmail.com: Logging class will not load in project https://code.google.com/p/gambas/issues/detail?id=603 In my project using Logging the class

Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Comment #15 on issue 601 by justlost...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 Sorry was using 6885 version Now taking snapshot 6897 hope that's correct -- You received this message because this project is configured to sen

Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Comment #14 on issue 601 by benoit.m...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 Everything is explained on the wiki at http://gambaswiki.org/wiki/install. If you have questions, ask them on the mailing-list, this bug tracker

Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Comment #13 on issue 601 by justlost...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 Where do I get development version. I went to the source and created the gz from the repository for R6558. Would love to download and use correct

Re: [Gambas-user] Quickie on SELECT

2015-02-08 Thread Fabien Bodard
well :-/ sometime we have old belief this work fine Public Sub _new() Dim toto As String = "titi" Dim tati As String = "titi" Select Case toto Case tati Print "ok" End Select End 2015-02-08 15:16 GMT+01:00 Tobias Boege : > On Sun, 08 Feb 2015, adamn...@gmail.com wrote: >> >> Does anyone

Re: [Gambas-user] Quickie on SELECT

2015-02-08 Thread Tobias Boege
On Sun, 08 Feb 2015, adamn...@gmail.com wrote: > > Does anyone know if you can use an EVAL in a CASE selector? > e.g. SELECT hSomething > ... > CASE EVAL(hSomething.SomeArray.Exisits(hSomething.Value)) > ... > This only makes sense if the Exisits method returns a strin

Re: [Gambas-user] Quickie on SELECT

2015-02-08 Thread Fabien Bodard
Le 8 févr. 2015 03:43, "Dimitris Anogiatis" a écrit : > > Hey Bruce, > > You could try > > SELECT CASE EVAL(hSomething.SomeArray.Exists(hSomething.Value)) > CASE True > Print "Yes, value exists in hSomething" > CASE False > Print "No, value does not exist in hSomething" > CASE Else >

Re: [Gambas-user] Custom Eval (was Re: The new Border class)

2015-02-08 Thread Fabien Bodard
oups i missed for the first one : iResult = MyCol[eval("Sum_of_Value_page_" & CStr(Page_Nr), myCol)] 2015-02-08 14:45 GMT+01:00 Fabien Bodard : > ??? > If I summarize what i see I can answer : > > iResult = MyCol[eval(eval("Sum_of_Value_page_" & CStr(Page_Nr), myCol)] > > or simply > > iResult =

Re: [Gambas-user] Custom Eval (was Re: The new Border class)

2015-02-08 Thread Fabien Bodard
??? If I summarize what i see I can answer : iResult = MyCol[eval(eval("Sum_of_Value_page_" & CStr(Page_Nr), myCol)] or simply iResult = MyCol["Sum_of_Value_page_" & CStr(MyCol["Page_Nr"])] Well if you have a point where you fill myCol so no need to store : iResult = MyCol["Sum_of_Value_page_

Re: [Gambas-user] Issue 601 in gambas: Database Data Source with Mariadb as mysql

2015-02-08 Thread gambas
Updates: Status: Fixed Comment #12 on issue 601 by benoit.m...@gmail.com: Database Data Source with Mariadb as mysql https://code.google.com/p/gambas/issues/detail?id=601 OK, so you are *not* using the development version. The bug has been fixed in the development version, not in the