[Gambas-user] Issue 105 in gambas: Migration crash

2011-09-12 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 105 by adamn...@gmail.com: Migration crash http://code.google.com/p/gambas/issues/detail?id=105 1) When I try to import a project with the attached class in it the IDE cr

[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 -- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA Learn about the latest advances in developing for the BlackBerry® mo

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: "&

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) > >

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 S

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 ' Cr

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 prroble

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 que

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)

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 ge

[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 n

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 --

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 > On 12.09.2011 22:20, Dag-Jarle Johansen wrote: > > Hi, > > > >

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 po

Re: [Gambas-user] Arrays again

2011-09-12 Thread tobias
On 12.09.2011 22:20, Dag-Jarle Johansen wrote: > 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

[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] 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 > > 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. > > > > > >

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 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 acces

[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 Generation

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 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 project and *I* can't

[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 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] 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: Th