metaltest

Members
  • Posts

    3
  • Joined

  • Last visited

metaltest's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Figured out how to do part of it with the evaluate function, but then realized an array would probably better handle this and then could be used to display data fairly easily in a table element.
  2. That totally makes sense. Is there a way to dynamically read and write multiple variables in the popup? Like set a global variable to "2" when opening the popup and reference that when opening the popup to set the current values and then use it set the values on submit. Basically using a variable within a variable. Quick Sequence code in the Button Component from the main page machine_settings = 2 Page.Machine_Settings.Component.Customer.strContents = Page.Page_0.Component.Cust_Machine_(machinesetting).strText Page.Machine_Settings.PopupModal() Set Channel (from the Edit Box Component) Page.Page_0.Component.Cust_Machine_(machinesetting).strText
  3. I've setup a quick sequence associated with a button to change the file name based on strings entered in text boxes. For some reason the last character of the last variable in the file name is cut off. Logging.LabJack1.Filename = basedirectory + Page.Page_0.Component.LabJack1Cust.strContents + "_" + Page.Page_0.Component.LabJack1Job.strContents + "_" + Page.Page_0.Component.LabJack1Spec.strContents + ".txt" As as I added variables the 'C' was cutoff, then the '0' and finally the '3' How do I avoid this?