Re: [Gambas-user] Getting the "un-specialed" XMLElement.TextContent string

2014-06-24 Thread Adrien Prokopowicz
Le Tue, 17 Jun 2014 01:37:49 +0200, B Bruen a écrit: > (I'm sure I've done this before, but I can't find my prior code nor can > I find it in either of the help sites.) > > I just want to set a string variable to the text content of an element. > I am almost certain there was a way to have

[Gambas-user] How to deal with unicode

2014-06-24 Thread Safiur Rahman
I am converting an application to local language which uses "Devanagri" letters and numbers. I have changed System.Language to "ne_NP.UTF-8". My System.Charset is "UTF-8". I have little knowledge of lacalization methods used by gambas. My problems are: 1) Datebox displays month and week days in

[Gambas-user] Request for the Gambas IDE: a way to query the help in an offline mode

2014-06-24 Thread Julio Sanchez
Request for the Gambas IDE: a way to query the help in an offline mode. Perhaps a path where Gambas look for local web pages or better, a way to download the wikigambas website and accessing the help without internet. Regards

Re: [Gambas-user] How to deal with unicode

2014-06-24 Thread Charlie Reinl
Am Dienstag, den 24.06.2014, 17:43 + schrieb Safiur Rahman: > I am converting an application to local language which uses "Devanagri" > letters and numbers. I have changed System.Language to "ne_NP.UTF-8". My > System.Charset is "UTF-8". I have little knowledge of lacalization methods > used

[Gambas-user] Feature Request

2014-06-24 Thread Stephen
When adding new modules, classes, or forms the ability to select pre-existing code is good, an improvement would be enabling multi-select of those items, eliminating the need to loop through the RightClick->New->[Module/Class/Form]->Existing->[Selection]. Just a thought. -- Kindest Regards

Re: [Gambas-user] Desktop.X11 Systray

