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 port...



--
View this message in context: 
http://gambas.8142.n7.nabble.com/Serial-I-O-with-byte-data-tp58933p58939.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 "Sport"
  Po = 1
  
  If TextBox3.Text = "N" Or TextBox3.Text = "n" Then
    pp = 0
  End If
  
  With Sport
    .PortName = TextBox1.Text
    .Speed = TextBox2.Text
    .Parity = Pp
    .DataBits = TextBox4.Text
    .StopBits = TextBox5.Text
    .FlowControl = Val(TextBox6.text)
  Try
    .Open()
    Label9.Text = TextBox1.Text & ":" & TextBox2.Text & "," & TextBox3.Text & 
"," & TextBox4.Text & "," & TextBox5.Text & "  OPEN"
    Label10.Background = &  
    If Error Then
  Message(" Port " & TextBox1.Text & " not found -- TERMINATING PROGRAM")
  Quit
    Endif
  End With

End

Public Sub Sport_Read()
  Dim Rx As String
  Read #Sport, Rx, Lof(Sport)
  Rxs = Rxs & Rx
  If Rx = Chr$(13) Then
    TextArea1.Text = TextArea1.Text & Rxs
    Rxs = ""
  End If
End

Public Sub Button1_Click()
  If Po = 0 Then
    Message("Open the PORT")
  Else
    Print #Sport, Textbox7.Text; Chr$(13)
  End If
End

Public Sub Button3_Click()
  Sport.Close
  Label10.Background = &
  Label9.Text = "CLOSED"
  Po = 0
End

Public Sub Button4_Click()
  TextArea1.Clear
End

Public Sub Button5_Click()
  EndIt()  
End

Public Sub Form_Close()
  EndIt()
End

Public Sub EndIt()
  Try
    Sport.Close
    Quit
  If Error Then
    Quit  
  Endif
End


RegardsMike
 

On Tuesday, 9 May 2017, 0:12, alexchernoff  wrote:
 

 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, some other timers in other modules
also stop to fire. In fact when running the program in Gambas again, it does
not execute even the startup, so have to restart the IDE. 

what am I doing wrong?

thanks!




--
View this message in context: 
http://gambas.8142.n7.nabble.com/Serial-I-O-with-byte-data-tp58933.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


   --
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 could be
> run but not edited. It's not that problem, is it? It was the rights
> thing, but not chmod but chown which caused it. Or maybe you loaded your
> own stuff from another machine where your username has another Uid?

I did the code myself. Nevertheless, the problem appeared after I had
downloaded
docEditor from the farm. After that, editing has been locked. But I can't
affirm there is
a cause/effect here.For the time being, I see it as a coincidence.

Regards

- fernando


2017-05-08 11:11 GMT-03:00 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 locked" means what it is supposed
> to
> > mean: I can't edit anything. No application, no source, nothing. I can
> load
> > any project, but when I try to edit anything -- like say, entering a new
> > line or even a new character,
> > the gambas editor does not respond. This applies to any and every
> project I
> > load.
> >
> > Yes, I have tried locking and unlocking clicking on the lock icon. The
> only
> > thing that changes is that on the tab appears the warning "Read only".
> But
> > the editing continues locked no matter what.
> >
> > I have changed project files and directories do 777 (rwxrwxrwx) but stil
> to
> > no avail.
> >
> > Even if I create a new project, it is born locked for editing.
> >
> > Regards
> >
> > - fernando
>
> Salut Fernando,
>
> what#s about creating a new project ?
>
> If I remember well you compile your gambas3 from source, isn't it.
> What I would try at your point, deleting the gambas3 installation and
> restating from scratch.
>
> Oh, have you had a gambas3 installation from other resources?
> If yes you have to remove that first.
> .
>
> --
> Amicalement
> Charlie
>
>
> 
> --
> 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-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>



