Allen Bradley Panel View C300 - Fensterproblem

Turbohesse

Level-2
Beiträge
58
Reaktionspunkte
1
Zuviel Werbung?
-> Hier kostenlos registrieren
Hallo,

also mich plagt folgendes Problem an meinem Allen Bradley Bildschirm:

Wenn ich einen zahlenwert in die Steuerung eingeben möchte, muss ich eine Funktionstaste drücken um ein Fenster zu öffnen in dem ich den Wert eintragen kann. Es erscheint soweit korrekt und ich kann ohne irgendetwas weiteres zu tun den Wert eingeben. nach dem bestätigen mit Enter wird der Wert in die Steuerung, eine ML1100 geschrieben. Was nicht passiert ist das sich das weisse Fenster oder der rahmen wie auchimmer man es nennen möchte schließt! Die Zahlen jedoch verschwinden.... weiss einer wie man das fenster wegbekommt?

Danke schonmal =)
 
Arbeitest Du mit Notify und Handshake?

Auszug aus der Hilfe:
Code:
[h=1]Numeric or string entry tags[/h] These tags apply to numeric entry and string entry  objects.
 [h=2]Write Tag[/h] This tag is required.
 When the operator enters a numeric value or character  string in the keypad and presses the Enter key, the application writes the value  or string to the write tag. 
 [h=2]Indicator Tag[/h] This tag is optional.
 When you open a screen, the application reads the value  or string at the indicator tag and displays the data in the numeric or string  entry object. If this tag is not defined, the object will display the last value  or string entered.
 [h=2]Notify and Handshake Tags[/h] Use the notify and handshake tags to verify that the  value or string entered in the keypad is updated at the write tag before the  keypad closes. Initially, the value of both tags is 0.
 When the operator enters data in the keypad and presses  the Enter key, the notify tag is set to a value of 1. 
 When the data is updated at the write tag and displayed  in the object, the ladder logic of the remote device must set the handshake tag  to 1 before a timeout occurs.  When the terminal detects the value of 1 at the  handshake tag, it clears the notify tag and closes the keypad.
 [h=2]Timeout Value[/h] The length of time the remote device has to set the  handshake value to 1 before a timeout occurs. The timeout can be 1 to 60  seconds. The default timeout value is 4 seconds. 
 If a timeout occurs, the terminal displays a timeout  message and clears the value of the notify tag.
 [h=2]Visibility Tag[/h] The application writes a value to this tag to turn the  view of object on or off.

Zur Eingabe generell:

Code:
On the smaller C200 and C300 terminals, a scratchpad opens  instead of the full numeric or floating point keypad. The current value is  highlighted. The operator can use the arrow keys on the terminal as a thumbwheel  to enter a numeric value. Pressing the right arrow key activates  single-character thumbwheel mode, where a highlight indicates the current  position. 
 In thumbwheel mode, the operator can:
 
[LIST]
[*] Press the up or down arrow key to change the value of the  highlighted digit.
[*] Press the left or right arrow key to move the highlight to the  digit on the left or right.
[*] Press the right arrow key at the rightmost character to activate  Insert mode. In this mode, the operator can press the up or down arrow key to  insert a new value to the right of the cursor. 
[*] Press the space character to delete a digit. All other digits  shift to the left one position.
[*] To escape or cancel input, change the entire numeric value to  zeroes. For example, if the numeric value is 3256, change each digit to 0 so the  value shows as 0000. Press the left arrow key to move the cursor to the leftmost  digit. Press the left arrow key again to cancel input and leave the numeric  value unchanged.

[/LIST]
 
Zuviel Werbung?
-> Hier kostenlos registrieren
Ja ich hatte den Handshake drin, ich vermute das war dewr Fehler aber hab es nur ,,getestet,, nicht an der ML ausgeführt! Im Testmode gehts, werde diese Woche mal an der ML testen ;-) Sieht aber schon besser aus....
 
Zurück
Oben