Wincc Flexible 2005 (TP270) and Pop-Up

pietervdb

Member
Join Date
Jun 2006
Location
Ghent, Belgium
Posts
67
Hello,

I'm programming a TP270 with many buttons. But now i want to have a pop up with "Are you sure, Yes, No", or something like that, evertime the press the start or stop button.

Is this possible?

Thanx

Pieter
 
Last edited:
You could use the Start/Stop button to select a confirmation screen with just Yes or No buttons on them.
 
Popping up of screen in Simatic HMI

Hi,

I POP_UP the screen using following method.
1) In WinCC project goto connectionsàarea pointeràjob mailbox

2) Type in the address of your choice under Address column (say mw220) and select ON from drop down menu of Active column

3) Create a screen with YES and NO button on it. Note down the screen number under properties of screen (say 10).

4) Now in simatic manager whenever the condition to pop up the screen occurs then just use move command as follows:

51|move|mw220-----------10|move|mw222



Where as 51 is constant which WinCC understands and 10 is the screen number.

Manmeet
 
Thanx, but this is the same as "activatescreen". When they press the YES button the combined startbit must be set. I have 9 simultaneous processes so 9 start/stop buttons.

I solved it like this: i made nine screens with Yes/No en connected each screen with the combined start/stop button.

Hopefully in the future there wil be an easier way.
 
You can do this in a script as shown below. This one I have to pop up after saving a file. I will stay on the screen until OK is pressed or 5 seconds.

Dim WSHShell, Text, Time_in_s, Ruckgabewert
Text= "Trend saved to" & Chr(13) & file_name & Chr(13) & "Trend_Data_MM_DD_YYYY_HH_MM_SS"
Time_in_s = 5
Set WSHShell = CreateObject("WScript.Shell")
Ruckgabewert = WSHShell.Popup(Text,Time_in_s,"File Saved",64)
Set WSHShell = Nothing
 

Similar Topics

Hello, I am using WinCC Flex 2005 and I want to configure a button. If you look at the picture below, on release of the button(which is named...
Replies
0
Views
1,393
Hi Guys, I have a simple problem. All I want to do is bring up a screen from a flag in the plc. I have 1 main screen which is visible all the...
Replies
3
Views
1,693
Hey guys, I'm new to Siemens software and have 2 questions. 1) I'm creating an HMI program and was wondering if anyone has a good manual or link...
Replies
2
Views
1,901
Hello everybody! I'm new, so I apologies if I'll make some mistakes. ok So, let's begin. I have an IBM A31 laptop with 1.7GHz processor and 256MB...
Replies
14
Views
9,017
Hey, I have Siemens OP177 panel and I am having a problem mapping the function key leds in WinCC flexible 2005 SP1 HF7. I cannot find a good...
Replies
5
Views
9,995
Back
Top Bottom