Serialization error - Gambas 3.18.3

Post your Gambas programming questions here.
Post Reply
AndyGable
Posts: 363
Joined: Wednesday 2nd December 2020 12:11am
Location: Northampton, England
Contact:

Serialization error - Gambas 3.18.3

Post by AndyGable »

HI Everyone,

I have just updated my systems to Debain 12 and Gambas 3.18.3 (built from source code)

I have run a program that was working perfectly fine before the update but now I get a error on this section of code

    While Not Eof(Global.RS232Printer) 
        Read #Global.RS232Printer, Global.variable_Byte
        Global.DataRec &= Global.variable_Byte
    Wend


It heighlights the Read #Global.RS232Printer, Global.variable_Byte and says "Serialization error"

Does anyone have any idea what this means?
User avatar
thatbruce
Posts: 168
Joined: Saturday 4th September 2021 11:29pm

Re: Serialization error - Gambas 3.18.3

Post by thatbruce »

Using a line taken from a game I was enjoying today:

Code: Select all

While Not Eof(something) 
    Read #something, something
    something &= something
Wend
Hint: Search Sylvia's bed room for more clues.
Have you ever noticed that software is never advertised using the adjective "spreadable".
Post Reply