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

Pages: [1]
1
Open Discussion / Re: Windows 10 UWP
« on: May 03, 2017, 11:36:28 AM »
Will there be comms drivers for ControlLogix for WPF?

2
Tips & Tricks / Re: Popup keypad for General TextBox Use
« on: April 21, 2017, 12:54:41 PM »
One change had to be made.  kpd.ShowDialog should be kpd.ShowDialog().  See code below.
Code: [Select]
private void TextBox1_DoubleClick(object sender, EventArgs e)
{
MfgControl.AdvancedHMI.Controls.AlphaKeyboard kpd = new MfgControl.AdvancedHMI.Controls.AlphaKeyboard();
if (kpd.ShowDialog() == DialogResult.OK) {
TextBox1.Text = kpd.Value;
}
}

3
Tips & Tricks / Re: Popup keypad for General TextBox Use
« on: April 21, 2017, 12:31:23 PM »
Do you have example code of this in C#.  When I am trying to code this in C# I get an error in the If statement for kpd.ShowDialog = DialogResult.OK

4
Open Discussion / Re: User Security
« on: April 13, 2017, 09:14:59 AM »
Cool.  Thanks.  I will definitely look at this.

5
Open Discussion / User Security
« on: April 12, 2017, 02:00:00 PM »
Has anyone implemented a User Security Scheme with AHMI?  I'm new to AHMI.  I need to have users and roles with ability to modify users during runtime.  I also run SQL server on the HMI also.

6
Support Questions / Re: CLX Comms stop after letting HMI sit idle
« on: April 12, 2017, 11:49:06 AM »
I have not seen this issue happen again.  I had RSLogix open and online at the time.  Maybe that caused it.  Good thing is the final HMI will not have anything Rockwell on it.

7
Support Questions / Re: CLX Comms stop after letting HMI sit idle
« on: April 07, 2017, 02:01:50 PM »
Anything in particular that I need to look out for?  Not familiar with wireshark.  I'm new to C# and AHMI.  Have only used traditional COTS HMI software.

8
Support Questions / Re: CLX Comms stop after letting HMI sit idle
« on: April 07, 2017, 01:53:44 PM »
No I have all that turned off.  Even writes to the PLC do not work.

9
Support Questions / CLX Comms stop after letting HMI sit idle
« on: April 07, 2017, 01:06:00 PM »
I am using version 2.99w.  I am using the CLX comms driver.  When I start the HMI app I have comms.  If I keep activity on the screens by mouse clicks everything works ok.  If I walk away for  10 -15 minutes and come back the comms do not work anymore.

Pages: [1]