stplanken

MrPLC Member
  • Content count

    4
  • Joined

  • Last visited

Posts posted by stplanken


  1. Open Office came a long way and will probably do for most folks looking for a simple word processor or spreadsheet. However, Open Office is unable to convert fancy VB scripting. And unless I am overlooking something, it seems that with Word documents containing tables with calculations the math is simply ignored without warning. The PDF exporting is a nice feature.

  2. Usually I add a little script to the button's "display" property, something like this: const TAG_NAME = "yourtag_name_here" dim oTag set oTag = hmiruntime.tags(TAG_NAME) oTag.read if oTag.value = 1 then item.backcolor = vbred else item.backcolor = vbgreen end if Dont forget to enter the tag name as the trigger (best to avoid cyclic triggers). You could also use the dynamic properties, depending on the "style" of the button.

  3. This almost seems to indicate you cannot use STAT addresses anywhere but in the FB in which they were declared. You can, of course, use addresses from instance DBs anywhere.