can I get the value of a variable declared in a procedure then use it in an if condition in another one , and how please ?

有帮助吗?

解决方案

You have to either pass the value to the other procedure as an input parameter, or store the value somewhere that both procedures can reach it, such as a class member if both procedures are members of the same class, or in a global variable. Your question is pretty vague on details, so I can't provide much of an answer beyond this.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top