Re: [Gambas-user] How to Change Keyboard Layout

2018-10-03 Thread Gianluigi
I answered you in the correct mailing list, if you signed up you should have received it. If necessary, check in the spam. Regards Gianluigi Il giorno mar 2 ott 2018 alle ore 23:31 Wael M via Gambas-user < gambas-user@lists.sourceforge.net> ha scritto: > Lee, I subscribed to the

Re: [Gambas-user] Database1 program

2018-09-28 Thread Gianluigi
to the Gambas to compile, in the folder app > examples Regards Gianluigi [0] https://lists.gambas-basic.org/listinfo/user [1] https://lists.gambas-basic.org/cgi-bin/search.cgi Il giorno gio 27 set 2018 alle ore 22:18 Benoît Minisini ha scritto: > Sorry, but this mailing-list is depr

Re: [Gambas-user] Gtk-Message error

2018-05-26 Thread Gianluigi
2018-05-26 18:00 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > 2018-05-26 11:44 GMT-04:00 Gianluigi <bagone...@gmail.com>: > > > Hasta Ubuntu siempre! > > > it's "U HAsta siempre" and not "hasta" must be "por" >

Re: [Gambas-user] Gtk-Message error

2018-05-26 Thread Gianluigi
Hasta Ubuntu siempre! 2018-05-26 17:12 GMT+02:00 PICCORO McKAY Lenz : > a winbutnu problem: > https://www.google.com/search?q=Failed+to+load+module%27+ > appmenu-gtk-module=utf-8=utf-8 > > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > > 2018-05-26

Re: [Gambas-user] Gtk-Message error

2018-05-26 Thread Gianluigi
Hi Carlos, This mailinglist is deprecated Here you can subscribe to the new one [0] You should also subscribe to the bugtraker [1] and in addition to the explanation paste in the space provided the System information you can get from the help menu (?) of Gambas Regards Gianluigi [0] https

Re: [Gambas-user] Format function changes date value

2018-05-19 Thread Gianluigi
But Debug (Print) localizes! However, with the dates I always get lost :-( Regards Gianluigi 2018-05-19 16:00 GMT+02:00 T Lee Davidson <t.lee.david...@gmail.com>: > CDate uses UTC and, without the time information in the string, it would > store midnight. Format uses local

Re: [Gambas-user] Format function changes date value

2018-05-19 Thread Gianluigi
It also works with Gambas 3.11.2 '' Main.Main.9: Test date: 5/4/2018 00:00:00 Formatted: 05/04/18 ven Regards Gianluigi 2018-05-19 15:36 GMT+02:00 George <gam...@geodosch.com>: > Sorry, I should have added that I'm on version 3.11.2 > > On Sat, May 19, 2018 at 9:27

Re: [Gambas-user] Format function changes date value

2018-05-19 Thread Gianluigi
ate & " Formatted: " & zTestResult '' Result: Main.Main.9: Test date: 5/4/2018 Formatted: 05/04/18 ven Regards Gianluigi 2018-05-19 14:54 GMT+02:00 George <gam...@geodosch.com>: > When using the Format function to format a date, the date gets offset by 1 > day. Here

Re: [Gambas-user] Linux Mint 18.2, Gambas 3.10 installed from repos, no toolboxes on the screen

2018-03-19 Thread Gianluigi
2018-03-19 13:49 GMT+01:00 Benoît Minisini <g4m...@gmail.com>: > Le 19/03/2018 à 13:45, Петро Abbat a écrit : > >> Hi Gianluigi, >> What about blocked wiki for Ukraine? Why? >> Thanks in advance. >> Petro >> >> > I don't know. The wiki is hoste

Re: [Gambas-user] Linux Mint 18.2, Gambas 3.10 installed from repos, no toolboxes on the screen

2018-03-19 Thread Gianluigi
ide > the > red ellipse). Click on that control and the toolbox should become visible. > There are other panels which you can show/hide in this way. > > Regards, > Tobi > > -- > "There's an old saying: Don't change anythin

Re: [Gambas-user] Digest mode, yes or not?

2017-10-16 Thread Gianluigi
Hi Christof, >I don't think, this is what you want. Yes and in fact I was wrong :-) Now I'm going to change the settings, thanks. Regards Gianluigi 2017-10-16 11:05 GMT+02:00 Christof Thalhofer <chri...@deganius.de>: > Am 16.10.2017 um 10:28 schrieb Gianluigi: > > Would y

[Gambas-user] Digest mode, yes or not?

2017-10-16 Thread Gianluigi
? Regards Gianluigi -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ Gambas-user mailing list Gambas

[Gambas-user] Gambas with Suse Leap 42.3

2017-10-08 Thread Gianluigi
Hi all, a friend of ours asks if anyone uses Gambas with Suse Leap 42.3. Any problems? Regards Gianluigi -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http

