Serialization error - Gambas 3.18.3

Post

Posted
Rating:
#1 (In Topic #1070)
Enthusiast
AndyGable is in the usergroup ‘Enthusiast’
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

Code (gambas)

  1.     While Not Eof(Global.RS232Printer)
  2.         Read #Global.RS232Printer, Global.variable_Byte
  3.         Global.DataRec &= Global.variable_Byte
  4.     Wend
  5.  

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

Does anyone have any idea what this means?
Online now: No Back to the top

Post

Posted
Rating:
#2
Avatar
Regular
thatbruce is in the usergroup ‘Regular’
Using a line taken from a game I was enjoying today:

Code

While Not Eof(something)
    Read #something, something
    something &= something
Wend
Hint: Search Sylvia's bed room for more clues.

Online now: No Back to the top
1 guest and 0 members have just viewed this.