-- 
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp: +55 (37) 99988-8868
Skype:  fernandojosecabral
Telefone fixo: +55 (37) 3521-2183
Telefone celular: +55 (37) 99988-8868

Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
nenhum político ou cientista poderá se gabar de nada.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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-repository -y ppa:gambas-team/gambas3 && sudo apt-get update &&
sudo apt-get -y install gambas3
System Information: -
[System]
Gambas=3.9.2
OperatingSystem=Linux
Kernel=4.4.0-21-generic
Architecture=x86_64
Distribution=Linux Mint 18.1 Serena
Desktop=CINNAMON
Theme=Gtk
Language=en_GB.UTF-8
Memory=7855M
[Libraries]
Cairo=libcairo.so.2.11400.6
Curl=libcurl.so.4.4.0
DBus=libdbus-1.so.3.14.6
GStreamer=libgstreamer-0.10.so.0.30.0
GStreamer=libgstreamer-1.0.so.0.803.0
GTK+2=libgtk-x11-2.0.so.0.2400.30
GTK+3=libgtk-3.so.0.1800.9
OpenGL=libGL.so.1.2.0
Poppler=libpoppler.so.58.0.0
QT4=libQtCore.so.4.8.7
QT5=libQt5Core.so.5.5.1
SDL=libSDL-1.2.so.0.11.4
SQLite=libsqlite3.so.0.8.6
[Environment]
CINNAMON_VERSION=3.2.7
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-saVglEvzGG,guid=abe9145f73d18c95bf18421d59108efc
DEFAULTS_PATH=/usr/share/gconf/cinnamon.default.path
DESKTOP_SESSION=cinnamon
DISPLAY=:0
GB_GUI=gb.qt4
GDMSESSION=cinnamon
GDM_XSERVER_LOCATION=local
GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop
GIO_LAUNCHED_DESKTOP_FILE_PID=5810
GJS_DEBUG_OUTPUT=stderr
GJS_DEBUG_TOPICS=JS ERROR;JS LOG
GNOME_DESKTOP_SESSION_ID=this-is-deprecated
GTK_MODULES=gail:atk-bridge
GTK_OVERLAY_SCROLLING=1
HOME=/home/
LANG=en_GB.UTF-8
LOGNAME=
MANDATORY_PATH=/usr/share/gconf/cinnamon.mandatory.path
MDMSESSION=cinnamon
MDM_LANG=en_GB.UTF-8
MDM_XSERVER_LOCATION=local
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
PWD=/home/
QT_ACCESSIBILITY=1
QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1
QT_QPA_PLATFORMTHEME=qgnomeplatform
QT_STYLE_OVERRIDE=gtk
SESSION_MANAGER=local/:@/tmp/.ICE-unix/2283,unix/:/tmp/.ICE-unix/2283
SHELL=/bin/bash
SSH_AGENT_PID=2353
SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
TZ=:/etc/localtime
USER=
USERNAME=
WINDOWPATH=8
XAUTHORITY=/home//.Xauthority
XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg
XDG_CURRENT_DESKTOP=X-Cinnamon
XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/
XDG_RUNTIME_DIR=/run/user/1000
XDG_SEAT=seat0
XDG_SESSION_COOKIE=2a5d5f96ef9147c0b35535562b32d0ff-1494257404.496553-740014225
XDG_SESSION_DESKTOP=cinnamon
XDG_SESSION_ID=c1
XDG_VTNR=8




-
Check out www.gambas.one 
--
View this message in context: 
http://gambas.8142.n7.nabble.com/Editing-still-blocked-tp58923p58934.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[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, some other timers in other modules
also stop to fire. In fact when running the program in Gambas again, it does
not execute even the startup, so have to restart the IDE. 

what am I doing wrong?

thanks!




--
View this message in context: 
http://gambas.8142.n7.nabble.com/Serial-I-O-with-byte-data-tp58933.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 does not work. Perhaps there is a specific file that  tells gambas
> to keep the whole thing locked. Isn't there?
>
> I'd appreciate if someone can give me some more ideas to try.
>
> Regards
>
> - fernando
>
>

Can you send a tar.gz archive of your project directory?

-- 
Benoît Minisini

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 locked" means what it is supposed to
> mean: I can't edit anything. No application, no source, nothing. I can load
> any project, but when I try to edit anything -- like say, entering a new
> line or even a new character,
> the gambas editor does not respond. This applies to any and every project I
> load.
> 
> Yes, I have tried locking and unlocking clicking on the lock icon. The only
> thing that changes is that on the tab appears the warning "Read only". But
> the editing continues locked no matter what.
> 
> I have changed project files and directories do 777 (rwxrwxrwx) but stil to
> no avail.
> 
> Even if I create a new project, it is born locked for editing.
> 
> Regards
> 
> - fernando

Salut Fernando,

what#s about creating a new project ?

If I remember well you compile your gambas3 from source, isn't it.
What I would try at your point, deleting the gambas3 installation and
restating from scratch.

