Re: [Gambas-user] More IDE wish list items

2014-07-10 Thread B Bruen
for the currently selected control. > > > > That's possible. > > > > Done in revision #6369. > > -- > Benoît Minisini > Thanks Benoît That is much easier! Particularly when I've just used the Embed into a Container menu regards B -- B Bruen ---

[Gambas-user] Color

2014-07-14 Thread B Bruen
ut I don't think that is possible. 4) Some controls, e.g. DirChooser, don't set the background color according to the Background property. It seems to set the background color of the bar at the top of the chooser. Is there any reason for this? tia Bruce -- B Bruen -

Re: [Gambas-user] Color

2014-07-17 Thread B Bruen
On Tue, 15 Jul 2014 15:07:40 +0200 Benoît Minisini wrote: > Le 15/07/2014 00:52, B Bruen a écrit : ... > > 1) I'd like to define some new color names (e.g. DarkBackground) as > > there is just not enough standard color names to do all I need. This > > is not a problem

Re: [Gambas-user] Color

2014-07-17 Thread B Bruen
On Tue, 15 Jul 2014 15:07:40 +0200 Benoît Minisini wrote: > Le 15/07/2014 00:52, B Bruen a écrit : ... > > 4) Some controls, e.g. DirChooser, don't set the background color > > according to the Background property. It seems to set the background > > color of the bar

Re: [Gambas-user] IDE crash on autocomplete

2014-07-18 Thread B Bruen
On Sat, 19 Jul 2014 02:12:16 +0200 Benoît Minisini wrote: > Le 19/07/2014 00:59, B Bruen a écrit : > > I keep getting an IDE crash when typing Colo (see attached pic). > > Clues: I have a class, Color, within this project. Its' purpose is to > > override the nativ

Re: [Gambas-user] Settings

2014-07-27 Thread B Bruen
; i.e. the root directory (strangely enough!) already exists. That line should not fail i.e. the Try should ignore the error silently. But with sdl it appears not too? Definitely a bug within Gambas itself. Ov

Re: [Gambas-user] Settings

2014-07-27 Thread B Bruen
fail, though) regards Bruce -- B Bruen -- Infragistics Professional Build stunning WinForms apps today! Reboot your WinForms applications with our WinForms controls. Build a bridge from your legacy apps to the future.

Re: [Gambas-user] Settings

2014-07-27 Thread B Bruen
On Mon, 28 Jul 2014 14:29:43 +0930 B Bruen wrote: > On Sun, 27 Jul 2014 20:35:53 -0600 > Randall Morgan wrote: > > > Must be too big on your end. I know I and others have sent larger files... > > But the link works also. I'll look at your code and get back to you. >

Re: [Gambas-user] Settings

2014-07-27 Thread B Bruen
On Mon, 28 Jul 2014 07:18:47 +0200 Benoît Minisini wrote: > Le 28/07/2014 06:59, B Bruen a écrit : > > On Sun, 27 Jul 2014 20:35:53 -0600 > > Randall Morgan wrote: > > > >> Must be too big on your end. I know I and others have sent larger files... > >> But

Re: [Gambas-user] Settings

2014-07-27 Thread B Bruen
On Mon, 28 Jul 2014 14:56:38 +0930 B Bruen wrote: > On Mon, 28 Jul 2014 07:18:47 +0200 > Benoît Minisini wrote: > > > Maybe not clicking the "stop on each error" button in the IDE would > > solve the problem? :-) > > > > -- > > Benoît Minis

[Gambas-user] Using WITH on non-objects

2014-07-30 Thread B Bruen
current With target. I don't know how the compiler works with WITH but given the above array constructs we now have, it looks like it expands: WITH .something .something . END WITH to: WITH .something .something . END WITH So w

Re: [Gambas-user] Using command line arguments in GUI applications

2014-08-21 Thread B Bruen
gt; arguments to some method call appear in that help text but if you experiment > a bit with gb.args (place Args.Begin(), ..., Args.End() blocks into different > sections of your program or look into its source code), you'll see that it is >

Re: [Gambas-user] Add new command to: Copy directories recursively

2014-08-25 Thread B Bruen
em As String wkrtn = Dir(root &/ rootext, pattern, filter) sdirs = Dir(root &/ rootext, "*", gb.Directory) For Each sd In sdirs If sd = ".svn" Then Continue' ignore subversion dirs For Each item In (RecDir(root &am

[Gambas-user] How to reset a toolbar config?

2014-08-31 Thread B Bruen
t=["$lblFilter","taskfilter.1","$lblSort","$lblSearch","tasksearch.0"] My problem is that there appears to be no way to "reset" the toolbar in the IDE to get the ori

Re: [Gambas-user] How to reset a toolbar config?

2014-08-31 Thread B Bruen
On Mon, 01 Sep 2014 01:29:43 +0200 Benoît Minisini wrote: > Le 01/09/2014 01:06, B Bruen a écrit : > > I have this recurring problem with the gb.form.mdi Toolbar. For some > > reason, unknown, I occasionally lose the project config file contents that > > describe the

