Re: [Gambas-user] Gambas-user Digest, Vol 102, Issue 34

2014-11-17 Thread Sam Dadds
Thanks for the replies.   The ListView.Ignore is set and works as expected, just unable to line up completly with the ComboBox.   Starting to look at Christof Thalhofer's Cobmobox and noticed am actual Window is being created within the parent Form then the Screen.X and Screen.Y are used to po

[Gambas-user] Events in local classes dont show up in the help

2014-11-17 Thread B Bruen
Looking at the help for a class in the current project it seems that any events declared do not appear in the help for that class. e.g. ' Gambas class file ''' A test for event inline help in local classes Event Test() '' A simple event Public Sub _new() End All that appears in the help brows

[Gambas-user] Issue 579 in gambas: Sqlite Conn.Exec failure with a CTE query

2014-11-17 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 579 by brucedot...@gmail.com: Sqlite Conn.Exec failure with a CTE query https://code.google.com/p/gambas/issues/detail?id=579 I have a common table expression (CTE)

Re: [Gambas-user] Progressbar_mousedown() does not work [solved]

2014-11-17 Thread Fabien Bodard
well this is another temporary soluce for this problem Tobias : Private Function FindControl(hParent as Container, sControlName as String) as Object dim hControl as Object For each hControl in hParent.Children if hControl is Container then hControl = FindControl(hControl, sControlName) if

Re: [Gambas-user] Bug with IDE detach Tab

2014-11-17 Thread B Bruen
On Mon, 17 Nov 2014 18:40:04 +0100 Benoît Minisini wrote: > Le 16/11/2014 03:42, B Bruen a écrit : > > > > If an IDE tab is detached and then reattached then if there are lines in > > the file to wide to display there is no scroll bar. > > > > I'd raise an error report but I have mucked up my lo

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
2014-11-17 22:47 GMT+01:00 Tobias Boege : > On Mon, 17 Nov 2014, Fabien Bodard wrote: >> This is the hexdump >> > > Yep, it has those weird 0xd 0xa sequences, a.k.a. Windows-style newlines, > which my original file didn't have... Can't be too difficult to make the > patch parser resistant to that,

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > This is the hexdump > Yep, it has those weird 0xd 0xa sequences, a.k.a. Windows-style newlines, which my original file didn't have... Can't be too difficult to make the patch parser resistant to that, as Gambas already supports different line delimiters

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
This is the hexdump 2014-11-17 22:31 GMT+01:00 Tobias Boege : > On Mon, 17 Nov 2014, Fabien Bodard wrote: >> But what is curious that is the FPath dialog output .. is present to >> me only the .project file ... look at the screenshot. Normally no >> program will affect the parsing of the file as t

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > But what is curious that is the FPath dialog output .. is present to > me only the .project file ... look at the screenshot. Normally no > program will affect the parsing of the file as the Patch class doing > it in pur gambas way. > Indeed. Actually I

Re: [Gambas-user] ComboBox UserContol, with pictures.

2014-11-17 Thread Jørn Erik Mørne
Den 17. nov. 2014 21:36, skrev Charlie Reinl: > Am Sonntag, den 16.11.2014, 17:57 + schrieb Sam Dadds: >> Hi All, >> >> Need help with a custom ComboBox. >> >>I've created a UserControl (extends UserControl) with the normal stuff >> (TextBox for selection, picture for selected item and pic

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
But what is curious that is the FPath dialog output .. is present to me only the .project file ... look at the screenshot. Normally no program will affect the parsing of the file as the Patch class doing it in pur gambas way. 2014-11-17 22:17 GMT+01:00 Tobias Boege : > On Mon, 17 Nov 2014, Fabie

[Gambas-user] Issue 578 in gambas: Quiting a program while Showmodal window open segfaults

2014-11-17 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 578 by r...@cyberjunky.nl: Quiting a program while Showmodal window open segfaults https://code.google.com/p/gambas/issues/detail?id=578 ___

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > [fabien@mobifab GAMBAS]$ tar -zxvf archive-0.0.1.tar.gz > Pahu/ > Pahu/.settings > Pahu/.src/ > Pahu/.src/FMain.form > Pahu/.src/FMain.class > Pahu/.project > Pahu/.directory > Pahu/.action/ > Pahu/.icon.png > Pahu/.lang/ > Pahu/.startup > Pahu/.gambas/ >

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
Maybe the difference in my output of patch make trouble in the output parsing in the IDE 2014-11-17 22:14 GMT+01:00 Fabien Bodard : > [fabien@mobifab GAMBAS]$ tar -zxvf archive-0.0.1.tar.gz > Pahu/ > Pahu/.settings > Pahu/.src/ > Pahu/.src/FMain.form > Pahu/.src/FMain.class > Pahu/.project > Pahu/

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
[fabien@mobifab GAMBAS]$ tar -zxvf archive-0.0.1.tar.gz Pahu/ Pahu/.settings Pahu/.src/ Pahu/.src/FMain.form Pahu/.src/FMain.class Pahu/.project Pahu/.directory Pahu/.action/ Pahu/.icon.png Pahu/.lang/ Pahu/.startup Pahu/.gambas/ Pahu/.hidden/ [fabien@mobifab GAMBAS]$ cd Pahu/ [fabien@mobifab Pahu]

