12-24-2015 06:45 AM
Hi.
I search web and this forum without success. Where is Front Panel Security in labview 2014. On web for LabView 2011 . Tools-->Security--> Front Panel Security.
I want to disable change some variable for some user. I create user...but not have this option about FrontPanelSecurity.
Can you help me ...where I can find this Panel on labview 2014?
Solved! Go to Solution.
12-24-2015
06:55 AM
- last edited on
03-28-2025
09:20 AM
by
Content Cleaner
Hi, you are looking for this feature??
How Can I Lock an Individual Front Panel Object in LabVIEW? - National Instruments
12-24-2015 07:19 AM
I want to disable change some variable for some user. I create user...but not have this option about FrontPanelSecurity.
It all depends on what you mean by "disable change some variable". The previous responder told you how to prevent moving the control on the Front Panel (which you can only do in Development mode). If you want to prevent the user from changing the value of the control during execution (either in Development or in Run-Time mode), you can change the Enable property to "Disabled" or to "Disabled & greyed", or you can simply make the Control "invisible". Both of these can be done programmatically by use of Property Nodes (the Properties are called "Disabled" and "Visible").
Bob Schor
12-24-2015
08:42 AM
- last edited on
03-28-2025
09:20 AM
by
Content Cleaner
Yes ..i want prevent changing the value for some users. I create "administrators" and "operator user."
I want this:
Administrator can changing value of the variable and controls.
User can't changing value and controls.
Disable or lock variable and control not resolve my problem. How I can make this on LabView 2014:
12-24-2015
09:20 AM
- last edited on
03-28-2025
09:21 AM
by
Content Cleaner
@Qooler wrote:
Yes ..i want prevent changing the value for some users. I create "administrators" and "operator user."
I want this:
Administrator can changing value of the variable and controls.
User can't changing value and controls.
Disable or lock variable and control not resolve my problem. How I can make this on LabView 2014:
Disabling the controls certainly does do it for you. You just have to figure out how to do it for certain users. You need to brush up on your Googling skills because this is the first hit I got searching "LabvIEW get current Windows user": https://knowledge.ni.com/KnowledgeArticleDetails?id=kA00Z000000PACwSAO&l=en-US
Armed with this knowledge and the fact that you can disable controls programmatically, you should be able to figure this out. If not, at least show us what you have. We're more than willing to "assist"; not willing to "do".
Of course, i am assuming that you are talking about access to a control when the VI is running...
12-24-2015
11:01 AM
- last edited on
03-28-2025
09:21 AM
by
Content Cleaner
The link you posted is for DSC. You would need to purchase this and license it for LabVIEW as it is an add-on.
https://www.ni.com/en-us/shop/product/labview-datalogging-and-supervisory-control-module.html
12-24-2015 11:09 AM
I had never seen this option, mostly because I don't use the DSC (DataLogging and Supervisory Control) Module. Once I installed it, a new Security Menu item appeared on the Tools Menu, Front Panel Security appeared in LabVIEW Help, and I could see a screen similar to the one you show. Incidentally, searching for Front Panel Security in LabVIEW Help, even without the DSC installed, gives you Help that says "Requires DSC Module".
Bob Schor
12-24-2015 10:24 PM
12-25-2015 11:19 AM
Thanks to answer.
After buy and install DCS module...i have this option.
Regards.