[Gambas-user] The new IDE opening screen

2014-09-09 Thread B Bruen
Simple question: What does the search function actually search? Obviously by project name but what else? I would have thought it also searched the project description but I am getting results that don't match that expectation. tia -- B

Re: [Gambas-user] Modules

2014-09-15 Thread B Bruen
example: in module "MyUtil" Public CurrentCustomer As CCustomer Public Sub Execute_Current_Customer(PrejudiceLevel As Integer) CurrentCustomer = Null End in, say, "FMain" Public Sub Load(CustID) MyUtil.CurrentCustomer.Load(CustID) If MyUtil.CurrentCustomer.IsLatePayer then

Re: [Gambas-user] Static Classes and Modules

2014-09-20 Thread B Bruen
;dynamic" heap. The intent was to provide a way to control allocation of resources for the object. For example, if the program needed a large resource hungry chunk of data, but that data was only used in certain cases of execution, then rather than "always" allocating space for

Re: [Gambas-user] Static Classes and Modules

2014-09-20 Thread B Bruen
de I decided that, since the StrUtil methods were essentially static in nature and as the class had no dynamic data, I could change it to a module. Newer projects now access those methods via the module name as they should. But the old

Re: [Gambas-user] Static Classes and Modules

2014-09-20 Thread B Bruen
have to see if my old Bertram Meyer text book is in the attic as I am getting more and more sure that "static" means allocated at class level rather than at instance level and nothing more. -- B Bruen -- Slashd

[Gambas-user] A good idea?

2014-09-20 Thread B Bruen
.e. the "client", has no code at all for managing the pop-up (but does have a handler for an event raised by the pop-up). What do you think? regards Bruce -- B Bruen virtctls-0.0.5.tar.gz Description: Binary data --

Re: [Gambas-user] Alternate language generation.

2014-09-20 Thread B Bruen
stions/interest in > >> using the IDE to generate source for other languages ? > >> > > > > I do not but I have seen in the archives that *many* people where around > > Gambas before I arrived which aren't here anymore. > > I thought To

Re: [Gambas-user] A good idea?

2014-09-20 Thread B Bruen
On Sun, 21 Sep 2014 00:57:55 +0200 Tobias Boege wrote: > On Sun, 21 Sep 2014, B Bruen wrote: > > As some will know, we use a lot of third-party (i.e. developed by us) > > components and libraries in our projects. > > Some of these are re-usable pop-up forms to provide c

Re: [Gambas-user] TextArea Pop-up Menu on right click

2014-09-30 Thread B Bruen
Thanks for your ideas! > > Rolf > > Something like Public Sub Form_Open() TextArea1.PopupMenu = "mnuDummy" End (where mnuDummy does not exist) seems to work hth B -- B Bruen -- Me

[Gambas-user] Relative paths

2014-09-30 Thread B Bruen
out Me" info and I want to show the client project logo in it. The salient point is that I want to get at an image file in the client executable. Any clues? B -- B Bruen -- Meet PCI DSS 3.0 Compliance Requirement

Re: [Gambas-user] Relative paths

2014-10-01 Thread B Bruen
On Wed, 01 Oct 2014 08:26:26 +0200 Benoît Minisini wrote: > Le 01/10/2014 06:40, B Bruen a écrit : > > (and I thought I knew it all! ) > > > > In a component I want to refer to a path in the client project > > executable. To be precise in the client project I have a re

Re: [Gambas-user] TextArea Pop-up Menu on right click

2014-10-02 Thread B Bruen
On Thu, 02 Oct 2014 10:22:21 +0200 Rolf-Werner Eilert wrote: > > > Am 30.09.2014 15:10, schrieb B Bruen: > > On Tue, 30 Sep 2014 10:59:36 +0200 > > Rolf-Werner Eilert wrote: > > > >> Hi, > >> > >> TextArea produces a pop-up menu when right

Re: [Gambas-user] TextArea Pop-up Menu on right click

2014-10-02 Thread B Bruen
u does not exist, nothing happens 2) fix the STOP EVENT issue 3) make the "standard menu" visible in the IDE somehow. Of these, I'd obviously prefer 1. But presumably this would mean fixing QTx?? (But I dont care about that) 2 would require a fair bit of work on my part. 3 I don

[Gambas-user] IDE Feature request

2014-10-03 Thread B Bruen
When an untrapped error occurs running a project within the IDE the program pauses and the error message appears in the code editor as a popup at the significant line. Would it be possible for the IDE to somehow copy that message to the clipboard? regards Bruce -- B Bruen

[Gambas-user] ICal parser

2014-10-06 Thread B Bruen
I don't suppose that anyone has an iCal parser utility that they would care to share do they? -- B Bruen -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status wit

[Gambas-user] help generation for local classes

2014-10-06 Thread B Bruen
I am not sure where this crept in but... The IDE help browser now deems local classes to be non-creatable if they do not contain a _new() method. pic attached -- B Bruen -- Meet PCI DSS 3.0 Compliance Requirements

