[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Comment #5 by Gianfranco COSTAMAGNA: great success! I did just take a part of the patch, I clicked on unified view on the commit I guess, and this split the patch into three :) and I copied the first lol All hashed or ciphered

[Gambas-user] Is this a bug

2016-06-30 Thread Charlie
I have tried this using gb.gui/gb.gtk3/gb.qt4 and it fails, is this a bug? Public Sub Button1_Click() SpinBox1.Enabled = False 'O.K. SpinBar1.Enabled = False 'Doesn't work End -- View this message in context: http://gambas.8142.n7.nabble.com/Is-this-a-bug-tp56630.html Sent from the gambas-u

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Comment #4 by Tobias BOEGE: I suppose that the c_digest.c file has a wrong version (if you use some automatic build system, does it maybe revert patches to match their known checksums?) because c_digest.c line 138 contains a com

Re: [Gambas-user] gbTerminal

2016-06-30 Thread herberth guzman
> > Thanks Benoit for Gambas3 > Thanks Fabien for gb.form.terminal > Thanks Benoit and Fabien for gb.form.terminal >The terminal idea is from me but most of the code is from Beno?t. I did not know Fabien. Benoit, thank you for gb.form.terminal and congratulations to Gambas3 development team, excell

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Comment #3 by Gianfranco COSTAMAGNA: I commented the ctx on c_digest.c, opened the test project, clicked on "play" button and the attached image is the result. Note: I'm using 3.8.4 with the patch on your commit (applies cleanly

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Gianfranco COSTAMAGNA added an attachment: Screenshot from 2016-06-30 19-06-44.png -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Comment #2 by Gianfranco COSTAMAGNA: E_BUILDFAILURE: c_digest.c: In function 'DigestMethod_Hash': c_digest.c:138:13: error: storage size of 'ctx' isn't known EVP_MD_CTX ctx; ---

Re: [Gambas-user] Serial Port issues and events.

2016-06-30 Thread Alexie
To read into an array, do something like: Public Sub SerialPort_Read() Dim aData As New Byte[] Dim iLen As Integer iLen = Lof(Last) aData.Resize(iLen) Try aData.Read(Last, 0, iLen) End 2016-06-30 17:44 GMT+02:00 ML : > Fernando, > > I know what you mean. In my case I just wanted to

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Tobias BOEGE added an attachment: test_openssl-0.0.2.tar.gz -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Comment #1 by Tobias BOEGE: Thanks for the report. I need your assistance with this because I have only stable openssl available. Could you try to compile the latest revision #7806 and tell me if it works? By "works" I mean comp

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Tobias BOEGE changed the state of the bug to: Working. -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to expl

Re: [Gambas-user] Serial Port issues and events.

2016-06-30 Thread ML
Fernando, I know what you mean. In my case I just wanted to show in the examples which bytes come and go through the port. I do know 0x02 (&H2 for Gambas) is a single byte with value 2. I'm not transmitting "0-x-0-2" over the wire as 4 bytes, I'm just transmitting a string whose first character ha

Re: [Gambas-user] Serial Port issues and events.

2016-06-30 Thread nando_f
I've done extensive work with the serial port for a dozen years with 100% success 24 hour operation. Sometimes people get mixed up with "0x02" thinking it's binary. That is 4 characters ascii. I prefer to use chr(2) to create a 1 length string binary 2. If you're going to use byte[] array then byt

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Tobias BOEGE changed the state of the bug to: Accepted. -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to exp

[Gambas-user] [Gambas Bug Tracker] Bug #959: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.959&from=L21haW4- Gianfranco COSTAMAGNA changed the state of the bug to: Duplicate. -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco,

Re: [Gambas-user] Serial Port issues and events.

2016-06-30 Thread ML
Alexie, Not really. This is my first attempt at a binary-exchange over serial in Gambas. Can't also find out the old G3 examples that might have existed about this and my web searches were unsuccessful. So, if you could point me to some example code to read a Byte[], I'll be grateful. My attempts

Re: [Gambas-user] Serial Port issues and events.

2016-06-30 Thread Alexie
Do you have a better/working example? Using multiple serialport works fine in Gambas (we use it in DomotiGa). You can read byte for byte, or read it into an array (latter one i recommend). Then you just loop through the array until you find STX/ETX characters ;-) 2016-06-30 12:17 GMT+02:00 zxMarce

[Gambas-user] Serial Port issues and events.

2016-06-30 Thread zxMarce
Hi there. Using Gambas 3.8.4 from PPA on Ubuntu 14.04 x64. I'm having issues with serial ports. I have a USB to 4 RS232C hub adapter. It is working on a virtual Windows machine, reading and writing as it is supposed to do. The connected device (using one port only) is a Magnetic Card Encoder that

[Gambas-user] [Gambas Bug Tracker] Bug #959: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.959&from=L21haW4- Gianfranco COSTAMAGNA reported a new bug. Summary --- gambas3 build failure with openssl 1.1 Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description --- G

[Gambas-user] [Gambas Bug Tracker] Bug #958: gambas3 build failure with openssl 1.1

2016-06-30 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.958&from=L21haW4- Gianfranco COSTAMAGNA reported a new bug. Summary --- gambas3 build failure with openssl 1.1 Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description --- H