Re: [Gambas-user] gb3: Draw method with same source and destination image

2011-02-02 Thread Benoît Minisini
> On 02/02/2011 07:00 PM, Benoît Minisini wrote: > > Actually you want some sort of scrolling? > > Yes, although the image "shifting" I spoke of isn't what creates the > scrolling directly. Here's a brief breakdown of what happens in the game. > > The server has a map 65536x65536 tiles, with each

Re: [Gambas-user] make install issue

2011-02-02 Thread John Spikowski
On Thu, 2011-02-03 at 03:08 +0200, Jussi Lahtinen wrote: > rev 3533? > > Jussi jrs@Laptop:~/gambas-dev/trunk$ svn info Path: . URL: https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk Repository Root: https://gambas.svn.sourceforge.net/svnroot/gambas Repository UUID: 96304659-1d19-0410

Re: [Gambas-user] make install issue

2011-02-02 Thread Jussi Lahtinen
rev 3533? Jussi On Thu, Feb 3, 2011 at 02:59, John Spikowski wrote: > Compiling Database/Database/... > OK > Compiling Database/DataReportExample/... > gbc: error: Component not found: gb.qt > > > I just finish building 3 from scratch (make uninstall, make clean, > reconf-all, ...) > > This cou

Re: [Gambas-user] Key code problem and svn error

2011-02-02 Thread Jussi Lahtinen
Hmmm... problem is not quite solved I still cannot distinguish pressing shift from pressing shift and something else. I need to stop event if only shift is pressed. This is problematic as I would need to check against every key that gives key.text = "". Jussi On Thu, Feb 3, 2011 at 02:55, Ju

[Gambas-user] make install issue

2011-02-02 Thread John Spikowski
Compiling Database/Database/... OK Compiling Database/DataReportExample/... gbc: error: Component not found: gb.qt I just finish building 3 from scratch (make uninstall, make clean, reconf-all, ...) This could well be the reports component is still too early in development to mention issues.

Re: [Gambas-user] gb3: Draw method with same source and destination image

2011-02-02 Thread Kevin Fishburne
On 02/02/2011 07:00 PM, Benoît Minisini wrote: > Actually you want some sort of scrolling? Yes, although the image "shifting" I spoke of isn't what creates the scrolling directly. Here's a brief breakdown of what happens in the game. The server has a map 65536x65536 tiles, with each tile represen

Re: [Gambas-user] Key code problem and svn error

2011-02-02 Thread Jussi Lahtinen
> Very possible that I have missed something (I'm tired), but how do I catch > > PageDown etc? > > > > ? Key["PageDown"] > > Gives 0. > > > > And so it does with PageUp and Shift. > > > > I know there is Key.Shift property, but problem with it is, I can't > > distinguish "Shift" from "Shift + Somet

Re: [Gambas-user] Key code problem and svn error

2011-02-02 Thread Benoît Minisini
> Hi! > Very possible that I have missed something (I'm tired), but how do I catch > PageDown etc? > > ? Key["PageDown"] > Gives 0. > > And so it does with PageUp and Shift. > > I know there is Key.Shift property, but problem with it is, I can't > distinguish "Shift" from "Shift + Something" wit

[Gambas-user] Key code problem and svn error

2011-02-02 Thread Jussi Lahtinen
Hi! Very possible that I have missed something (I'm tired), but how do I catch PageDown etc? ? Key["PageDown"] Gives 0. And so it does with PageUp and Shift. I know there is Key.Shift property, but problem with it is, I can't distinguish "Shift" from "Shift + Something" with it. Ie. I want to re

Re: [Gambas-user] gb3: Draw method with same source and destination image

2011-02-02 Thread Benoît Minisini
> On 02/02/2011 02:11 PM, Kevin Fishburne wrote: > > I have an image, blandscape, that is 1408 x 1408 pixels. This code works: > > > > blandscape.Draw(blandscape, 0, -128) > > > > This code produces odd results (attached): > > > > blandscape.Draw(blandscape, 0, 128) > > > > I'm trying to shift

Re: [Gambas-user] gb3: Draw method with same source and destination image

2011-02-02 Thread Kevin Fishburne
On 02/02/2011 02:11 PM, Kevin Fishburne wrote: > I have an image, blandscape, that is 1408 x 1408 pixels. This code works: > > blandscape.Draw(blandscape, 0, -128) > > This code produces odd results (attached): > > blandscape.Draw(blandscape, 0, 128) > > I'm trying to shift the image in any of eigh

Re: [Gambas-user] Colorize crash

2011-02-02 Thread Benoît Minisini
> Hello, > > gambas3-svn3480 > ubuntu 10.04 > AMD64 > > i have the next code for apply colorize on an Image object > > = > -- > FMain > -- > > Public iColor As Integer > > Public Sub btnColorize_Click() > > FColorChooser.ShowModal >

Re: [Gambas-user] Circular references

2011-02-02 Thread Benoît Minisini
>Hello everybody, >is there a way to turn off the messages on circular references Gambas > issues on terminating a program? They are very disturbing when you > write a command-line application whose output must be read by other > programs. Regards, >Daniel This message means that th

[Gambas-user] Circular references

2011-02-02 Thread Daniel Fuchs
Hello everybody, is there a way to turn off the messages on circular references Gambas issues on terminating a program? They are very disturbing when you write a command-line application whose output must be read by other programs. Regards, Daniel -