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
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
> > 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
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
> 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
> 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,
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 "
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
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
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
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
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
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
-- 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
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 ...
15 matches
Mail list logo