News:

  • September 22, 2026, 12:33:29 AM

Login with username, password and session length

Author Topic: Display DoMore recipe in Cmore  (Read 10787 times)

pioplastic

  • Newbie
  • *
  • Posts: 7
Display DoMore recipe in Cmore
« on: August 05, 2013, 10:16:50 AM »
I was wondering if there is a way to display the recipe name which is stored in recname
  • . It is a 16 character user defined block with 100 records. What I am trying to do is to display a list of the recipes by name in the CMore. If I change the string length in the recipe title to 64 characters, I can use the memcopy command and dump the data to the SSx strings which the Cmore can see. Is there a better way?

plcnut

  • Hero Member
  • *****
  • Posts: 815
    • premiersi.com
Re: Display DoMore recipe in Cmore
« Reply #1 on: August 05, 2013, 10:23:26 AM »
Use STRPRINT and you won't have to make the string so long.
And you are correct that the only string memory that the C-more can read is SS or SL.
Circumstances don't determine who we are, they only reveal it.

~Jason Wolthuis
Premier Systems Integration, LLC
https://premiersi.com

Controls Guy

  • Internal Dev
  • Hero Member
  • ****
  • Posts: 3626
  • Darth Ladder
Re: Display DoMore recipe in Cmore
« Reply #2 on: August 05, 2013, 05:58:32 PM »
The C-More DL driver can read and write strings the "old way", encoded two bytes per register in a contiguous block.  You could just put the names in DLV-memory, although then you'd have one foot in the old system and one in the new.
I retract my earlier statement that half of all politicians are crooks.  Half of all politicians are NOT crooks.  There.

pioplastic

  • Newbie
  • *
  • Posts: 7
Re: Display DoMore recipe in Cmore
« Reply #3 on: August 08, 2013, 10:57:52 AM »
Thanks for the input. I figured that I would need to convert them to visible strings. I will experiment to find the best option and let you know.