Re: [Gambas-user] Using Open in Gambas 3

2010-09-05 Thread charlesg
craf wrote: > > > In Gambas 3 can not be used and must be assigned to hfile: > > Dim hFile As File > Dim line As String > > hFile = Open "text" For Read > > While Not Eof(hFile) > Line Input #hfile, line > Print linea

[Gambas-user] Using Open in Gambas 3

2010-09-05 Thread craf
I use the following code to read from a text file in Gambas 2: Dim hFile As File Dim line As String Open "text" For Read As #hFile While Not Eof(hFile) Line Input #hfile, line Print line Wend close #hFile In Gamb

Re: [Gambas-user] TableView issue

2010-09-05 Thread Benoît Minisini
> > BTW, an other strange effect, maybe from the same root case: > > Take the same sample but make all the columns editable (otherwise the > > first bug doesn't let you see the second :-) > > > > 1. When you start the app. then the whole table is visible. In this case > > - after clicking into a c

Re: [Gambas-user] Background

2010-09-05 Thread Matti
Aaah, now I see! Was always searching in the help, and did't find anything, but it is as easy as .Background = Color.LightForeground Matti Am 05.09.2010 22:27, schrieb Benoît Minisini: >> When I create a control, for example a panel, in the IDE, I can choose for >> background between system colors

Re: [Gambas-user] TableView issue

2010-09-05 Thread Benoît Minisini
> Hello Benoit, > > Could you pls. tell me how to check the revision of Gambas. I just redo > every time the "svn update" in the install folder (it writes me out a > revision number, this is what I refer to) and after I recompile, reinstall > gambas. But later I don't know how to check the version

Re: [Gambas-user] Background

2010-09-05 Thread Benoît Minisini
> When I create a control, for example a panel, in the IDE, I can choose for > background between system colors (like "LightForeground") or free colors > (like 00FF00). > When I create a control in code, only integer values are accepted for > background. So I can set only "hard" colors like 00FF00,

[Gambas-user] Background

2010-09-05 Thread Matti
When I create a control, for example a panel, in the IDE, I can choose for background between system colors (like "LightForeground") or free colors (like 00FF00). When I create a control in code, only integer values are accepted for background. So I can set only "hard" colors like 00FF00, but not "

Re: [Gambas-user] Gambas3 frame with qt4 missing border?

2010-09-05 Thread Fabien Bodard
it's not ubuntu but kde oxygen default style 2010/9/5 Ricardo Díaz Martín : > Thanks Fabien. You're right. The default theme in Ubuntu 10.04 haven't got > border for frames. > > Regards, > Ricardo Díaz > > 2010/9/5 Fabien Bodard > >> it come from the oxygen qt4/kde4 style... frame have no border

Re: [Gambas-user] Gambas3 frame with qt4 missing border?

2010-09-05 Thread Ricardo Díaz Martín
Thanks Fabien. You're right. The default theme in Ubuntu 10.04 haven't got border for frames. Regards, Ricardo Díaz 2010/9/5 Fabien Bodard > it come from the oxygen qt4/kde4 style... frame have no border in this > style. > > 2010/9/5 Ricardo Díaz Martín : > > Hi, > > > > I'm moving my apps from

Re: [Gambas-user] Gambas3 frame with qt4 missing border?

2010-09-05 Thread Fabien Bodard
it come from the oxygen qt4/kde4 style... frame have no border in this style. 2010/9/5 Ricardo Díaz Martín : > Hi, > > I'm moving my apps from gambas2 to gambas3 and at runime I can't see the > border of frame controls. It's is a bug? It's a missing feature in qt4 > framework? There is some way to

Re: [Gambas-user] TableView issue

2010-09-05 Thread Robert JUHASZ
Merci Charlie! Fine, it confirmed the revision I expected: -- juh...@juhasz-laptop:~/install/gambas/2.0$ svn info Path: . URL: https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/branches/2.0 R

Re: [Gambas-user] TableView issue

2010-09-05 Thread Charlie Reinl
Am Sonntag, den 05.09.2010, 15:15 +0200 schrieb Robert JUHASZ: > Hello Benoit, > > Could you pls. tell me how to check the revision of Gambas. I just redo > every time the "svn update" in the install folder (it writes me out a > revision number, this is what I refer to) and after I recompile, rein

Re: [Gambas-user] TableView issue

2010-09-05 Thread Robert JUHASZ
Hello Benoit, Could you pls. tell me how to check the revision of Gambas. I just redo every time the "svn update" in the install folder (it writes me out a revision number, this is what I refer to) and after I recompile, reinstall gambas. But later I don't know how to check the version number. Th

[Gambas-user] R: Re: Problems with forms

2010-09-05 Thread pxpert
-- msg. originale -- Oggetto: Re: [Gambas-user] Problems with forms Da: jose Data: 16/07/2010 20:11 Sorry, actually speak and write well in Spanish, my English is not so good. I need to send data from 'shrimp' to a php file, and receive data from the php file. I was reading a lot about shrimp

Re: [Gambas-user] Table View edit question

2010-09-05 Thread Fabien Bodard
2010/9/5 Almanova Sistemi : > Hello to everyone, > > I am writing a gambas program that uses the control tablewiev. > > My problem is how to exit from tableview.edit when I press Return or > Enter key. > > I tried tableview.cancel in tableview_save event but I get the message if i remember well ...