Re: [Gambas-user] Strange behavior of .Move function...

2012-09-17 Thread Benoît Minisini
Le 17/09/2012 20:52, Ru Vuott a écrit : > Hello Benoît, > > so, I tried with rev. 5173. > > ".Move" method now works well. It's OK and two moving parameters and two > resizing parameters. > > Problems persist with the ".Resize" method. > > Bye > vuott > Fixed in revision #5174. Regards, -- Ben

Re: [Gambas-user] Strange behavior of .Move function...

2012-09-17 Thread Ru Vuott
> Oggetto: Re: [Gambas-user] Strange behavior of .Move function... BIS > A: "mailing list for gambas users" > Data: Lunedì 17 settembre 2012, 13:18 > Le 17/09/2012 12:54, Ru Vuott a > écrit : > > Hello Benoît, > > > > I tried, now, my code on a 32bit sy

Re: [Gambas-user] Strange behavior of .Move function... BIS

2012-09-17 Thread Ru Vuott
> > Can you try with revision #5171? > > -- > Benoît Minisini > Benoît, I can try, but tonight. I'll let you know. Bye vuott -- Live Security Virtual Conference Exclusive live event will cover all the ways today's

Re: [Gambas-user] Strange behavior of .Move function... BIS

2012-09-17 Thread Benoît Minisini
Le 17/09/2012 12:54, Ru Vuott a écrit : > Hello Benoît, > > I tried, now, my code on a 32bit system (Kubuntu - KDE), and I saw those > metods (.Move and .Resize) work weeery well ! > > So, as you said the problem is on 64bit system. > > Bye > vuott > Can you try with revision #5171? -- Benoît M

[Gambas-user] Strange behavior of .Move function... BIS

2012-09-17 Thread Ru Vuott
Hello Benoît, I tried, now, my code on a 32bit system (Kubuntu - KDE), and I saw those metods (.Move and .Resize) work weeery well ! So, as you said the problem is on 64bit system. Bye vuott -- Live Security Virtual Co

Re: [Gambas-user] Strange behavior of .Move function in DesktopWindow Class

2012-09-17 Thread Ru Vuott
> > Indeed. I guess you are using a 64 bits system like me? > > -- > Benoît Minisini > > - Yes, Benoît, my system is 64bit (and Gambas 3). In your opinion, how is it then that problem happens? bye vuott ---

Re: [Gambas-user] Strange behavior of .Move function in DesktopWindow Class

2012-09-17 Thread Benoît Minisini
Le 17/09/2012 11:00, Ru Vuott a écrit : > Hello, > > I have this following code (I set also gb.desktop component): > > *** > Public Sub Button1_Click() > > Dim a As Integer[] > Dim w As DesktopWindow > >a = Desktop.FindWindow("name_of_a_window") > > w = New Deskt

[Gambas-user] Strange behavior of .Move function in DesktopWindow Class

2012-09-17 Thread Ru Vuott
Hello, I have this following code (I set also gb.desktop component): *** Public Sub Button1_Click() Dim a As Integer[] Dim w As DesktopWindow a = Desktop.FindWindow("name_of_a_window") w = New DesktopWindow(a[0]) ' it should only move the window down