Hi Team,
I want to make changes in the label name. I am trying it using string functions.
There is an error while writing code. Can anybody help me what is wrong in this code?
Thank you!
Hi Team,
I want to make changes in the label name. I am trying it using string functions.
There is an error while writing code. Can anybody help me what is wrong in this code?
Thank you!
Hi @Ankur A3, was Felix Möhlmann's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.
If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always unaccept and comment back to reopen your question.
You have a duplicate variable. The string "labelName" is already part of the default parameters (line 6, the name of the label the activity is setting).
Variables have to be unique when in the same scope. Smaller scopes (such as if-conditions or for-loops) will inherit any variables that were declared in a larger scope, but not the other way around.
Either choose a different name of your string variable or remove the "string" part, to just assign a new value to the existing variable instead of declaring a new one.
int number = 3; if(condition) { double sum = 5 + number; // this works }
int number = 3; if(condition) { double sum = 5 + number; } if(other_condition) { double sum = 7 - number; // this works, because the "sum" variables are in separate scopes }
if(condition) { int number = 3; } double sum = 5 + number; // this does not work
14 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved