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 - iDeeW

Pages: [1] 2
1
Open Discussion / Re: File I/O error with DataLogger2
« on: February 22, 2017, 10:46:57 AM »
I only have a BasicDataLogger2 with a ModbusTCP driver.

I have a DataSubscriber on the form too. But its not writing to any files.

2
Open Discussion / File I/O error with DataLogger2
« on: February 21, 2017, 04:47:40 PM »
Please look at the attached picture. Any ideas why I'm having this error.
No other program is accessing this file.

Thanks

3
Open Discussion / Datalogger2 missing seconds!
« on: February 09, 2017, 01:03:53 PM »
Hi,
I ran the Datalogger2 control for 4 hours in parallel with a Yokogawa chart recorder. 
When I compare the two files I saw there are 283 seconds (4.72 minutes) missing on the log file from Datalogger2 control......!
Missing seconds are randomly distributed through out the 4 hour period.
Any ides why this happens?

Thanks

4
Support Questions / Re: Meter2 Control Scale problem
« on: January 19, 2017, 10:41:12 AM »
No. I only use the PLCAddressValue.

5
Support Questions / Re: Meter2 Control Scale problem
« on: January 17, 2017, 11:18:46 PM »
In Meter2.vb -> Public Overrides Property Text()
This is how you have it right now...
Code: [Select]
..
...

If ValueScaleFactor = 1 Then
     MyBase.Text = value
Else
     MyBase.Text = value * ValueScaleFactor
End If
...
..

Below is my modification
Code: [Select]
If ValueScaleFactor = 1 Then
     MyBase.Text = value
Else
     If value Is NumericFormat Then MyBase.Text = value * ValueScaleFactor
End If

Thanks,

6
Support Questions / Re: Meter2 Control Scale problem
« on: January 14, 2017, 11:42:18 PM »
Yes I tried it too. Same app did not crashed with my simulator.
But when I just pull the Ethernet cable from an actual modbus server it crashed with the above error.
 

7
Support Questions / Re: Meter2 Control Scale problem
« on: January 13, 2017, 05:01:50 PM »
Archie,

Thanks for updating the meter2 control on version t.

But now Meter2.vb crashes on communication fail.

Error msg:
Code: [Select]
{"Conversion from string "Com Error -999.No Values Returne" to type 'Double' is not valid."}
So as a quick fix I'm checking if the value is numeric before doing the scaling. Looks like the problem is no more.

But I'm sure you will addressed this in a more elegant manner.

Thanks,

8
Support Questions / Re: Meter2 Control Scale problem
« on: December 30, 2016, 12:40:03 PM »
Thanks Arch

9
Support Questions / Re: ModbusTCP SendData DLL Instance not created
« on: December 30, 2016, 12:39:39 PM »
I wanted to use it with TextChange event of a Textbox.

Code: [Select]
Private Sub tbAlm_TextChanged(sender As Object, e As EventArgs) Handles tbAlm.TextChanged
        ModbusTCPCom1.Write(40016, 100)
    End Sub

The above error pops, when I hit F5 to start the app.

When I do it the same with a button click event, everything works.

Thanks

10
Support Questions / ModbusTCP SendData DLL Instance not created
« on: December 30, 2016, 09:03:52 AM »
Everybody ,

I'm using the latest version & getting an error when I try to write a register.

Code: [Select]
ModbusTCPCom1.Write(40016, 100)
Below is the full error massage. Any ideas?

An exception of type 'MfgControl.AdvancedHMI.Drivers.Common.PLCDriverException' occurred in MfgControl.AdvancedHMI.Drivers.dll but was not handled in user code

Additional information: ModbusTCP SendData DLL Instance not created


Thanks,

11
Support Questions / Re: Meter2 Control Scale problem
« on: December 29, 2016, 02:51:34 PM »
Max value = 150
Min value = -150

the current value is 125

Thanks,

12
Support Questions / Meter2 Control Scale problem
« on: December 29, 2016, 01:23:51 PM »
Hi everybody,

Check the below picture. I have a guage control, a meter control & a meter2 control on the latest version of AdvancedHMI.
The meter & guage control works with no issues. But the meter2 controls is off!!
The value displayed in the PLCAddressText does not match with the PLCAddressValue.
My ValueScaleFactor is 1 for all meters.
Any ideas??

13
Open Discussion / Re: EthernetIPforCLXCom with Toshiba Drive
« on: November 03, 2015, 10:42:56 PM »
Thanks Archie.

14
Open Discussion / EthernetIPforCLXCom with Toshiba Drive
« on: November 03, 2015, 02:06:42 PM »
I could not find anything related to what I'm looking for so I started a new thread.

I'm trying to communicate with a Toshiba motor drive through EthernetIP.
Have anyone done this with EthernetIPforCLXCom?

Currently I have a ControlLogix communicating with this drive. Look at the picture for the settings.
I can read/write to the ControlLogix with Advanced HMI.
But how does AdvancedHMI drivers talk to the Drive directly (without the ControlLogix).

15
Support Questions / Re: 3.52 Bugs
« on: August 14, 2013, 02:53:27 PM »
Toggle property of MomentaryButtons when use with DF1Comm genarates the same error...!

Pages: [1] 2