Re: [Gambas-user] Using a socket to download an image. Please Help ^_^

2008-12-10 Thread Lars Hoeger
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

Re: [Gambas-user] Problem with gb.settings

2008-12-10 Thread gambas
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(

[Gambas-user] Emulating wizard Back/Next navigation

2008-12-10 Thread M0E Lnx
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

Re: [Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Benoit Minisini
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

Re: [Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Stefano Palmeri
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

Re: [Gambas-user] Problem with gb.settings

2008-12-10 Thread Jussi Lahtinen
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

[Gambas-user] Gambas3 compilation problem

2008-12-10 Thread Jussi Lahtinen
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

Re: [Gambas-user] Problem with gb.settings

2008-12-10 Thread Jussi Lahtinen
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

Re: [Gambas-user] Problem with gb.settings

2008-12-10 Thread Georg Lassnig
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

Re: [Gambas-user] Problem with gb.settings

2008-12-10 Thread Jussi Lahtinen
@ 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

[Gambas-user] Problem with gb.settings

2008-12-10 Thread gambas
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

[Gambas-user] My own sourceforge address was rejected by sourceforge mailing-list! :-)

2008-12-10 Thread Benoit Minisini
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

Re: [Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Toni
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

Re: [Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Rolf-Werner Eilert
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

Re: [Gambas-user] Timer in Script

2008-12-10 Thread Rolf-Werner Eilert
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 >

Re: [Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Benoit Minisini
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! >

Re: [Gambas-user] How to execute a standard routine every time a function in a component is called

2008-12-10 Thread Benoit Minisini
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

[Gambas-user] Hiding FMain not possible?

2008-12-10 Thread Rolf-Werner Eilert
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

Re: [Gambas-user] How to execute a standard routine every time a function in a component is called

2008-12-10 Thread gambas
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

Re: [Gambas-user] How to execute a standard routine every time a function in a component is called

2008-12-10 Thread 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 component as a normal Gambas-programm this works > perfectly. But when I turn it

[Gambas-user] How to execute a standard routine every time a function in a component is called

2008-12-10 Thread gambas
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

Re: [Gambas-user] Ctrl+Alt+X doesn't create executable

2008-12-10 Thread gambas
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.

Re: [Gambas-user] Ctrl+Alt+X doesn't create executable

2008-12-10 Thread 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.0, snapshot from today, hitting the shortcut mentioned > > > above doesn't do

Re: [Gambas-user] Infinite loop with the image editor

2008-12-10 Thread Simonart Dominique
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

Re: [Gambas-user] Ctrl+Alt+X doesn't create executable

2008-12-10 Thread gambas
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

Re: [Gambas-user] Ctrl+Alt+X doesn't create executable

2008-12-10 Thread 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 job > > Greetz > Stevie > It works there: check that this shortcut is not us

[Gambas-user] Ctrl+Alt+X doesn't create executable

2008-12-10 Thread gambas
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

Re: [Gambas-user] Infinite loop with the image editor

2008-12-10 Thread Benoit Minisini
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

Re: [Gambas-user] Timer in Script

2008-12-10 Thread Stefano Palmeri
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

[Gambas-user] Timer in Script

2008-12-10 Thread Rolf-Werner Eilert
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