Re: [Gambas-user] Process.Wait freeze

2017-09-21 Thread Gianluigi
the program stops before terminating the 100 loops and does not delete the temporary folder Regards Gianluigi 2017-09-21 22:05 GMT+02:00 Jussi Lahtinen <jussi.lahti...@gmail.com>: > Thanks! > Is there anyone else who use Linux Mint 17.3? If yes, can you try to run > the proje

Re: [Gambas-user] "Long" click

2017-09-21 Thread Gianluigi
I'm not sure I understand, but that's not enough? Public Sub Button1_MouseDown() Form1.Show() End Public Sub Button1_MouseUp() Form1.Hide() End Regards Gianluigi 2017-09-21 8:19 GMT+02:00 Miguel Manso <mma...@gmail.com>: > Hi All, > > I'm using gambas3 for some time n

Re: [Gambas-user] Function to count substrings

2017-09-13 Thread Gianluigi
lue) i = InStr(value, pattern, i + 1, compare) If i = 0 Then Break Inc n Wend Return n End Any ideas better? Regards Gianluigi 2017-09-13 11:42 GMT+02:00 Rolf-Werner Eilert <rwe-...@osnanet.de>: > Thank you Luigi, > > This is what I had programmed myself (mor

Re: [Gambas-user] Function to count substrings

2017-09-13 Thread Gianluigi
Sorry the link to see it work is this :-( https://gambas-playground.proko.eu/?gist=d0fc775a24c00f2d5271865a565739ef Regards Gianluigi 2017-09-13 10:53 GMT+02:00 Gianluigi <bagone...@gmail.com>: > And something like that? > https://gist.github.com/anonymous/d0fc775a24c00f2d5271

Re: [Gambas-user] Function to count substrings

2017-09-13 Thread Gianluigi
And something like that? https://gist.github.com/anonymous/d0fc775a24c00f2d5271865a565739ef Regards Gianluigi 2017-09-13 10:04 GMT+02:00 Rolf-Werner Eilert <rwe-...@osnanet.de>: > Thanks Julio, > > good idea! - but: isn't this a bit too much? After all, you have to > in

Re: [Gambas-user] New domain name for Gambas

2017-09-02 Thread Gianluigi
yes i like it Regards Gianluigi 2017-09-02 22:52 GMT+02:00 Benoît Minisini via Gambas-user < gambas-user@lists.sourceforge.net>: > Le 02/09/2017 à 22:47, Gianluigi a écrit : > >> I like gambas-something.com etc. >> Es. gambas-org.com? >> >> Regards >>

Re: [Gambas-user] New domain name for Gambas

2017-09-02 Thread Gianluigi
I like gambas-something.com etc. Es. gambas-org.com? Regards Gianluigi 2017-09-01 22:39 GMT+02:00 Benoît Minisini via Gambas-user < gambas-user@lists.sourceforge.net>: > Hi, > > As gambas.{org,net,com...} are all unavailable, I'm thinking about buying > g4mbas.org (or .net,

Re: [Gambas-user] Switching to GitLab

2017-08-29 Thread Gianluigi
Hi Piccoro, that's all right :-) Regards Gianluigi 2017-08-29 20:47 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > 2017-08-29 13:48 GMT-04:00 Gianluigi <bagone...@gmail.com>: > > > Hi Adrien, > > first I apologize for my bad English. > > The

Re: [Gambas-user] Switching to GitLab

2017-08-29 Thread Gianluigi
That's all right My was just a suggestion for greater clarity. Regards Gianluigi 2017-08-29 20:38 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Tue, 29 Aug 2017 19:48:11 +0200, Gianluigi <bagone...@gmail.com> a > écrit: > > Hi Adrien, >> first

Re: [Gambas-user] Switching to GitLab

2017-08-29 Thread Gianluigi
Hi Adrien, first I apologize for my bad English. The steps for compiling Gambas from Git are clear. What is not described in your help is the steps for subsequent master updates, or am I unable to see them? Thanks for the attention. Gianluigi 2017-08-29 16:29 GMT+02:00 Adrien Prokopowicz

Re: [Gambas-user] Thunderbird issue

2017-08-28 Thread Gianluigi
only now I realize that the address appears in the image. Can anyone replace it with this one? Thank you I'm sorry Gianluigi 2017-08-28 8:55 GMT+02:00 Gianluigi <bagone...@gmail.com>: > Also with gmail i have to be careful and I often mistake (always :-)) > I click on the

Re: [Gambas-user] Thunderbird issue

2017-08-28 Thread Gianluigi
Also with gmail i have to be careful and I often mistake (always :-)) I click on the first entry but it is not always the right one to answer the list. See attached picture Regards Gianluigi 2017-08-28 6:08 GMT+02:00 Christof Thalhofer <chri...@deganius.de>: > Am 28.08.2017 um 05:4

Re: [Gambas-user] Switching to GitLab

2017-08-25 Thread Gianluigi
to explain it to me and which still does not keep track on the wiki? Regards Gianluigi 2017-08-25 15:03 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Thu, 24 Aug 2017 16:09:48 +0200, Adrien Prokopowicz < > adrien.prokopow...@gmail.com> a écrit: > >> >&

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-25 Thread Gianluigi
Of course, speaking of directories, I thought it was correct not to take into account Tobias's admonitions [0]. I hope I will not go wrong :-/ Regards Gianluigi [0] https://sourceforge.net/p/gambas/mailman/message/35921360/ 2017-08-25 9:47 GMT+02:00 Gianluigi <bagone...@gmail.com>: >

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-25 Thread Gianluigi
This code suggested by Vuott of Gambas-it.org, it only uses the two arrays. http://www.gambas-it.org/smf/index.php?topic=5876.msg42088#msg42088 Regards Gianluigi 2017-08-25 0:58 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > thanks gianluigi.. i'm search for same function..

Re: [Gambas-user] I need a hint on how to delete duplicate items in a array

2017-08-24 Thread Gianluigi
I don't know if this can help you. https://gambas-playground.proko.eu/?gist=c6e63a84d209911a2b3ff50d2b46a368 Regards Gianluigi 2017-08-24 22:39 GMT+02:00 herberth guzman <herberthguz...@gmail.com>: > Hi Benoit, how are you..? > > I have a question, I'm lost > Lol > &

Re: [Gambas-user] Different digit number in master version

2017-08-22 Thread Gianluigi
Sorry Tobias, You're right, it's the fault of my bad English. Now I understand, thank you very much. Regards Gianluigi 2017-08-22 20:27 GMT+02:00 Tobias Boege <tabo...@gmail.com>: > On Tue, 22 Aug 2017, Gianluigi wrote: > > Sorry Tobias, > > but I don't have u

Re: [Gambas-user] Different digit number in master version

2017-08-22 Thread Gianluigi
Sorry Tobias, but I don't have understod. I refer to the f05e6bc master version code, which I get from gbx3 -V as compared to what is in Commit f05e6bc[0] which has one number more, in this case zero. You mean that I not extracted the latest version? Regards Gianluigi 2017-08-22 18:22 GMT+02:00

[Gambas-user] Different digit number in master version

2017-08-22 Thread Gianluigi
If you have already been asked, I apologize but I haven't seen it: Why on git the master version has a number more than my version? 3.10.90 f05e6bc (master) => f05e6bc0 Regards Gianluigi -- Check out the vibrant t

Re: [Gambas-user] Connect to and control LibreOffice

2017-08-22 Thread Gianluigi
Great! Here's a good reason to learn xml :-) I when I had to import (but you can also export I believe) data from Excel or Calc I used csv. Regards Gianluigi 2017-08-22 12:52 GMT+02:00 Rolf-Werner Eilert <rwe-...@osnanet.de>: > Am 22.08.2017 12:41, schrieb Benoît Minisini via Ga

Re: [Gambas-user] Mailinglist

2017-08-20 Thread Gianluigi
Hi Christof, well, I am ready to contribute for two months each year. Try to appreciate the effort, here in Genoa we are more avaricius of the Scottishs. "At the moment of the charity in the church, a Scottish man is faint and seven Genoeses care to carry it out of the church" Regards

Re: [Gambas-user] System informations report

2017-08-19 Thread Gianluigi
have written of it. Regards Gianluigi 2017-08-19 20:29 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Sat, 19 Aug 2017 17:48:30 +0200, Gianluigi <bagone...@gmail.com> a > écrit: > > I do not understand why the first time I got that data (22 sec

Re: [Gambas-user] Git compilation report

2017-08-19 Thread Gianluigi
? With your permission I take advantage of this mail to thank the friends Piccoro, Charlie (Karl), Tobias, Adrien, Tony you are all fantastic I am honored that you give me yours time. Regards Gianluigi [0] https://gitlab.com/gambas/gambas/tree/master 2017-08-18 23:32 GMT+02:00 Christof Thalhofer <c

Re: [Gambas-user] System informations report

2017-08-19 Thread Gianluigi
I do not understand why the first time I got that data (22 seconds), now restarting the notebook more times are the same as those with Git. Sorry, greetings Gianluigi 2017-08-19 17:10 GMT+02:00 Gianluigi <bagone...@gmail.com>: > While I'm studying, on my notebook as it installs

Re: [Gambas-user] System informations report

2017-08-19 Thread Gianluigi
employing, but much slower is Git than time consuming 48 seconds. Now you have the confirm in the Git reading loop there is something that does not work well. Regards Gianluigi 2017-08-18 20:13 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > umm, in /usr/lib 2753 and in

Re: [Gambas-user] Git compilation report

2017-08-18 Thread Gianluigi
e latest version of development and not the whole git, as explained in the wiki (about a third of the 100MB) He is turning my head, I go to sleep. Goodnight to everyone (in Italy it's night :-)) Gianluigi 2017-08-18 21:54 GMT+02:00 Christof Thalhofer <chri...@deganius.de>: > Am 18.08.2017

Re: [Gambas-user] Git compilation report

2017-08-18 Thread Gianluigi
Hi Piccoro, you're telling me that you agree and that in the sequence of commands the only one that does not fit is: rm -rf gambasdevel/ With the two 'cd' commands that become useless. But then all you said before, and that confused me? Why? Regards Gianluigi 2017-08-18 21:15 GMT+02:00

Re: [Gambas-user] Git compilation report

2017-08-18 Thread Gianluigi
This is not about the stable? > etc It sounds all very complicated, I'm confused. All this only to have the development version? When do we return to SVN? Regards Gianluigi 2017-08-18 17:05 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > you should take in consideration that a p

Re: [Gambas-user] Trunk update

2017-08-18 Thread Gianluigi
I had read it, but did not understand it meant that. Now it's clear. Thank you Gianluigi 2017-08-18 17:02 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Fri, 18 Aug 2017 16:52:56 +0200, Gianluigi <bagone...@gmail.com> a > écrit: > > I see the last tr

Re: [Gambas-user] Git compilation report

2017-08-18 Thread Gianluigi
Always the same as the first time: Makefile.am: error: required file './ChangeLog' not found autoreconf: automake failed with exit status: 1 Regards Gianluigi 2017-08-18 17:00 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Fri, 18 Aug 2017 14:38:21 +0200, Gianluig

[Gambas-user] Trunk update

2017-08-18 Thread Gianluigi
I see the last trunk is 8175 two days ago. Does this mean that SVN is definitely abandoned? Regards Gianluigi -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http

Re: [Gambas-user] System informations report

2017-08-18 Thread Gianluigi
Could it be because I uninstalled the trunk but kept the folder with the files? Regards Gianluigi 2017-08-18 14:58 GMT+02:00 Benoît Minisini <gam...@users.sourceforge.net>: > Le 18/08/2017 à 14:55, Benoît Minisini a écrit : > >> Le 18/08/2017 à 14:49, Gianluigi a écrit

[Gambas-user] System informations report

2017-08-18 Thread Gianluigi
With git compilation, system information is very slow, about 50 seconds. Compared to the few (2 or 3) with SVN, why? Regards Gianluigi -- Check out the vibrant tech community on one of the world's most engaging tech sites

[Gambas-user] Git compilation report

2017-08-18 Thread Gianluigi
maybe update it should be done like this: cd gambasdevel sudo make uninstall cd rm -rf gambasdevel/ git clone --depth=1 https://gitlab.com/gambas/gambas.git gambasdevel cd gambasdevel ./reconf-all && LLVM_CONFIG=llvm-config-3.5 ./conf

Re: [Gambas-user] Switching to GitLab

2017-08-17 Thread Gianluigi
I updated with git pull but I get the same mistake. I deduce that once deleted the files with this command are not rewritten. Is that so? [0] Regards Gianluigi [0] gian@gi:~$ cd gambasdevel gian@gi:~/gambasdevel$ git pull remote: Counting objects: 33, done. remote: Compressing objects: 100% (19

Re: [Gambas-user] Switching to GitLab

2017-08-17 Thread Gianluigi
Thanks for the answers, as I have already written only to Benoit (wrong as usual :-)), no problem. I'm just doing experiance. Regards Gianluigi 2017-08-17 17:54 GMT+02:00 Benoît Minisini <gam...@users.sourceforge.net>: > Le 17/08/2017 à 17:52, Benoît Minisini a écrit : > >>

Re: [Gambas-user] Switching to GitLab

2017-08-17 Thread Gianluigi
copy autoreconf: running: /usr/bin/autoconf autoreconf: running: /usr/bin/autoheader autoreconf: running: automake --add-missing --copy --no-force Makefile.am: error: required file './ChangeLog' not found autoreconf: automake failed with exit status: 1 What am I doing wrong? Regards Gia

Re: [Gambas-user] Switching to GitLab

2017-08-16 Thread Gianluigi
It should also be stated that for the compilation of the stable there is no need to install Git, which is indispensable for the development version. Regards Gianluigi 2017-08-16 16:46 GMT+02:00 Gianluigi <bagone...@gmail.com>: > Attention Piccoro, > I was talking about compili

Re: [Gambas-user] Switching to GitLab

2017-08-16 Thread Gianluigi
gambas-empezando > check mi debian and devuan specific instruction up to date > Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > > > 2017-08-16 7:47 GMT-04:00 Gianluigi <bagone...@gmail.com>: > > Warning, in explanations of how I delete any Gambas3 trac

Re: [Gambas-user] FProperty.class:25: error: Unknown identifier: &1 WebView

2017-08-16 Thread Gianluigi
I forgot (for git) to communicate this. The first time you open System information is very slow in gambasdevel and fast in stable. Regards Gianluigi 2017-08-15 12:08 GMT+02:00 Tobias Boege <tabo...@gmail.com>: > On Tue, 15 Aug 2017, Tobias Boege wrote: > > I'm currently running &

Re: [Gambas-user] Switching to GitLab

2017-08-16 Thread Gianluigi
to install the trunk from SVN Regards Gianluigi 2017-08-15 14:49 GMT+02:00 Gianluigi <bagone...@gmail.com>: > For people with a hard head like mine, I would add that Gambas3's > compilation from Git is as smooth as that from SVN in my notebook with > Ubuntu 14.04.05 LTS Italian w

Re: [Gambas-user] Switching to GitLab

2017-08-15 Thread Gianluigi
gt; Lenz McKAY Gerardo (PICCORO) > http://qgqlochekone.blogspot.com > > > 2017-08-15 11:28 GMT-04:00 Gianluigi <bagone...@gmail.com>: > > This is what I need to write on the Italian forum. > > Let's see if I understand: > > First with the command: > > >

Re: [Gambas-user] Switching to GitLab

2017-08-15 Thread Gianluigi
ays.. > > maybe that commands was wrote too fast .. in a hurry to make available > > to all,... > > > > i currenlty testing other ways to make the compilations.. and i'll try > > to do my best in that document at the wiki.. if have any suggestion > > please .

Re: [Gambas-user] Switching to GitLab

2017-08-15 Thread Gianluigi
There is nothing complicated. It is I who have a tough head. And your English is like my head :-) :-P Ciao Gianluigi 2017-08-15 16:24 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > well the documentation in wiki was a fisr time made, with some > correction of guys here

Re: [Gambas-user] FProperty.class:25: error: Unknown identifier: &1 WebView

2017-08-15 Thread Gianluigi
/DisplayManager/Seat0 XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_VTNR=7 XMODIFIERS=@im=ibus Regards Gianluigi 2017-08-15 12:08 GMT+02:00 Tobias Boege <tabo...@gmail.com>: > On Tue, 15 Aug 2017, Tobias Boege wrote: > > I'm currently running &

Re: [Gambas-user] Switching to GitLab

2017-08-15 Thread Gianluigi
te a script, as a friend suggested to me :-) Regards Gianluigi 2017-08-14 15:50 GMT+02:00 Gianluigi <bagone...@gmail.com>: > Your question has caused me a doubt and I went to check the commands, I do > not know for which obscure reason between ./configure -C and make a cd has > gone out and I

Re: [Gambas-user] Switching to GitLab

2017-08-14 Thread Gianluigi
just want to fill the trunk works still. Thank you. Gianluigi 2017-08-14 14:54 GMT+02:00 adamn...@gmail.com <adamn...@gmail.com>: > On Mon, 14 Aug 2017 14:34:51 +0200 > Gianluigi <bagone...@gmail.com> wrote: > > > I tried to install from SVN in a notebook where I had

Re: [Gambas-user] Switching to GitLab

2017-08-14 Thread Gianluigi
I tried to install from SVN in a notebook where I had Gambas from PPA, I get this: make:*** No specified target and no makefile found. Stop. Who kindly explains step by step how can I have the trunk in my Notebook (Ubuntu 14.04.01) by compiling Gambas? Regards Gianluigi 2017-08-14 11:11 GMT+02

Re: [Gambas-user] Switching to GitLab

2017-08-13 Thread Gianluigi
Excuse me Ubuntu 16.04.02 Italian no English Regards Gianluigi 2017-08-13 16:54 GMT+02:00 Gianluigi <bagone...@gmail.com>: > With SVN to get the latest version of Gambas in Ubuntu 16.04.02 English I > wrote these commands to the terminal (as shown http://gambaswiki.org/wiki/ >

Re: [Gambas-user] Switching to GitLab

2017-08-13 Thread Gianluigi
mp; sudo make install ) > ~/Scrivania/Make_Inst-Trunk.log 2>&1 ==== Now what do I have to write to the terminal? Regards Gianluigi 2017-08-13 15:57 GMT+02:00 Gianluigi <bagone...@gmail.co

Re: [Gambas-user] Switching to GitLab

2017-08-13 Thread Gianluigi
for the explanations. Regards Gianluigi 2017-08-13 15:19 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Sun, 13 Aug 2017 14:56:51 +0200, Gianluigi <bagone...@gmail.com> a > écrit: > > Hi Benoit, >> >> I apologize for ignorance but I have never us

Re: [Gambas-user] Switching to GitLab

2017-08-13 Thread Gianluigi
Thank you for the reporting Regards Gianluigi 2017-08-13 15:04 GMT+02:00 PICCORO McKAY Lenz <mckaygerh...@gmail.com>: > http://gambaswiki.org/wiki/howto/git a llitte work in progres but > enought to start > > 2017-08-13 8:56 GMT-04:00 Gianluigi <bagone...@gmail.com>:

Re: [Gambas-user] Switching to GitLab

2017-08-13 Thread Gianluigi
Hi Benoit, I apologize for ignorance but I have never used Git. To update the Trunk, what should I do now? To subscribe to the new ML? To report a bug? Write access is only for participating in the code, or? Regards Gianluigi 2017-08-12 20:10 GMT+02:00 Benoît Minisini via Gambas-user < gam

Re: [Gambas-user] Messaging between arbitrary objects

2017-08-11 Thread Gianluigi
Hi Bruce, You can take a look here [0] with the help of Google translate. Regards Gianluigi [0] http://www.gambas-it.org/wiki/index.php?title=Inviare_dati_da_un_programma_Gambas_ad_un_altro_mediante_le_risorse_del_Componente_DBus 2017-08-11 13:58 GMT+02:00 Benoît Minisini via Gambas-user

Re: [Gambas-user] Video from Class feeds a DrawingArea problem

2017-08-10 Thread Gianluigi
rwVideo = Value hSink.SetWindow(hdrwVideo) End ------end code. Regards Gianluigi -- Check out the vibrant tech community on one of the world's most engaging

Re: [Gambas-user] Gambas ML problem

2017-08-09 Thread Gianluigi
I sent a Benoit message, if you did not receive it, read here http://gambas.sourceforge.net/en/main.html Regards Gianluigi 2017-08-09 19:34 GMT+02:00 Tony Morehen <tmore...@ajmconsulting.ca>: > I haven't seen them either but nabble shows "This post has NOT been > accepted by

[Gambas-user] Fwd: Gambas ML problem

2017-08-09 Thread Gianluigi
-- Forwarded message -- From: Benoît Minisini <gam...@users.sourceforge.net> Date: 2017-08-09 19:42 GMT+02:00 Subject: Re: [Gambas-user] Gambas ML problem To: Gianluigi <bagone...@gmail.com> Le 09/08/2017 à 15:29, Gianluigi a écrit : > What is happening to ou

Re: [Gambas-user] Gambas ML problem

2017-08-09 Thread Gianluigi
gt; > > Am 09.08.2017 15:29, schrieb Gianluigi: > > > >> What is happening to our ML? > >> It does not seem to work anymore. > >> Charlie here [0] asks this but I do not have receive it, and the last > >> mails > >> I received after 2 August here [

[Gambas-user] Gambas ML problem

2017-08-09 Thread Gianluigi
What is happening to our ML? It does not seem to work anymore. Charlie here [0] asks this but I do not have receive it, and the last mails I received after 2 August here [0] do not appear. Probably Benoit has announced that version 3.10 is official but I have not received ... [0]

Re: [Gambas-user] Undo/Redo logic.

2017-07-26 Thread Gianluigi
Hi Julio, That's exactly what I was asking. I'm trying to put it into practice in a program that if I succeed, I will post in the Farm. Thank you very much Regards Gianluigi 2017-07-18 19:31 GMT+02:00 Julio Sanchez <jusabejus...@gmail.com>: > Gianluigi: > > I leave you an exampl

Re: [Gambas-user] Totally off topic: Jean-Paul Belmondo

2017-07-25 Thread Gianluigi
Sorry I did not see Charlie's answer. Here you can see the movie [0] [0] https://www.youtube.com/watch?v=7e6VZDlAUtA 2017-07-25 15:24 GMT+02:00 Gianluigi <bagone...@gmail.com>: > Pierrot le fou? > > > 2017-07-25 13:02 GMT+02:00 adamn...@gmail.com <adamn...@gmail.com>: &g

Re: [Gambas-user] Totally off topic: Jean-Paul Belmondo

2017-07-25 Thread Gianluigi
Pierrot le fou? 2017-07-25 13:02 GMT+02:00 adamn...@gmail.com : > Help me out here guys. (If you are old enough to remember) > I am sure that it was JP Belmondo. > > At the end of the film he wraps a string of explosive around his head. > > > -- > B Bruen

Re: [Gambas-user] reading files

2017-07-20 Thread Gianluigi
Hi Tony, Sorry if i answered instead of you, but I did not understand who the question was for :-( Regards Gianluigi 2017-07-20 15:35 GMT+02:00 Tony Morehen <tmore...@ajmconsulting.ca>: > It is my code. It started off life as part of a cd ripper program I wrote > in

Re: [Gambas-user] reading files

2017-07-20 Thread Gianluigi
2017-07-20 12:09 GMT+02:00 Shane <buster6se...@gmail.com>: > yep can't use structs have to do like tony's code works perfect thanks > again tony > h are you sure? > > p.s is this your code ? > No, but you can easily see who wrote it :) > > > >

Re: [Gambas-user] reading files

2017-07-20 Thread Gianluigi
Right ... and a look here too [0] Ciao :) Gianluigi [0] http://www.gambas-it.org/smf/index.php?topic=5794.msg41793#msg41793 2017-07-20 3:15 GMT+02:00 Shane <buster6se...@gmail.com>: > thanks tony sounds like just what i needed i will take a look > > cheers > > > &

Re: [Gambas-user] Pre-release of Gambas 3.10.0

2017-07-19 Thread Gianluigi
Thank you Benoit, here it seems to work well. Regards Gianluigi [System] Gambas=3.10 OperatingSystem=Linux Kernel=4.4.0-83-generic Architecture=x86 Distribution=Ubuntu 16.04.2 LTS Desktop=XFCE Theme=Cleanlooks Language=it_IT.UTF-8 Memory=3018M 2017-07-18 17:56 GMT+02:00 Benoît Minisini via

Re: [Gambas-user] [Gambas Bug Tracker] Bug #1128: Message.Question should return -1 on cancel

2017-07-19 Thread Gianluigi
Thal, you could take a look at this discussion [0] Regards Gianluigi [0] http://gambas.8142.n7.nabble.com/MessageBox-problem-td56154.html#a56231 2017-07-19 15:33 GMT+02:00 Tony Morehen <tmore...@ajmconsulting.ca>: > That is the documented behaviour: > > All Message functi

Re: [Gambas-user] reading files

2017-07-19 Thread Gianluigi
A very interesting work  Regards Gianluigi 2017-07-19 14:34 GMT+02:00 Tony Morehen <tmore...@ajmconsulting.ca>: > I've attached an archive containing the code I use to read v1 and v2 MP3 > tags and other MP3 info including bitrates (fixed and VBR), sampling rates > and number o

Re: [Gambas-user] reading files

2017-07-19 Thread Gianluigi
You can take a look at our Italian wiki [0][1][2] using Google Translate. You can also subscribe and ask a question in English, I do not understand mp3, but there is someone who understands it. Regards Gianluigi [0] http://www.gambas-it.org/wiki/index.php?title

Re: [Gambas-user] Undo/Redo logic.

2017-07-18 Thread Gianluigi
Hi Julio, only now I could take a look. It looks like a very interesting code. As soon as possible I go to study it, then I'll let you know. Thank You very much. Regards Gianluigi 2017-07-18 19:31 GMT+02:00 Julio Sanchez <jusabejus...@gmail.com>: > Gianluigi: > > I leave you a

[Gambas-user] Undo/Redo logic.

2017-07-18 Thread Gianluigi
In addition to what Gambas already provides for some controls, I would like to implement undo/redo on the whole project level. I tried to understand the logic of Gambas's IDE, unfortunately without success. Which is the right way forward. Regards Gianluigi

Re: [Gambas-user] reading files

2017-07-18 Thread Gianluigi
Why do not you take a moment of rest and read what Tobias Boege recommend me in the discussion [0] I told you here [1]? [0] http://gambas.8142.n7.nabble.com/Random-access-files-with-fixed-length-string-td50880.html [1] http://gambas.8142.n7.nabble.com/vb-code-td59764.html 2017-07-18 9:04

Re: [Gambas-user] Gambas Playground

2017-07-16 Thread Gianluigi
Hi Adrien, Thank you very much for the detailed answer. Now I know how to behave the next time I'm wrong :) Regards Gianluigi 2017-07-16 16:03 GMT+02:00 Adrien Prokopowicz <adrien.prokopow...@gmail.com> : > Le Sun, 16 Jul 2017 15:10:55 +0200, Gianluigi <bagone...@gmail.co

Re: [Gambas-user] Gambas Playground

2017-07-16 Thread Gianluigi
Thanks Adrien, I was able to mistake my first insertion (I left useless code) :(. Can I fix it? [0] Regards Gianluigi [0] http://gambas.8142.n7.nabble.com/Best-ways-to-format-float-values-td59733.html 2017-07-16 11:11 GMT+02:00 Karl Reinl <karl.re...@fen-net.de>: > Am Sonntag, den 1

Re: [Gambas-user] Best ways to format float values

2017-07-16 Thread Gianluigi
The street indicated by Tobias should be the safest, right? I try to attach Adrien's link instead of the code: https://gambas-playground.proko.eu/?gist=f5dbde82ee8f5f1f5799184108fd57c1 Regards Gianluigi 2017-07-16 11:47 GMT+02:00 Gianluigi <bagone...@gmail.com>: > Hi Nando,

Re: [Gambas-user] Best ways to format float values

2017-07-16 Thread Gianluigi
Hi Nando, good explanation, suitable for a guys with an elementary school preparation like me. Thank you very much Gianluigi 2017-07-16 10:07 GMT+02:00 <nand...@nothingsimple.com>: > Rounding depends on what rounding you want. > Most people think of 5/4 rounding. > I prefer to

Re: [Gambas-user] vb code

2017-07-14 Thread Gianluigi
You can take a look at this discussion [0] Regards Gianluigi [0] http://gambas.8142.n7.nabble.com/Random-access-files-with-fixed-length-string-td50880.html 2017-07-14 10:09 GMT+02:00 adamn...@gmail.com <adamn...@gmail.com>: > Guessing without information about what a vb pri

Re: [Gambas-user] Best ways to format float values

2017-07-13 Thread Gianluigi
Great Tobias, You are a good teacher and I am honored to have your attention. OK I understand, never more extravagant mathematics. Thank you very much for your explanations Regards Gianluigi P.S. You will not believe it but some tests with Floor and Ceil I did :-( 2017-07-13 20:00 GMT+02:00

Re: [Gambas-user] Best ways to format float values

2017-07-13 Thread Gianluigi
' Normal round, as already mentioned by other If Len(CStr(Frac(n))) > 4 Then b = Val(Mid(CStr(Frac(n)), 5, 1)) If b >= 5 Then Print Round(n, -2) Else Print Round(n + 0.01, -2) ' Forced increase round, as proposed by me Endif Endif Regards Gianluigi 2017

Re: [Gambas-user] Best ways to format float values

2017-07-13 Thread Gianluigi
One thing that could be useful? Public Sub Main() Dim n As Float = 26.66016 Dim b As Byte b = Val(Mid(CStr(Frac(n)), 5, 1)) Print Round(n, -2) If b >= 5 Then Print Round(n, -2) Else Print Round(n + 0.01, -2) Endif End Regards Gianluigi 2017-07-13 7:39 GMT+02

Re: [Gambas-user] What is the simplest way to display text properties in Gambas?

2017-07-06 Thread Gianluigi
Yes, strangely, gmail deleted part of Charlie's message http://gambas.8142.n7.nabble.com/What-is-the-simplest-way-to-display-text-properties-in-Gambas-td59692.html Gianluigi 2017-07-06 20:17 GMT+02:00 Tony Morehen <tmore...@ajmconsulting.ca>: > Basically, assign some simple HTML to

Re: [Gambas-user] IconView strange behavior.

2017-07-06 Thread Gianluigi
Hi Fabien, thank you very much. Damn I should have understood it on my own :-( Regards Gianluigi 2017-07-06 22:19 GMT+02:00 Fabien Bodard <gambas...@gmail.com>: > You need to call the function Rename of the item. > > Public Sub IconView1_MouseUp() > > if Mouse

Re: [Gambas-user] IconView strange behavior.

2017-07-04 Thread Gianluigi
Hi Fabien, I attach the rename test as required. Regards Gianluigi 2017-07-04 12:03 GMT+02:00 Fabien Bodard <gambas...@gmail.com>: > can you send an example ? > > 2017-07-04 10:40 GMT+02:00 Gianluigi <bagone...@gmail.com>: > > Or I did not understand how it wo

[Gambas-user] IconView strange behavior.

2017-07-04 Thread Gianluigi
Or I did not understand how it works or ... If I set Editable property on true, I expect to be able to change the icon text and receive the Rename event to complete with Move. This does not happen in Trunk 8113, should I report it as an error? Regards Gianluigi

Re: [Gambas-user] Any (easy) way to render RTF or HTML with gambas?

2017-07-02 Thread Gianluigi
To see how in a browser, webview is better, you have a WebBrowse sample in farm example. Gianluigi 2017-07-02 15:52 GMT+02:00 Fernando Cabral <fernandojosecab...@gmail.com>: > Thank you Gianluigi. It seems there more than one way to skin this cat. > I believe the problem has t

Re: [Gambas-user] Any (easy) way to render RTF or HTML with gambas?

2017-07-02 Thread Gianluigi
You can use WebView (gb.gui.qt.webkit) Gianluigi 2017-07-02 15:24 GMT+02:00 Fernando Cabral <fernandojosecab...@gmail.com>: > No, Lenz, reading the file is not te issue. This is easy and can be done > with several different methods. > What I am looking for is a way to rende

Re: [Gambas-user] how to determine if array its empty

2017-07-01 Thread Gianluigi
Ok, very precise, depends on what you need. I think at work, if you have to read the array, an: If IsNull (myArray) Or If myArray.Count = 0 Then Return It is more practice Gianluigi 2017-07-01 16:15 GMT+02:00 Hans Lehmann <h...@gambas-buch.de>: > > Case 1: > Dim my

  1   2   3   4   >