2014-06-24 Thread Benoît Minisini
Le 24/06/2014 22:38, herberth guzman a écrit : > hi Benoit > > No I thanked the transparent property has been very useful. Thank you. > > I am making changes to the project, myinnova (desktop configuration) is > the easiest to customize. > change in the panel (upper, lower, applets, background and

[Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread herberth guzman
Hi benoit a question I need what a form (F_PANEL) to press ALT+CLICK what can NOT move the form. How I can do? thanks regards. herberth Guzman -- Open source business process management suite built on Java and Eclipse

[Gambas-user] Desktop.X11 Systray

2014-06-24 Thread herberth guzman
hi Benoit No I thanked the transparent property has been very useful. Thank you. I am making changes to the project, myinnova (desktop configuration) is the easiest to customize. change in the panel (upper, lower, applets, background and more). I have a problem with the panel and systray if th

[Gambas-user] Window Manager Kwin ALT+TAB

2014-06-24 Thread herberth guzman
Hi Benoit if I use the window manager Kwin pressing ALT + TAB show the form(F_PANEL), I do not want to show it try to solve it with the new ATOM and gb.desktop.x11 I could not fix it. How I can fix I? with Openbox works well. works well with Mutter. Change _NET_WM_STATE_SKIP_PAGER _NET_WM_STA

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread Benoît Minisini
Le 24/06/2014 22:41, herberth guzman a écrit : > Hi benoit > > a question > > I need what a form (F_PANEL) to press ALT+CLICK > what can NOT move the form. > > How I can do? > > thanks > > regards. > > herberth Guzman Sorry, I didn't understand what you said. -- Benoît Minisini

Re: [Gambas-user] Window Manager Kwin ALT+TAB

2014-06-24 Thread Benoît Minisini
Le 24/06/2014 22:50, herberth guzman a écrit : > Hi Benoit > > if I use the window manager Kwin > pressing ALT + TAB show the form(F_PANEL), I do not want to show it > > try to solve it with the new ATOM and gb.desktop.x11 > I could not fix it. > > How I can fix I? > > with Openbox works well. > wo

[Gambas-user] Desktop.X11 Systray

2014-06-24 Thread herberth guzman
' Gambas module file M_SYSTRAY(MODULE) Public process_nm As Process Public Sub Start_SysTray() process_nm = Shell "nm-applet > /dev/null 2>/dev/null" X11Systray.Show(f_panel.draSystemTray.Handle) End Public Sub ArrangeTray() Dim I As Integer Dim X, Y, H As Integer X = 2 Y = 2

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread Fabien Bodard
I think He want to disable the ability of x to move a windows with alt + mousedown Le 24 juin 2014 22:52, "Benoît Minisini" a écrit : > Le 24/06/2014 22:41, herberth guzman a écrit : > > Hi benoit > > > > a question > > > > I need what a form (F_PANEL) to press ALT+CLICK > > what can NOT move the

Re: [Gambas-user] Desktop.X11 Systray

2014-06-24 Thread Benoît Minisini
Le 24/06/2014 23:04, herberth guzman a écrit : > ' Gambas module file > > M_SYSTRAY(MODULE) > > Public process_nm As Process > > Public Sub Start_SysTray() > process_nm = Shell "nm-applet > /dev/null 2>/dev/null" > >X11Systray.Show(f_panel.draSystemTray.Handle) > End > > > Public Sub Arrang

Re: [Gambas-user] Getting the "un-specialed" XMLElement.TextContent string

2014-06-24 Thread B Bruen
On Tue, 24 Jun 2014 16:36:11 +0200 "Adrien Prokopowicz" wrote: > Le Tue, 17 Jun 2014 01:37:49 +0200, B Bruen a > écrit: > > > (I'm sure I've done this before, but I can't find my prior code nor can > > I find it in either of the help sites.) > > > > I just want to set a string variable to t

[Gambas-user] markdown to html?

2014-06-24 Thread B Bruen
@Benoît Hi, could you tell me where (exactly) in the IDE code you convert markdown text to html please. I would like to use that code for my own nefarious purposes :-) tia Bruce -- B Bruen -- Open source business

[Gambas-user] constructor events

2014-06-24 Thread B Bruen
(I don't know whether I have already asked this.) Is it possible to raise events in a class constructor and trap them in an observing class? Looking at it, I don't think the object exists yet and so the answer appears to be no (and my experiments seem to bear this out) but I am asking anyway in

Re: [Gambas-user] markdown to html?

2014-06-24 Thread Benoît Minisini
Le 25/06/2014 01:23, B Bruen a écrit : > @Benoît > > Hi, could you tell me where (exactly) in the IDE code you convert > markdown text to html please. I would like to use that code for my > own nefarious purposes :-) > > tia Bruce > In the gb.markdown component in the development version. -- Be

[Gambas-user] modifying an enumerated set during the loop

2014-06-24 Thread B Bruen
I realise that modifying the enumerated set during a For Each loop is fraught with danger but I do have a situation where this is "necessary". The following is a very simplified mock up of an anomaly in gambas that I am seeing. The real situation is complex, I'll explain it later in this post.

Re: [Gambas-user] markdown to html?

2014-06-24 Thread B Bruen
On Wed, 25 Jun 2014 01:42:09 +0200 Benoît Minisini wrote: > Le 25/06/2014 01:23, B Bruen a écrit : > > @Benoît > > > > Hi, could you tell me where (exactly) in the IDE code you convert > > markdown text to html please. I would like to use that code for my > > own nefarious purposes :-) > > > > t

Re: [Gambas-user] modifying an enumerated set during the loop

2014-06-24 Thread Benoît Minisini
Le 25/06/2014 02:30, B Bruen a écrit : > I realise that modifying the enumerated set during a For Each loop is > fraught with danger but I do have a situation where this is > "necessary". The following is a very simplified mock up of an anomaly > in gambas that I am seeing. The real situation is c

Re: [Gambas-user] modifying an enumerated set during the loop

2014-06-24 Thread B Bruen
On Wed, 25 Jun 2014 02:43:11 +0200 Benoît Minisini wrote: > Le 25/06/2014 02:30, B Bruen a écrit : > > I realise that modifying the enumerated set during a For Each loop is (Cut) > > No. An array is an object, and aTest a variable that owns a *reference* > to the array. If you set aTest to NULL

Re: [Gambas-user] markdown to html?

2014-06-24 Thread B Bruen
On Wed, 25 Jun 2014 10:04:41 +0930 B Bruen wrote: > On Wed, 25 Jun 2014 01:42:09 +0200 > Benoît Minisini wrote: > > > Le 25/06/2014 01:23, B Bruen a écrit : > > > @Benoît > > > > > > Hi, could you tell me where (exactly) in the IDE code you convert > > > markdown text to html please. I would l

[Gambas-user] Sorting gridviews

2014-06-24 Thread B Bruen
Someone, recently, was discussing sorting gridviews over multiple columns. Tobi? Was any progress made on this? (Gee, I am having a busy day today, aren't I? :-) Actually, we are cleaning up a lot of old outstanding things.) tia Bruce -- B Bruen -

[Gambas-user] Window Manager Kwin ALT+TAB

2014-06-24 Thread herberth guzman
Benoit Thank you for your answers. i have the SkipTaskbar property, but: with openbox not problem. ALT+TAB not show the form(f_panel) with kwin i have problem. ALT+TAB show the form(f_panel) Regard Herberth Guzmán --

[Gambas-user] Desktop.X11 Systray

2014-06-24 Thread herberth guzman
Hi Benoit The example of the panel you can download from the following link. The problem is when you convert the form into transparent. https://drive.google.com/file/d/0B2gI4jYOofp0dUh2QXZta05ydEE/edit?usp=sharing If you need the code for innova desktop, glad to command. Regards and thanks Ben

[Gambas-user] Desktop.X11 Systray

2014-06-24 Thread herberth guzman
Sorry the previous mail send the wrong link. This link is correct. Hi Benoit The example of the panel you can download from the following link. The problem is when you convert the form into transparent. Link OK https://docs.google.com/file/d/0B2gI4jYOofp0STRLYnkzdnMwQlU/edit

[Gambas-user] Desktop.X11 Systray

2014-06-24 Thread herberth guzman
Not is Spam Sorry Sorry Sorry the previous mail send and previous the wrong link. This link is correct, OkOk Hi Benoit Sorry The example of the panel you can download from the following link. The problem is when you convert the form into transparent. Link OKOKOK https://drive.google.com/file/d/

[Gambas-user] Wishlist : gb.form.mdi ToolBar

2014-06-24 Thread B Bruen
Is there any reason that the ToolBar control is constrained within gb.form.mdi? I use it consistently, without needing the other controls in gb.form.mdi and would really like to see it just within gb.form as a general control. Maybe gb4? regards Bruce -- B Bruen

[Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread herberth guzman
Fabien I think He want to disable the ability of x to move a windows with alt + mousedown Benoit Fabien says what is right. What I need is to disable the ability of x to move a windows with alt + mousedown Thanks Regards, Herberth ---

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread B Bruen
On Tue, 24 Jun 2014 20:34:09 -0600 herberth guzman wrote: > Fabien > I think He want to disable the ability of x to move a windows with alt + > mousedown > > Benoit > Fabien says what is right. What I need is to disable the ability of x to > move a windows with alt + mousedown > > > Thanks >

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread B Bruen
On Wed, 25 Jun 2014 12:53:41 +0930 B Bruen wrote: > On Tue, 24 Jun 2014 20:34:09 -0600 > herberth guzman wrote: > > > Fabien > > I think He want to disable the ability of x to move a windows with alt + > > mousedown > > > > Benoit > > Fabien says what is right. What I need is to disable the ab

Re: [Gambas-user] Form ALT+CLICK Not Move

2014-06-24 Thread B Bruen
On Wed, 25 Jun 2014 13:08:10 +0930 B Bruen wrote: > On Wed, 25 Jun 2014 12:53:41 +0930 > B Bruen wrote: > > > On Tue, 24 Jun 2014 20:34:09 -0600 > > herberth guzman wrote: > > > > > Fabien > > > I think He want to disable the ability of x to move a windows with alt + > > > mousedown > > > >