Oh, have you had a gambas3 installation from other resources?
If yes you have to remove that first.
.

-- 
Amicalement
Charlie


--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[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 Render the FormWeb

  ‘ == > Ex: ModTrans.Creation_List_Langue()

  ‘ Render the FormWeb
  FormWebMain.Render()

End


It works using Main module but the render is not exactly the same than when the 
FormWeb is defined as default startup.
For example, the contraints in the web page are not applied using Main module 
but work fine when FormWeb start directly.

So, is it possible to render a FormWeb using .Render() property or it’s a bad 
idea ?

Thank you for the answer.

— 
Olivier Cruilles

--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 not work. Perhaps there is a specific file that  tells gambas
> to keep the whole thing locked. Isn't there?
>
> I'd appreciate if someone can give me some more ideas to try.
>
> Regards
>
> - fernando
>
>

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 could be 
run but not edited. It's not that problem, is it? It was the rights 
thing, but not chmod but chown which caused it. Or maybe you loaded your 
own stuff from another machine where your username has another Uid?

There is a lock-file, but it will only cause Gambas asking if you are 
sure you are not working with the project already before loading it into 
the IDE.

Regards
Rolf


--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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, May 8, 2017 at 4:20 PM, Fernando Cabral <
fernandojosecab...@gmail.com> wrote:

> 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_64 x86_64 GNU/Linux
>
> That, in fact, is Linux Mint 8.1 Serena.
>
> Thank you.
>
> - fernando
>
>>
>> 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 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 application, no source, nothing. I can
>>> load
>>> any project, but when I try to edit anything -- like say, entering a new
>>> line or even a new character,
>>> the gambas editor does not respond. This applies to any and every
>>> project I
>>> load.
>>>
>>> Yes, I have tried locking and unlocking clicking on the lock icon. The
>>> only
>>> thing that changes is that on the tab appears the warning "Read only".
>>> But
>>> the editing continues locked no matter what.
>>>
>>> I have changed project files and directories do 777 (rwxrwxrwx) but stil
>>> to
>>> no avail.
>>>
>>> Even if I create a new project, it is born locked for editing.
>>>
>>> Regards
>>>
>>> - fernando
>>>
>>> 2017-05-08 8:43 GMT-03:00 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-user mailing list archive at Nabble.com.
>>> > 
>>> > --
>>> > 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-user@lists.sourceforge.net
>>> > https://lists.sourceforge.net/lists/listinfo/gambas-user
>>> >
>>>
>>>
>>>
>>> --
>>> Fernando Cabral
>>> Blogue: http://fernandocabral.org
>>> Twitter: http://twitter.com/fjcabral
>>> e-mail : fernandojosecab...@gmail.com
>>> Facebook: f...@fcabral.com.br
>>> Telegram: +55 (37) 99988-8868
>>> Wickr ID: fernandocabral
>>> WhatsApp: +55 (37) 99988-8868
>>> Skype:  fernandojosecabral
>>> Telefone fixo: +55 (37) 3521-2183
>>> Telefone celular: +55 (37) 99988-8868
>>>
>>> Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
>>> nenhum político ou cientista poderá se gabar de nada.
>>> 
>>> --
>>> 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-user@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/gambas-user
>>>
>>
>>
>
>
> --
> Fernando Cabral
> Blogue: http://fernandocabral.org
> Twitter: http://twitter.com/fjcabral
> e-mail: fernandojosecab...@gmail.com
> Facebook: f...@fcabral.com.br
> Telegram: +55 (37) 99988-8868 <+55%2037%2099988-8868>
> Wickr ID: fernandocabral
> WhatsApp: +55 (37) 99988-8868 <+55%2037%2099988-8868>
> Skype:  fernandojosecabral
> Telefone fixo: +55 (37) 3521-2183 <+55%2037%203521-2183>
> Telefone celular: +55 (37) 99988-8868 <+55%2037%2099988-8868>
>
> Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
> nenhum político ou cientista poderá se gabar de nada.
>
>
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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_64 x86_64 GNU/Linux

That, in fact, is Linux Mint 8.1 Serena.

Thank you.

- fernando

>
> 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 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 application, no source, nothing. I can
>> load
>> any project, but when I try to edit anything -- like say, entering a new
>> line or even a new character,
>> the gambas editor does not respond. This applies to any and every project
>> I
>> load.
>>
>> Yes, I have tried locking and unlocking clicking on the lock icon. The
>> only
>> thing that changes is that on the tab appears the warning "Read only". But
>> the editing continues locked no matter what.
>>
>> I have changed project files and directories do 777 (rwxrwxrwx) but stil
>> to
>> no avail.
>>
>> Even if I create a new project, it is born locked for editing.
>>
>> Regards
>>
>> - fernando
>>
>> 2017-05-08 8:43 GMT-03:00 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-user mailing list archive at Nabble.com.
>> > 
>> > --
>> > 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-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/gambas-user
>> >
>>
>>
>>
>> --
>> Fernando Cabral
>> Blogue: http://fernandocabral.org
>> Twitter: http://twitter.com/fjcabral
>> e-mail : fernandojosecab...@gmail.com
>> Facebook: f...@fcabral.com.br
>> Telegram: +55 (37) 99988-8868
>> Wickr ID: fernandocabral
>> WhatsApp: +55 (37) 99988-8868
>> Skype:  fernandojosecabral
>> Telefone fixo: +55 (37) 3521-2183
>> Telefone celular: +55 (37) 99988-8868
>>
>> Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
>> nenhum político ou cientista poderá se gabar de nada.
>> 
>> --
>> 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-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gambas-user
>>
>
>


-- 
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp: +55 (37) 99988-8868
Skype:  fernandojosecabral
Telefone fixo: +55 (37) 3521-2183
Telefone celular: +55 (37) 99988-8868

Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
nenhum político ou cientista poderá se gabar de nada.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 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 application, no source, nothing. I can load
> any project, but when I try to edit anything -- like say, entering a new
> line or even a new character,
> the gambas editor does not respond. This applies to any and every project I
> load.
>
> Yes, I have tried locking and unlocking clicking on the lock icon. The only
> thing that changes is that on the tab appears the warning "Read only". But
> the editing continues locked no matter what.
>
> I have changed project files and directories do 777 (rwxrwxrwx) but stil to
> no avail.
>
> Even if I create a new project, it is born locked for editing.
>
> Regards
>
> - fernando
>
> 2017-05-08 8:43 GMT-03:00 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-user mailing list archive at Nabble.com.
> > 
> > --
> > 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-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> >
>
>
>
> --
> Fernando Cabral
> Blogue: http://fernandocabral.org
> Twitter: http://twitter.com/fjcabral
> e-mail: fernandojosecab...@gmail.com
> Facebook: f...@fcabral.com.br
> Telegram: +55 (37) 99988-8868
> Wickr ID: fernandocabral
> WhatsApp: +55 (37) 99988-8868
> Skype:  fernandojosecabral
> Telefone fixo: +55 (37) 3521-2183
> Telefone celular: +55 (37) 99988-8868
>
> Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
> nenhum político ou cientista poderá se gabar de nada.
> 
> --
> 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-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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 application, no source, nothing. I can load
any project, but when I try to edit anything -- like say, entering a new
line or even a new character,
the gambas editor does not respond. This applies to any and every project I
load.

Yes, I have tried locking and unlocking clicking on the lock icon. The only
thing that changes is that on the tab appears the warning "Read only". But
the editing continues locked no matter what.

I have changed project files and directories do 777 (rwxrwxrwx) but stil to
no avail.

Even if I create a new project, it is born locked for editing.

Regards

- fernando

2017-05-08 8:43 GMT-03:00 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-user mailing list archive at Nabble.com.
> 
> --
> 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-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>



-- 
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp: +55 (37) 99988-8868
Skype:  fernandojosecabral
Telefone fixo: +55 (37) 3521-2183
Telefone celular: +55 (37) 99988-8868

Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
nenhum político ou cientista poderá se gabar de nada.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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-user mailing list archive at Nabble.com.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[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 gambas
to keep the whole thing locked. Isn't there?

I'd appreciate if someone can give me some more ideas to try.

Regards

- fernando


-- 
Fernando Cabral
Blogue: http://fernandocabral.org
Twitter: http://twitter.com/fjcabral
e-mail: fernandojosecab...@gmail.com
Facebook: f...@fcabral.com.br
Telegram: +55 (37) 99988-8868
Wickr ID: fernandocabral
WhatsApp: +55 (37) 99988-8868
Skype:  fernandojosecabral
Telefone fixo: +55 (37) 3521-2183
Telefone celular: +55 (37) 99988-8868

Enquanto houver no mundo uma só pessoa sem casa ou sem alimentos,
nenhum político ou cientista poderá se gabar de nada.
--
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-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user