AdvancedHMI Software
General Category => Additional Components => Topic started by: Godra on December 16, 2016, 09:12:21 PM
-
This is a button control that allows you to ping a computer.
It supports multiple entries in the form of IPv4 address or a hostname (use the control's IPAddressCollection property to create a list).
Also, check the attached pictures to see what it could look like.
It is related to this topic:
http://advancedhmi.com/forum/index.php?topic=1555.0
and includes Archie's code.
Do report bugs so I can try to fix them.
-
don't see the control to download
-
Thank you Darrell.
It is now attached in the previous post.
-
Nice work, I find it very handy , as I use many of my HMI's for troubleshooting and commissioning work ,
How could a small description be added next to the IP address , so when I right click on the button I can easily tell what the IP's are for.
To go one step further how could I add another IP to the list from a running HMI
-
The descriptive comments feature was added to the control after you downloaded it (so just download it again).
I will have to see if it is possible to use this same control to actually add a new IP from a running HMI.
-
thank man , keep up the good wolrk
-
The control attached in this post seems to be working fine for adding new IP Address or Hostname (descriptive comments can be used along for as long as the correct comment separators are used <-- defaults are space/slash/slash).
These new entries will be remembered only while the HMI is running.
-
very nice , thank you , find I'm using this button quite a bit , the few little things If you add and IP via button , the text box is quite a bit smaller than the text being entered , also Ive found that when you click the button to ping an Ip it would be nice if there was some indication that is doing something , impatient people just keep clicking the button , Ive found this button to be a very useful control
Thanks Darrell
-
The file was updated and replaced in my previous post.
If you are still to have trouble seeing it properly then in the code go to Constructor / Destructor Region, Public Sub New and try manipulating numbers in the following 2 lines:
Me.AddNewIPForm.Size = New Size(640, 64) '<-- 640 is the width of the popup form, 64 is the height
Me.AddNewIPTextbox.Font = New Font("Microsoft Sans Serif", 12, FontStyle.Regular) '<-- 12 is the size of the font
The button will show "Wait..." after it was clicked and will be disabled until the result shows in the pop up message box.
-
thanks , that did the trick
Darrell
-
I really like this.
Is there any way you think to make this read from PLCConfig.ini for IP addresses to ping?
-
I wouldn't be looking to update this control any further but this should not prevent you or anyone else from trying to modify it.
Since the IP addresses are in the control's IPAddressCollection property then see if you could manipulate the code to actually populate this list with the entries from ini file.
-
Went ahead and massaged the code until I got this to work on the normal PLCConfig.ini file used in many examples
removed the IPAddress Collection. Now it just gets the IP address from the INI you select and pings it.
[EthernetIPDriver]
IPAddress=10.22.57.66
-
Went ahead and massaged the code until I got this to work on the normal PLCConfig.ini file used in many examples
My goal is to give this as a tool for Maintenance People... who aren't very techy.
removed the IPAddress Collection. Now it just gets the IP address from the INI you select and pings it.
[EthernetIPDriver]
IPAddress=10.22.57.66