Status: New
Owner:
Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any
Desktop-Any GUI-Any
New issue 82 by adamn...@gmail.com: DirChooser Toolbar mangled in gtk+
http://code.google.com/p/gambas/issues/detail?id=82
1) This issue regards the DirChooser control in Gambas3.
U
Status: New
Owner:
Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any
Desktop-Any GUI-Any
New issue 81 by adamn...@gmail.com: DirChooser doesn't reflect Root change
http://code.google.com/p/gambas/issues/detail?id=81
1) This issue regards the gambas3 DirChooser control us
How to get mantissa and exponent of normed float ?
for example:
float number= 27.52
normed: = 0.2752 * 10^2
function I'm looking for should return 0.2752 and 2
wally
--
Get a FREE DOWNLOAD! and
Just a quick "FYI" note, the default key association in LXDE for F11 is
maximize current window. This conflicts with Gambas IDE F11 usage as
"show console".
No response required.
Bruce
--
Get a FREE DOWNLOAD! and lear
2011/8/20 Benoît Minisini :
>> 2011/8/19 Benoît Minisini :
>> > To fix the bug tracker issue #78, I had to do some incompatible changes.
>> >
>> > But now, changing the return datatype of a method through inheritance is
>> > now correctly forbidden.
>> >
>> > Theoretically, I have to prevent method
> 2011/8/19 Benoît Minisini :
> > To fix the bug tracker issue #78, I had to do some incompatible changes.
> >
> > But now, changing the return datatype of a method through inheritance is
> > now correctly forbidden.
> >
> > Theoretically, I have to prevent method signature from changing between
2011/8/19 Benoît Minisini :
> To fix the bug tracker issue #78, I had to do some incompatible changes.
> But now, changing the return datatype of a method through inheritance is now
> correctly forbidden.
>
> Theoretically, I have to prevent method signature from changing between
> inheritance too
Am Samstag, den 20.08.2011, 15:26 +0200 schrieb Benoît Minisini:
> >
> > It seams, that I have a poppler problem
>
> It should be fixed in revision #4022.
>
Thanks, poppler compiles now.
--
Amicalement
Charlie
--
Get
>
> It seams, that I have a poppler problem
It should be fixed in revision #4022.
--
Benoît Minisini
--
Get a FREE DOWNLOAD! and learn more about uberSVN rich system,
user administration capabilities and model configu
Am Samstag, den 20.08.2011, 14:47 +0200 schrieb Benoît Minisini:
> > Am Samstag, den 20.08.2011, 13:29 +0200 schrieb Benoît Minisini:
> > > > Gambas 3 rev 4009 @ Ubuntu 11.04 64bit
> > > >
> > > > Way to reproduce:
> > > >
> > > > 1. Open search window.
> > > > 2. Pick word to search that can be
Am Samstag, den 20.08.2011, 14:47 +0200 schrieb Benoît Minisini:
> > Am Samstag, den 20.08.2011, 13:29 +0200 schrieb Benoît Minisini:
> > > > Gambas 3 rev 4009 @ Ubuntu 11.04 64bit
> > > >
> > > > Way to reproduce:
> > > >
> > > > 1. Open search window.
> > > > 2. Pick word to search that can be
> Am Samstag, den 20.08.2011, 13:29 +0200 schrieb Benoît Minisini:
> > > Gambas 3 rev 4009 @ Ubuntu 11.04 64bit
> > >
> > > Way to reproduce:
> > >
> > > 1. Open search window.
> > > 2. Pick word to search that can be found from multiple files, example;
> > > Dim, Function, etc.
> > > 3. Set sear
Am Samstag, den 20.08.2011, 13:29 +0200 schrieb Benoît Minisini:
> > Gambas 3 rev 4009 @ Ubuntu 11.04 64bit
> >
> > Way to reproduce:
> >
> > 1. Open search window.
> > 2. Pick word to search that can be found from multiple files, example; Dim,
> > Function, etc.
> > 3. Set search in source files
> Gambas 3 rev 4009 @ Ubuntu 11.04 64bit
>
> Way to reproduce:
>
> 1. Open search window.
> 2. Pick word to search that can be found from multiple files, example; Dim,
> Function, etc.
> 3. Set search in source files and click browse.
> 4. Chose first instance.
> 5. Edit the word that was searche
> > Hello all,
> >
> >
> > Does anyone know how to use or config the proxy parameter (Ex:
> > http://192.168.0.1:8080) using a WebView object please ?
> >
> > I try to configure the HTTP_PROXY variable in the user profile, try to
> > configure in the KDE control panel parameters of proxy but no
> Hello all,
>
>
> Does anyone know how to use or config the proxy parameter (Ex:
> http://192.168.0.1:8080) using a WebView object please ?
>
> I try to configure the HTTP_PROXY variable in the user profile, try to
> configure in the KDE control panel parameters of proxy but nothing change.
>
On Saturday 20 August 2011 10:37:32 Benoît Minisini wrote:
> To fix the bug tracker issue #78, I had to do some incompatible changes.
>
> - TreeView, ListView and ColumnView Find() method have been renamed as
> FindAt().
>
> - IconView.Find() has been renamed as FindAt().
>
> - Workspace.Childre
On 08/20/2011 03:57 AM, Caveat wrote:
> Seems ok to me...
>
> 5280 feet in a mile, 128 pixels in a foot
> = 128*5280
> = 675840 pixels in a mile
>
> At 20 MPH you'd cover
> 20*675840 pixels
> = 13516800 pixels
>
> In a whole hour you'd cover 13516800 pixels but each frame only lasts
> 1/30th second
Seems ok to me...
5280 feet in a mile, 128 pixels in a foot
= 128*5280
= 675840 pixels in a mile
At 20 MPH you'd cover
20*675840 pixels
= 13516800 pixels
In a whole hour you'd cover 13516800 pixels but each frame only lasts
1/30th second, there's 60 seconds in a minute and 60 minutes in an h
I came up with this equation, which I think is correct:
Public Function MPH2PPF(MPH As Single) As Single
' Convert miles per hour to pixels per frame.
' 1 mile = 675840 pixels.
' 1 hour = 108000 frames.
Return MPH * 675840 / 108000
End
The frame rate is 30 FPS, and 128 pixels = on
20 matches
Mail list logo