Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Rolf-Werner Eilert
Am 10.05.2017 01:04, schrieb Jussi Lahtinen: > Maybe some window manager setting steal focus from the editor..? > > > Jussi > Further upstairs in the thread, Fernando answered to a question from me: "Nevertheless, the problem appeared after I had downloaded docEditor from the farm. After that, e

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jorge Carrión
Have you tried to deactivate Dropbox and other cloud services? I work without problems with Dropbox, but you should discards all possibilities... Best Regards El 10 may. 2017 1:07 a. m., "Jussi Lahtinen" escribió: > Maybe some window manager setting steal focus from the editor..? > > > Jussi >

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jussi Lahtinen
Maybe some window manager setting steal focus from the editor..? Jussi On Wed, May 10, 2017 at 2:01 AM, Jussi Lahtinen wrote: > I can edit the project here without problems. Very strange. It's not > specific to Linux Mint 18.10, used Gambas version or the opened project. > So, it must be somet

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jussi Lahtinen
I can edit the project here without problems. Very strange. It's not specific to Linux Mint 18.10, used Gambas version or the opened project. So, it must be something with your settings... Have you tried to change Gambas settings, like turning on/off "format on load & save"? Is there some desktop a

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Fernando Cabral
Here goes the the archive generated as instructed. (Code quality is pretty poor because this was my first try at gambas). - fernando 2017-05-09 18:56 GMT-03:00 Jussi Lahtinen : > Can you try to re-send the project directory as the file you attached is > not extractable. Do it this way; go to Ga

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Fernando Cabral
> 2017-05-09 19:01 GMT-03:00 Jussi Lahtinen wrote: > Also what happens if you try to edit the project with regular text editor, > instead of Gambas? > They all can be edited. For instance, with vi. No problem. - fernando > > Jussi > > On Wed, May 10, 2017 at 12:56 AM, Jussi Lahtinen > wrote:

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jussi Lahtinen
Also what happens if you try to edit the project with regular text editor, instead of Gambas? Jussi On Wed, May 10, 2017 at 12:56 AM, Jussi Lahtinen wrote: > Can you try to re-send the project directory as the file you attached is > not extractable. Do it this way; go to Gambas IDE, open some

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jussi Lahtinen
Can you try to re-send the project directory as the file you attached is not extractable. Do it this way; go to Gambas IDE, open some project and go to menu "project" --> "make" --> "source archive". And send the result. Jussi On Wed, May 10, 2017 at 12:31 AM, Fernando Cabral < fernandojosecab..

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Karl Reinl
Am Dienstag, den 09.05.2017, 18:31 -0300 schrieb Fernando Cabral: > Jussi, I am baffled. I have removed everything you suggested. But I went > beyond. I updated the "locate" database and searched for everything that > contained "gambas" somewhere in the filename or directory name "locate -i > --reg

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Fernando Cabral
Jussi, I am baffled. I have removed everything you suggested. But I went beyond. I updated the "locate" database and searched for everything that contained "gambas" somewhere in the filename or directory name "locate -i --regex "*.gambas.*". I did this after a regular "remove" and "autoremove" wit

Re: [Gambas-user] Editing still blocked

2017-05-09 Thread Jussi Lahtinen
Remove *all* installations of Gambas 3 (made from PPAs, repos, compiled, etc), and then run these commands: sudo rm -f /usr/local/bin/gbx3 /usr/local/bin/gbc3 /usr/local/bin/gba3 /usr/local/bin/gbi3 /usr/local/bin/gbs3 sudo rm -rf /usr/local/lib/gambas3 sudo rm -rf /usr/local/share/gambas3 sudo rm

[Gambas-user] [Gambas Bug Tracker] Bug #1103: no border change on a imageview control.

2017-05-09 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1103&from=L21haW4- Klaus-Peter MAIS reported a new bug. Summary --- no border change on a imageview control. Type : Bug Priority : Medium Gambas version : 3.9 Product : Unknown Description --- If I wa

Re: [Gambas-user] Serial I/O with byte data

2017-05-09 Thread nando_f
I have used Gambas serial port for 12 years now without problems. If there is nothing in the serial port queue, then that line might block. I use this: . . . L=Lof(Sport) 'how much is there now? if L>1 then L=L-1'leave at least one byte for next time around. i