richard terry schrieb:
> On Mon, 1 Dec 2008 06:50:06 am Robert Moss wrote:
>
> Robert this may not be much help to you and I'm not sure how related to your
> problem it is, but just on the off chance. I struggled with saving a picture
> and retrieving from a postgres field.
>
> The code I inclu
Hi George!
Thanks for your reply.
Perhaps I was not really clear.
- I want to write a component
- This component needs to read some settings from a config file
- Because of the fact, that the functions of the component are called
directly, doing something like this:
Private hCFG As New Settings(
So I set myself to create a program that acts like a wizard, but chose
not to use the wizard object because well, there is just too many
variables here, and there is more than one way to get to the end,
Depending on user input.
So what I did was create a navigation tool bar at the bottom of FMain
On mercredi 10 décembre 2008, Stefano Palmeri wrote:
> Il mercoledì 10 dicembre 2008 15:50:15 Rolf-Werner Eilert ha scritto:
> > Benoit Minisini schrieb:
> > > On mercredi 10 décembre 2008, Rolf-Werner Eilert wrote:
> > >> Hi folks,
> > >>
> > >> meanwhile I've understood how to use the TrayIcon, b
Il mercoledì 10 dicembre 2008 15:50:15 Rolf-Werner Eilert ha scritto:
> Benoit Minisini schrieb:
> > On mercredi 10 décembre 2008, Rolf-Werner Eilert wrote:
> >> Hi folks,
> >>
> >> meanwhile I've understood how to use the TrayIcon, but if my application
> >> should show only the tray icon, no appl
I'm not sure what is the problem you mean
PUBLIC SUB WriteSettings()
hCFG["General/Color"] = 666
hCFG.Save
END
PUBLIC SUB ReadSettings()
DIM aa AS Integer
PRINT hCFG["General/Color"] 'Print content to IDE console.
aa = hCFG["General/Color"] 'Put content to aa (in this case integer).
P
Hi!
I'm on Ubuntu 8.10 64 bit. I have compiled Gambas2.9 without problems,
so everything should be ok with my system..?
I've done this:
1.
svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/
Checked out revision 1733.
Everything ok.
2.
./reconf-all
Got messag
Sorry,
hCFG["General/Color"] = something to write under General/Color
hCFG.Save
Of course
On Wed, Dec 10, 2008 at 7:33 PM, Jussi Lahtinen
<[EMAIL PROTECTED]> wrote:
> @ http://gambasdoc.org/help/comp/gb.settings/settings
>
> There is example of usage. I think you need code something like
Am Mittwoch 10. Dezember 2008 18:05:45 schrieb [EMAIL PROTECTED]:
> Hi List,
>
> This in the module area works.
> Private hCFG As New Settings("/Path/To/cfg")
Try this:
Private hCFG As New Settings("/Path/To/cfg") AS "hCFG"
>
> Because I'm writing a component, now I have to do this in the module
@ http://gambasdoc.org/help/comp/gb.settings/settings
There is example of usage. I think you need code something like this:
hCFG[General/Color] = something to write under General/Color
hCFG.Save
Ok?
Jussi
On Wed, Dec 10, 2008 at 7:05 PM, <[EMAIL PROTECTED]> wrote:
> Hi List,
>
> This in th
Hi List,
This in the module area works.
Private hCFG As New Settings("/Path/To/cfg")
Because I'm writing a component, now I have to do this in the module area:
Private hCFG As Settings
And something like this in the _init-Sub
hCFG = New Settings("/Path/To/cfg")
'Just for testing
Print hCFG["Gene
Funny :-/
-- Transmitted message ---
Sujet : confirm 4c208dde7ac4f9f3470f886941cf5698a9455f86
Date : mercredi 10 décembre 2008
De : [EMAIL PROTECTED]
À : [EMAIL PROTECTED]
Your membership in the mailing list Gambas-user has been disabled due
to excessive bounces Th
Hi Rolf,
I needed something similar and what I did is creating a new module and
setting it as the "startup class", then in order to prevent the
application ending straightly (after creating/showing the trayicon), I
used Fmain "Persistent" property to force the application stay loaded...
so in y
Benoit Minisini schrieb:
> On mercredi 10 décembre 2008, Rolf-Werner Eilert wrote:
>> Hi folks,
>>
>> meanwhile I've understood how to use the TrayIcon, but if my application
>> should show only the tray icon, no application window, how can I hide
>> the whole thing (except the tray icon, of course
Stefano Palmeri schrieb:
> Il mercoledì 10 dicembre 2008 10:52:24 Rolf-Werner Eilert ha scritto:
>> Hello experts!
>>
>> Can I use a Timer control in a scripted Gambas program, and if yes, how?
>> And if not, is it possible in a non-graphical Gambas program?
>>
>> Thanks for any hints.
>>
>> Rolf
>
On mercredi 10 décembre 2008, Rolf-Werner Eilert wrote:
> Hi folks,
>
> meanwhile I've understood how to use the TrayIcon, but if my application
> should show only the tray icon, no application window, how can I hide
> the whole thing (except the tray icon, of course)?
>
> Thanks for your advice!
>
On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> Am Mittwoch, 10. Dezember 2008 15:04:08 schrieb Benoit Minisini:
> > On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > > Hi Gurus!
> > >
> > > Sorry for this noop-question:
> > > In the module area of my component I read a settings f
Hi folks,
meanwhile I've understood how to use the TrayIcon, but if my application
should show only the tray icon, no application window, how can I hide
the whole thing (except the tray icon, of course)?
Thanks for your advice!
Rolf
Am Mittwoch, 10. Dezember 2008 15:04:08 schrieb Benoit Minisini:
> On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > Hi Gurus!
> >
> > Sorry for this noop-question:
> > In the module area of my component I read a settings file with some
> > connection parameters.
> > As long as I run the c
On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> Hi Gurus!
>
> Sorry for this noop-question:
> In the module area of my component I read a settings file with some
> connection parameters.
> As long as I run the component as a normal Gambas-programm this works
> perfectly. But when I turn it
Hi Gurus!
Sorry for this noop-question:
In the module area of my component I read a settings file with some connection
parameters.
As long as I run the component as a normal Gambas-programm this works
perfectly. But when I turn it into a component and call one of it's exported
functions, the f
Am Mittwoch, 10. Dezember 2008 14:46:30 schrieb Benoit Minisini:
> On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > Am Mittwoch, 10. Dezember 2008 14:15:35 schrieb Benoit Minisini:
> > > On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > > > Hi Benoit,
> > > >
> > > > In Gambas 3.
On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> Am Mittwoch, 10. Dezember 2008 14:15:35 schrieb Benoit Minisini:
> > On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > > Hi Benoit,
> > >
> > > In Gambas 3.0, snapshot from today, hitting the shortcut mentioned
> > > above doesn't do
Benoit Minisini a écrit :
> On mercredi 10 décembre 2008, Simonart Dominique wrote:
>> Hi,
>> May be it's me, but ...
>> in the gambas 2.9 IDE (opensuse 11.0 KDE 3, Qt project),
>> create a new image1.png file. after drawing something on the
>> area, select the transparent color and the fill tool t
Am Mittwoch, 10. Dezember 2008 14:15:35 schrieb Benoit Minisini:
> On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> > Hi Benoit,
> >
> > In Gambas 3.0, snapshot from today, hitting the shortcut mentioned above
> > doesn't do anything.
> > Klicking on Project=>>Version=>>Executable does the
On mercredi 10 décembre 2008, [EMAIL PROTECTED] wrote:
> Hi Benoit,
>
> In Gambas 3.0, snapshot from today, hitting the shortcut mentioned above
> doesn't do anything.
> Klicking on Project=>>Version=>>Executable does the job
>
> Greetz
> Stevie
>
It works there: check that this shortcut is not us
Hi Benoit,
In Gambas 3.0, snapshot from today, hitting the shortcut mentioned above
doesn't do anything.
Klicking on Project=>>Version=>>Executable does the job
Greetz
Stevie
--
SF.Net email is Sponsored by MIX09, Marc
On mercredi 10 décembre 2008, Simonart Dominique wrote:
> Hi,
> May be it's me, but ...
> in the gambas 2.9 IDE (opensuse 11.0 KDE 3, Qt project),
> create a new image1.png file. after drawing something on the
> area, select the transparent color and the fill tool then
> click on a colored pixel an
Il mercoledì 10 dicembre 2008 10:52:24 Rolf-Werner Eilert ha scritto:
> Hello experts!
>
> Can I use a Timer control in a scripted Gambas program, and if yes, how?
> And if not, is it possible in a non-graphical Gambas program?
>
> Thanks for any hints.
>
> Rolf
>
Don't know about scripted Gambas
Hello experts!
Can I use a Timer control in a scripted Gambas program, and if yes, how?
And if not, is it possible in a non-graphical Gambas program?
Thanks for any hints.
Rolf
--
SF.Net email is Sponsored by MIX09, Ma
30 matches
Mail list logo