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