Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to copy string to another function
#6
Variables declared like

Code:
Copy      Help
str s1
are not the same in different functions. Declare like

Code:
Copy      Help
str+ s1
or

Code:
Copy      Help
str- s1
or pass to the function by reference:

Function1:
Code:
Copy      Help
str s1
Function2 s1
out s1
Function2:
Code:
Copy      Help
function str&s1
s1.getclip


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)