HC900 Control Station popup program

usfscooter

Member
Join Date
Oct 2013
Location
Los Alamos, NM
Posts
13
I haven't done any programming for a HC900 Control Station before. I was wondering if there was a way to generate a popup display from a bit in the PLC instead of requiring a button press on the screen. Below is what I currently have setup that doesn't work.

Prototype: void Internal.Batch.UserSetup.DeviationPopup(void)

if (CDE.DigitalSignals.DEVIATION_POPUP.Out == TRUE)
ShowPopup(Internal.UserDisplays.HOA_Reset);

I want a popup to display when the process deviation has occurred.


Thanks
 
I haven't done any programming for a HC900 Control Station before. I was wondering if there was a way to generate a popup display from a bit in the PLC instead of requiring a button press on the screen. Below is what I currently have setup that doesn't work.

Prototype: void Internal.Batch.UserSetup.DeviationPopup(void)

if (CDE.DigitalSignals.DEVIATION_POPUP.Out == TRUE)
ShowPopup(Internal.UserDisplays.HOA_Reset);

I want a popup to display when the process deviation has occurred.


Thanks

The Control Station is an OEM version of the Redlion G3XX display family.

Since it uses an imported tag database from the HC900 I would recommend a two step process.

1. Create a Flag Tag and name it anything that makes sense to you (note- don't create it under any of the folders that the Import Function creates. I suggest you create a folder for any tags that you manually create.)
Once the tag is created, find CDE.DigitalSignals.DEVIATION_POPUP.Out in the Right-hand Resource Pane and drag it into the Source Field of the Tag you just created.
The purpose for this is that if you re-import the HC900 configuration, it might overwrite the changes you make in step 2. What we are doing here will duplicate the CDE tag and it will re-link the next time you import.

2. Go to the Triggers Tab of the Flag Tag you created and linked to DEVIATION_POPUP and change the Trigger to Active On. Under Action, type ShowPopup(Internal.UserDisplays.HOA_Reset)

This should accomplish what you want.
 

Similar Topics

Hi all, I've got several CS900 control stations being operated throughout my plant and have had no problems with them. Until now. I've got a 3...
Replies
1
Views
1,772
Hello, Does anybody know where the symbols library "resides" on the Honeywell HC900 Control Station Designer Software package? I am trying to...
Replies
1
Views
4,774
I'm upgrading an existing machine with a Honeywell HC900 controller, and I'm trying to do some data processing in the controller. I have variables...
Replies
0
Views
47
Hello everyone, My designer software as the 7.200 firmware, but when I go to download to the plc HC900 from honeywell the program I created...
Replies
0
Views
660
Hello everyone, In the designer softwar of the plc HC900, I used the function version control on the toolbar and it deleted files from my...
Replies
2
Views
349
Back
Top Bottom