[Gambas-user] Issue 85 in gambas: Component without any export crashes the IDE

2011-08-27 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 85 by adamn...@gmail.com: Component without any export crashes the IDE http://code.google.com/p/gambas/issues/detail?id=85 1) This problem arises when a project that is

[Gambas-user] Gambas Cloud

2011-08-27 Thread Andrea Bertini
Gui-frontend on desktop made with Gambas, database sqlite on the cloud: is it actually possible? ab -- EMC VNX: the world's simplest storage, starting under $10K The only unified storage solution that offers unified

Re: [Gambas-user] Gambas Cloud

2011-08-27 Thread xOChilpili
Ab: Dunno, i have some experience with MySql on the cloud, and works perfectly but no idea with sqlite. I think is possible. You just have to set the properly conf to sqlite. xOCh 2011/8/27 Andrea Bertini and.bert...@gmail.com Gui-frontend on desktop made with Gambas, database sqlite on the

Re: [Gambas-user] Gambas Cloud

2011-08-27 Thread charlesg
Andrea Bertini wrote: Gui-frontend on desktop made with Gambas, database sqlite on the cloud: is it actually possible? SQLite is single-user update but multi-user read. You don't say whether you (alone) are trying to share a database (e.g. home and work) or whether lots of different users

Re: [Gambas-user] GB3 Browse Project requires root access

2011-08-27 Thread BenoƮt Minisini
I don't know if this is a bug or whether this is something peculiar about LXDE or if I have something set up on my (new) LXDE box incorrectly. When I click on Tools/Browse Project... (or Ctl+Alt+O) it asks for the root password. If I give it what it wants it opens PCManFM in root

Re: [Gambas-user] Gambas Cloud

2011-08-27 Thread Ian Haywood
On Sat, Aug 27, 2011 at 10:16 PM, charlesg char...@pearceshardware.co.uk wrote: Andrea Bertini wrote: Gui-frontend on desktop made with Gambas, database sqlite on the cloud: is it actually possible? not really, as SQLite is not designed for use across the network. MySQL/PostgreSQL clouds

Re: [Gambas-user] Issue 85 in gambas: Component without any export crashes the IDE

2011-08-27 Thread gambas
Updates: Status: Accepted Labels: -Version Version-TRUNK Comment #1 on issue 85 by benoit.m...@gmail.com: Component without any export crashes the IDE http://code.google.com/p/gambas/issues/detail?id=85 (No comment was entered for this change.)

Re: [Gambas-user] Issue 85 in gambas: Component without any export crashes the IDE

2011-08-27 Thread gambas
Updates: Status: Fixed Comment #2 on issue 85 by benoit.m...@gmail.com: Component without any export crashes the IDE http://code.google.com/p/gambas/issues/detail?id=85 Fixed in revision #4052. -- EMC VNX:

[Gambas-user] Arrays of controls

2011-08-27 Thread Dag-Jarle Johansen
Hi out there, I do not check this at all: Public Sub Page_First_Init() Dim hPictureBox As PictureBox Dim I As Integer For i = 0 To 9 hPictureBox = New PictureBox(Me) As PBX hPictureBox.Tag = i Next End Seems to work. But how do I call one of this bitmaps, for

[Gambas-user] Issue 86 in gambas: Help browser and opening a different project

2011-08-27 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 86 by adamn...@gmail.com: Help browser and opening a different project http://code.google.com/p/gambas/issues/detail?id=86 1) This issue regards the full help browser

[Gambas-user] Help with charset

2011-08-27 Thread xOChilpili
Hi all i have some strange experience with open file for append in gambas2 heres my code dim hFile as File hFile=OPEN /home/xochilpili/test.txt FOR APPEND WRITE #hFile, e CLOSE #hFile xochilpili@localhost: cat test.txt output: 'e No matter if e is a String declared, always write in the file