Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Rox

Pages: [1]
1
Support Questions / Re: elbow and tee
« on: April 24, 2020, 04:11:13 AM »
Got It!
Thank you!

regards.

2
Support Questions / elbow and tee
« on: April 24, 2020, 01:58:16 AM »
Hi, Im using V399y Beta35 and  did not find elbow and tee in controls components, are those available for download?

Thanks, Rox

3
Support Questions / Re: to change Text suffix during Run Time
« on: November 25, 2017, 12:20:49 AM »
Hi Godra Thanks so much for support,
tried your code, I can now change the suffix, but my attempt to write the Min-Max value for use in PLC scaling calculation failed, it returns an exception, here's my attempt to write to Modbus register:

  'Add here code to handle Min and Max changes
                        ModbusTCPCom1.Write("40002", lblMax.Text)

on your second pasted code, im getting an error "m_PLCaddressKeypad is not declared.

Regards, Rox

4
Support Questions / to change Text suffix during Run Time
« on: November 24, 2017, 07:21:32 AM »
Hi!, Support please,
I have a basic label that on click i would like to display a screen configuration pop-up to change Min-Max Engg units for scaling and the Option to change the suffix. How can I do that?



Thanks, Rox

5
Support Questions / Re: multiple outputs on one button
« on: October 27, 2016, 01:00:12 AM »
here's sample: in every press of a button increment a counter in plc,
if counter = 0 then all off
  elseif counter = 1 then On Output 1
  elseif counter = 2 then ON output 2
  elseif counter = 3 then ON Output 3
if counter > 3 then counter = 0

6
Support Questions / ModbusRTU continously sending request
« on: May 27, 2016, 02:50:18 AM »
Hi,
I would like to read my controller time in Hour, minutes,secs on click of the button, but I observed the AHMI continously sending the request from start up and then every ~ 3 secs, i wil use small 8 pin microcontroller for this, for a 24 hour timer.  i have the code below for the mentioned button:

  Private Sub ReadContlrTimeBtn_Click(sender As Object, e As EventArgs) Handles ReadContlrTimeBtn.Click
        ModbusRTUCom1.Read("40004", 3)

    End Sub


Pages: [1]