[Gambas-user] DateChooser/Timerchooser

2011-09-12 Thread richard terry
Benoit, Not used the time chooser setting before but I notice that changing the font changes the display font but not the popup list which is extremely small and hard to see Regards Richard -- Doing More with Less:

Re: [Gambas-user] DateChooser/Timerchooser

2011-09-12 Thread Benoît Minisini
Benoit, Not used the time chooser setting before but I notice that changing the font changes the display font but not the popup list which is extremely small and hard to see Regards Richard Which popup list ? -- Benoît Minisini

[Gambas-user] Getting access to popup children of datebox

2011-09-12 Thread richard terry
I notice that the events on the database apply to the main control - clicking on the popup calander or time list dosn't have any obvious events. Anway to gain access to these??? Regards richard -- Doing More with

Re: [Gambas-user] Getting access to popup children of datebox

2011-09-12 Thread Ian Haywood
On Mon, Sep 12, 2011 at 11:05 PM, richard terry rte...@pacific.net.au wrote: I notice that the events on the database apply to the main control - clicking on the popup calander or time list dosn't have any obvious events. Anway to gain access to these??? richard, you and I work on the same

[Gambas-user] cutn pasting a menu form to form

2011-09-12 Thread richard terry
Hi benoit, Just noticed if I cut and paste a menu from one form to another the order of the menu items isn't correct - think from memory they are pasted last to first Richard -- Doing More with Less: The Next

Re: [Gambas-user] Getting access to popup children of datebox

2011-09-12 Thread richard terry
On Monday 12 September 2011 23:15:57 Ian Haywood wrote: On Mon, Sep 12, 2011 at 11:05 PM, richard terry rte...@pacific.net.au wrote: I notice that the events on the database apply to the main control - clicking on the popup calander or time list dosn't have any obvious events. Anway to

Re: [Gambas-user] Getting access to popup children of datebox

2011-09-12 Thread Benoît Minisini
On Monday 12 September 2011 23:15:57 Ian Haywood wrote: On Mon, Sep 12, 2011 at 11:05 PM, richard terry rte...@pacific.net.au wrote: I notice that the events on the database apply to the main control - clicking on the popup calander or time list dosn't have any obvious events.

[Gambas-user] Arrays again

2011-09-12 Thread Dag-Jarle Johansen
Hi, I am feeling a little stupid, but I just can't make this running: Public xxx As Control (or Public xxx As Object) public sub ChangeControls() DIM I as integer For I = 0 To mTrans.LoginCount - 1 For Each xxx In Me.Children Debug xxx.Name

Re: [Gambas-user] DateChooser/Timerchooser

2011-09-12 Thread richard terry
On Monday 12 September 2011 22:55:55 Benoît Minisini wrote: Benoit, Not used the time chooser setting before but I notice that changing the font changes the display font but not the popup list which is extremely small and hard to see Regards Richard Which popup list ? see

Re: [Gambas-user] Arrays again

2011-09-12 Thread Dag-Jarle Johansen
danke, the info about the DEBUG was new to me, but should not have any influence on the problem as is. I will play a little around with it, and if it does not work, come back to you experts :-) regards Dag-Jarle 2011/9/12 tobias tobiasb...@web.de On 12.09.2011 22:20, Dag-Jarle Johansen

Re: [Gambas-user] cutn pasting a menu form to form

2011-09-12 Thread Benoît Minisini
Hi benoit, Just noticed if I cut and paste a menu from one form to another the order of the menu items isn't correct - think from memory they are pasted last to first Richard It should be fixed in revision #4121. Regards, -- Benoît Minisini

[Gambas-user] Error after error

2011-09-12 Thread Dag-Jarle Johansen
Hi, I am trying to create a pretty complex software here, but things that worked a year ago are now completely different. I can understand that, as Gambas is heavely developed. For me sometimes a little frustrating - with help and hints from the board here I get one step further and get a lot of

Re: [Gambas-user] Error after error

2011-09-12 Thread Benoît Minisini
Hi, I am trying to create a pretty complex software here, but things that worked a year ago are now completely different. I can understand that, as Gambas is heavely developed. For me sometimes a little frustrating - with help and hints from the board here I get one step further and get a

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Kevin Fishburne
On Sun, Sep 11, 2011 at 07:40, Kevin Fishburne kevinfishbu...@eightvirtues.com wrote: My code looks like this: ' For writing outgoing UDP data to memory. Public data As String Public mem As Stream ' Create data string for outgoing transaction queue. data = Space(8) mem = Memory

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Benoît Minisini
On Sun, Sep 11, 2011 at 07:40, Kevin Fishburne kevinfishbu...@eightvirtues.com wrote: My code looks like this: ' For writing outgoing UDP data to memory. Public data As String Public mem As Stream ' Create data string for outgoing transaction queue. data = Space(8) mem

Re: [Gambas-user] Error after error

2011-09-12 Thread Dag-Jarle Johansen
Thanks Benoit, I will download the last revision. But believe me, in some situations I get the message NULL OBJECT in line... My fault in the definition. Please do not misunderstand me, I am NOT complaining about Gambas, this is rather a cry for help. In this case I was able to solve the

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Kevin Fishburne
On 09/12/2011 09:19 PM, Benoît Minisini wrote: On Sun, Sep 11, 2011 at 07:40, Kevin Fishburne kevinfishbu...@eightvirtues.com wrote: My code looks like this: ' For writing outgoing UDP data to memory. Public data As String Public mem As Stream ' Create data string for outgoing

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Benoît Minisini
On 09/12/2011 09:19 PM, Benoît Minisini wrote: On Sun, Sep 11, 2011 at 07:40, Kevin Fishburne kevinfishbu...@eightvirtues.com wrote: My code looks like this: ' For writing outgoing UDP data to memory. Public data As String Public mem As Stream ' Create data string for

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Benoît Minisini
' Create data string. DataPointer = Alloc(8) Mem = Memory DataPointer For Read Write Write #Mem, (Server.DateCurrent + Server.DateUTC) As Float Data = Read #Mem As Float Print Original: (Server.DateCurrent + Server.DateUTC) Print From Mem: Float@(Data) Print Reversed:

Re: [Gambas-user] gb3: writing variables to a string using a memory stream and pointer

2011-09-12 Thread Kevin Fishburne
On 09/12/2011 10:24 PM, Benoît Minisini wrote: ' Create data string. DataPointer = Alloc(8) Mem = Memory DataPointer For Read Write Write #Mem, (Server.DateCurrent + Server.DateUTC) As Float Data = Read #Mem As Float Print Original: (Server.DateCurrent + Server.DateUTC) Print From Mem:

[Gambas-user] How to compress witg GB3?

2011-09-12 Thread Andrea Bertini
How to compress a directory/subdirectory inside GB3 with component gbcompress? thx andy -- BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA Learn about the latest advances in developing for the