[Gambas-user] Editing still blocked

2017-05-08 Thread Fernando Cabral
I really need your help. I can't edit any code. Everything is locked. I have even taken two extreme measures: changed the whole directory tree to 777 (chmod-R 777 .) and re-installed gambas from scratch (this time using the PPA). Still does not work. Perhaps there is a specific file that tells ga

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Charlie
Have you checked the Edit menu, there is a 'Locked' feature there. This is just a guess as 'Everything is locked' is a little vague. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Editing-still-blocked-tp58923p58924.html Sent from the gambas-us

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Fernando Cabral
> 2017-05-08 8:43 GMT-03:00 Charlie wrote: > Have you checked the Edit menu, there is a 'Locked' feature there. This is > just a guess as 'Everything is locked' is a little vague. Charlie, unfortunately, "everything is locked" means what it is supposed to mean: I can't edit anything. No applicati

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Jussi Lahtinen
So Gambas IDE does *not* claim the project is locked, but you simply cannot edit anything. Can you give your system information? Jussi On Mon, May 8, 2017 at 3:37 PM, Fernando Cabral < fernandojosecab...@gmail.com> wrote: > > 2017-05-08 8:43 GMT-03:00 Charlie wrote: > > Have you checked the Ed

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Fernando Cabral
2017-05-08 10:03 GMT-03:00 Jussi Lahtinen wrote: > So Gambas IDE does *not* claim the project is locked, but you simply > cannot edit anything. Can you give your system information? > Precisely. Linux Inspiron-5537 4.8.0-49-generic #52~16.04.1-Ubuntu SMP Thu Apr 20 10:55:59 UTC 2017 x86_64 x86_

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Jussi Lahtinen
Anyone else using Gambas on Linux Mint 18.1 ? Everything working? Issues? Can you please go to Gambas IDE Menu "?" --> "System informations" and copy & paste the result, if you can. If you have virtual machine set up, maybe you could try some other system / work there meanwhile. Jussi On Mon, M

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Rolf-Werner Eilert
Am 08.05.2017 12:55, schrieb Fernando Cabral: > I really need your help. I can't edit any code. Everything is locked. I > have even taken two extreme measures: changed the whole directory tree to > 777 (chmod-R 777 .) and re-installed gambas from scratch (this time using > the PPA). > > Still does

[Gambas-user] Question about webForm object

2017-05-08 Thread Yahoo
Benoit, I’m playing with webForm object for a new project and I try to render a FormWeb over a module ‘Main’ executed as startup rather than define the FormWeb as default startup object. Example: Module Main ' Gambas module file Public Sub Main()   ‘ Some functions executed here   ‘ before R

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Karl Reinl
Am Montag, den 08.05.2017, 09:37 -0300 schrieb Fernando Cabral: > > 2017-05-08 8:43 GMT-03:00 Charlie wrote: > > Have you checked the Edit menu, there is a 'Locked' feature there. This is > > just a guess as 'Everything is locked' is a little vague. > > Charlie, unfortunately, "everything is lock

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Benoît Minisini
Le 08/05/2017 à 12:55, Fernando Cabral a écrit : > I really need your help. I can't edit any code. Everything is locked. I > have even taken two extreme measures: changed the whole directory tree to > 777 (chmod-R 777 .) and re-installed gambas from scratch (this time using > the PPA). > > Still do

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

2017-05-08 Thread alexchernoff
Dear all, I am receiving data over a serial port which is sent by a byte[].write function (an array of bytes) I get the SerialPort1_read() event raised where I try to read data, RxBuffer is a string var *Try Read #SerialPort1, RxBuffer, Lof(SerialPort1)* as soon as I do, the whole program stops

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Charlie
Jussi Lahtinen wrote > Anyone else using Gambas on Linux Mint 18.1 ? Everything working? > Issues?Can you please go to Gambas IDE Menu "?" --> "System informations" > and copy& paste the result, if you can. I use Mint 18.1 without any problems, installed from the ppa using: - sudo add-apt-reposito

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Fernando Cabral
Karl wrote: > Are these projects which you have coded yourself, saved and then closed > and opened again? Or are these project which were made by others? [...] > In the past (before software farm), there used to be the problem that > when I loaded one of the examples offered on the website, they c

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Fernando Cabral
>Can you send a tar.gz archive of your project directory? I am sending one. Do you need them all? (tar compressed) Regards - fernando legibilidade Description: Binary data -- Check out the vibrant tech community on on

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Benoît Minisini
Le 08/05/2017 à 19:38, Fernando Cabral a écrit : > >Can you send a tar.gz archive of your project directory? > > I am sending one. Do you need them all? > (tar compressed) > > Regards > > - fernando > The joined file does not have the .tag.gz extension... -- Benoît Minisini ---

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

2017-05-08 Thread Mike Crean
Hi Alex, have a look at this code for some ideas how I have serial comms working. ' Gambas class file Private Sport As SerialPort Public Pp As Byte Public Po As Byte Public Rxs As String Public Sub Form_Open()   Me.Load   Me.Center End Public Sub Button2_Click()   Sport = New SerialPort As "Spo

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

2017-05-08 Thread alexchernoff
Thanks Mike, what I have is pretty much the same, it's this line that causes everything to stop. *Read #Sport, Rx, Lof(Sport) * A very similar program written in Xojo on the same system using same serial port works just fine. In Gambas, things just stop executing as soon as I do a Read on that