Re: [Gambas-user] ICal parser

2014-10-07 Thread B Bruen
On Tue, 7 Oct 2014 19:45:10 +0200 Fabien Bodard wrote: > ... what is iCal :-P ? > > 2014-10-07 4:25 GMT+02:00 B Bruen : > > I don't suppose that anyone has an iCal parser utility that they would care > > to share do they? > > > > -- > > B Bruen

Re: [Gambas-user] A good idea?

2014-10-11 Thread B Bruen
uot;standard" menus by dragging a virtual control onto a form. This would include, say, File|Edit|View|Tools|Help and all the associated submenus. Just drag the VStandardMenu virtual control onto the form - no need to build these menus via the IDE each time rgrds Bruce -- B Bru

[Gambas-user] (Custom) virtual controls

2014-10-11 Thread B Bruen
hown. Any clues? regards Bruce -- B Bruen -- Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports Are you Audit-Ready for PCI DSS 3.0

Re: [Gambas-user] (Custom) virtual controls

2014-10-11 Thread B Bruen
On Sun, 12 Oct 2014 01:45:26 +0200 Benoît Minisini wrote: > Le 12/10/2014 00:52, B Bruen a écrit : > > A couple of oddities have emerged from my work in the "A Good Idea?" > > thread: > > > > 1) the _IsVirtual constant - this appears now to be a function? Is

[Gambas-user] A sad event

2014-10-16 Thread B Bruen
munity and the local thoroughbred racing community have been shaken to the core by this event. Again my apologies for having troubled you with this. regards Bruce -- B Bruen -- Comprehensive Server Monitoring wit

[Gambas-user] A real big enhancement request

2014-10-30 Thread B Bruen
infrastructure files a bit easier best regards Bruce -- B Bruen -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Conflict discovered in file....

2014-10-30 Thread B Bruen
t be in the repository. I will fix that... > > -- > Benoît Minisini > > ------ > ___ > Gambas-user mailing list > Gambas-user@lists.sourceforge.net > http

Re: [Gambas-user] Datasource.Filter does not work

2014-11-06 Thread B Bruen
r delimiters for the database being used eg for postgresql the filter would result in: "User = $$Marty$$". hth Bruce -- B Bruen -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

[Gambas-user] Silly IDE problem

2014-11-08 Thread B Bruen
he End statement but I cannot enter anything in the Watch tab, nor can I resize any existing debug window. Further the calendar popup now appears on all desktops and is "modal" in the sense that I cannot ... enter text into this post for example. Confirm? Bug? Fe

Re: [Gambas-user] Resolve error compiling Gambas 3.6.x . gb.pdf -> File: PDFDoc.h not found

2014-11-08 Thread B Bruen
o do with prawns? Please try and rephrase your post in something that makes the least bit of sense to this audience. Calm down and ask a sensible question. B Bruen -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

[Gambas-user] SwitchButton keyboard actions

2014-11-10 Thread B Bruen
It appears that there is no way to change a SwitchButton value using the keyboard? Comments? regards -- B Bruen -- Comprehensive Server Monitoring with Site24x7. Monitor 10 servers for $9/Month. Get alerted through

Re: [Gambas-user] [Gambas-devel-svn] SF.net SVN: gambas:[6632] gambas/trunk/app/src/gambas-wiki

2014-11-11 Thread B Bruen
; "There's an old saying: Don't change anything... ever!" -- Mr. Monk Yes, it is a nice look. Two comments though: 1) the doc/richtext page doesn't look quite right. 2) code examples are a bit too hard to read at the smaller font size used. regards Bruce -- B Bruen

Re: [Gambas-user] [Gambas-devel-svn] SF.net SVN: gambas:[6632] gambas/trunk/app/src/gambas-wiki

2014-11-11 Thread B Bruen
On Tue, 11 Nov 2014 23:22:50 +0100 Benoît Minisini wrote: > Le 11/11/2014 23:01, B Bruen a écrit : > > > > Yes, it is a nice look. > > > > Two comments though: > > 1) the doc/richtext page doesn't look quite right. > > What do you mean? How ver

[Gambas-user] Possible sqlite3 component error

2014-11-12 Thread B Bruen
p.*, tmp.depth + 1 FROM pages p JOIN tmp ON (p.parent=tmp.id)) SELECT id, title, parent, category, indexed, htmlsrc, depth FROM tmp ORDER BY d epth apart from the line break in the ORDER BY clause (which I dont think is the problem) I cannot see any

Re: [Gambas-user] Snippets bug

2014-11-12 Thread B Bruen
riableName} as Integer vx Private $h${1:VariableName} as Object vv Private $v${1:VariableName} as Variant and they all behave as you would expect. hth Bruce -- B Bruen -- Comprehensive Server Monitoring with Site24x7. Monito

[Gambas-user] Bug with IDE detach Tab

2014-11-15 Thread B Bruen
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 -- B

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 a

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

2014-11-17 Thread B Bruen
All that appears in the help browser is as attached. -- B Bruen -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Intera

<    1   2