Post Reply 
New Version: 2.1.14181 (2018 10 16)
12-27-2018, 03:56 AM (This post was last modified: 12-27-2018 04:22 AM by Jacob Wall.)
Post: #35
RE: New Version: 2.1.14181 (2018 10 16)
(12-27-2018 02:11 AM)Spybot Wrote:  Hello!
I just realized my program SKL 4.1b (http://www.hpmuseum.org/forum/thread-3861.html) got broken when trying to run it on Firmware 14181. I don't understand why it used to work fine on FW 13865 and now returns variables names instead of numbers as a result.

I Just wanted to let you guys know this.

Thank you.

I had a quick look at your code, and I'm surprised it worked before since I always assumed that concatenating strings required all objects to be strings.

Instead of this
Code:
PRINT("
  Vertical line!
  The distance between these 
  Points is: "+r+"
");

Convert variable 'r' to a string like
Code:
PRINT("
  Vertical line!
  The distance between these 
  Points is: "+STRING(r)+"
");

You can look at the help for the STRING command for formatting options that are available.
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: New Version: 2.1.14181 (2018 10 16) - Jacob Wall - 12-27-2018 03:56 AM



User(s) browsing this thread: 1 Guest(s)