Has anyone found a way of doing this yet i did a search and found not a lot for the krc 4 and help would be great

touchup disable on a krc 4
-
the leg -
January 22, 2016 at 1:43 PM -
Thread is Resolved
-
-
You can change the properties of the .src and make it read only. Then, the touch up option will not appear. But it has a drawback that it will also not allow Block Selection.
-
yes i did that before but its a bit clunky just thought there must be a simpler solution mmm
-
you can prevent operators from touching up if you put motions inside fold (operator cannot expand and view fold) or you can restrict how much they can correct by setting up touchup limits
-
Well, another solution which I adopted when I last developed an application was that I did not use Inline form of programming the motions. I just declared the motions like:
PTP My_Motion1 C_PTP
LIN My_Motion2 C_DISIn this way, I could make the program obsolete for the operators to change. Simply, they were not allowed to touch up. On top of that, I just made src files read only.
Thanks
-
Hello. Search for the file "C:\KRC\SmartHMI\SmartHMI.exe.Standard". In this file all the HMI is defined. Then in this file search for line "<SoftkeyBar SystemName="SKB_STOP_NORMAL" Aliases="SKB_STOP_PARENT, SKB_STOP_CHILD, SKB_STOP_FOLD">" and under this line there will be buttons defined like button 1, button 2, ... search for button 5 and add the parameter Right="UM20" at the end of the line.
"<Button Position="5" DBKey="TPBaseTouch" ProcID="2500" ModuleIdent="INLINEFORM" ProcParam="0" Right="UM20"/>. Now you have defined user level to that button. So when operator will be logged in the touchup wil be disabled, when Expert user will log on the Touchup button will be active. Then do a cold boot with reload files.You can use this approach for other buttons like for delete, new, ...
I haven't tested yet what happens if technology package like arctech or any other is installed which adds the lines into this file(does the lock stays or not).
-
Hello. Search for the file "C:\KRC\SmartHMI\SmartHMI.exe.Standard". In this file all the HMI is defined. Then in this file search for line "<SoftkeyBar SystemName="SKB_STOP_NORMAL" Aliases="SKB_STOP_PARENT, SKB_STOP_CHILD, SKB_STOP_FOLD">" and under this line there will be buttons defined like button 1, button 2, ... search for button 5 and add the parameter Right="UM20" at the end of the line.
"<Button Position="5" DBKey="TPBaseTouch" ProcID="2500" ModuleIdent="INLINEFORM" ProcParam="0" Right="UM20"/>. Now you have defined user level to that button. So when operator will be logged in the touchup wil be disabled, when Expert user will log on the Touchup button will be active. Then do a cold boot with reload files.You can use this approach for other buttons like for delete, new, ...
I haven't tested yet what happens if technology package like arctech or any other is installed which adds the lines into this file(does the lock stays or not).
Thank you. I was searching for same solution.
-
Hallo,
@ DannyDJ which KSS, are you using?
Because i made the changes in my usertech 3.2 (KSS 8.3) and it does not work. -
Hello. Search for the file "C:\KRC\SmartHMI\SmartHMI.exe.Standard". In this file all the HMI is defined. Then in this file search for line "<SoftkeyBar SystemName="SKB_STOP_NORMAL" Aliases="SKB_STOP_PARENT, SKB_STOP_CHILD, SKB_STOP_FOLD">" and under this line there will be buttons defined like button 1, button 2, ... search for button 5 and add the parameter Right="UM20" at the end of the line.
"<Button Position="5" DBKey="TPBaseTouch" ProcID="2500" ModuleIdent="INLINEFORM" ProcParam="0" Right="UM20"/>. Now you have defined user level to that button. So when operator will be logged in the touchup wil be disabled, when Expert user will log on the Touchup button will be active. Then do a cold boot with reload files.You can use this approach for other buttons like for delete, new, ...
I haven't tested yet what happens if technology package like arctech or any other is installed which adds the lines into this file(does the lock stays or not).
Just for report that's works for me
Tks a lot!!
✌