Re: [Gambas-user] ComboBox UserContol, with pictures.

2014-11-17 Thread Charlie Reinl
Am Sonntag, den 16.11.2014, 17:57 + schrieb Sam Dadds: > Hi All, > > Need help with a custom ComboBox. > > I've created a UserControl (extends UserControl) with the normal stuff > (TextBox for selection, picture for selected item and picture for dropdown > button). > > The actual drop d

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > nothing to do ... at same on a clean unpacked project. > I have no explanation. I think we're both using pretty recent Gambas versions and nothing was done to the patch dialogs recently... You can still try to apply the patch manually, assuming the sou

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
nothing to do ... at same on a clean unpacked project. 2014-11-17 18:54 GMT+01:00 Tobias Boege : > On Mon, 17 Nov 2014, Fabien Bodard wrote: >> ouch ... i've a problem with your patch... it allow me to just ugrade >> the .project file... >> > > Strange. For me it works as follows: > > 1. Unpack t

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > ouch ... i've a problem with your patch... it allow me to just ugrade > the .project file... > Strange. For me it works as follows: 1. Unpack the archive.tar.gz from Sean, 2. Open that project, 3. Project -> Patch -> Apply, 4. Applies cleanly. Did

Re: [Gambas-user] gb.args: Negative numbers as arguments

2014-11-17 Thread Benoît Minisini
Le 15/11/2014 11:51, Tobias Boege a écrit : > Hi, > > with the attached project, negative numbers (indicated by a minus sign in > fron of them) are treated differently under various circumstances: > > 0. Setup: > $ tar -zxvf ColorSelect-1.1.37.tar.gz > $ cd ColorSelect > $ gbc3 -g

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
ouch ... i've a problem with your patch... it allow me to just ugrade the .project file... 2014-11-17 18:05 GMT+01:00 Tobias Boege : > On Mon, 17 Nov 2014, Sean Sayandeep Khan wrote: >> Hello, I have the folloing setup (See attached image, >> UI1.png). The Canvas is a scrollarea. I want to add tex

Re: [Gambas-user] Bug with IDE detach Tab

2014-11-17 Thread Benoît Minisini
Le 16/11/2014 03:42, B Bruen a écrit : > > If an IDE tab is detached and then reattached then if there are lines in the > file to wide to display there is no scroll bar. > > I'd raise an error report but I have mucked up my login credentials. > > regards > Bruce > I don't have this problem. Pleas

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Sean Sayandeep Khan wrote: > Hello, I have the folloing setup (See attached image, > UI1.png). The Canvas is a scrollarea. I want to add text > commands, such as "ADDTILE 10,10 40,60 hello" in the > textbox called Command. I expect as output (on clicking > the button "exec"

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Sean Sayandeep Khan
@Fabian, this is from the first message : > ... I want to add text > commands, such as "ADDTILE 10,10 40,60 hello" in the > textbox called Command. I expect as output (on clicking > the button "exec") a tile of width 40 and height 60 to > appear with top left being 10, 10 in the canvas. Here i

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Fabien Bodard
What is your goal ? 2014-11-17 15:06 GMT+01:00 Sean Sayandeep Khan : > Here the source archive : attached > > > -- > Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server > from Actuate! Instantly Supercharge Y

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Sean Sayandeep Khan
Here the source archive : attached archive-0.0.1.tar.gz Description: application/gzip -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Da

Re: [Gambas-user] Scrollarea Graphics

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Sean Sayandeep Khan wrote: > Hello, I have the folloing setup (See attached image, > UI1.png). The Canvas is a scrollarea. I want to add text > commands, such as "ADDTILE 10,10 40,60 hello" in the > textbox called Command. I expect as output (on clicking > the button "exec"

[Gambas-user] Scrollarea Graphics

2014-11-17 Thread Sean Sayandeep Khan
Hello, I have the folloing setup (See attached image, UI1.png). The Canvas is a scrollarea. I want to add text commands, such as "ADDTILE 10,10 40,60 hello" in the textbox called Command. I expect as output (on clicking the button "exec") a tile of width 40 and height 60 to appear with top lef

Re: [Gambas-user] Progressbar_mousedown() does not work [solved]

2014-11-17 Thread Tobias Boege
On Mon, 17 Nov 2014, Fabien Bodard wrote: > Progressbar is just a drawingarea that dsplay a blue square so > putting a drawingarea on another is not really the soluce > > You can do : > > > ' Gambas class file > > Private OBS As Observer > > > Public Sub Form_Open() > > OBS = New Obse