Advertisement
kiwijunglist

Untitled

Aug 5th, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. path := "D:\"
  2.  
  3. ParamaterA := "-profile """ . path . """"
  4. ParameterB := "--user-profile-path=""" . path . """"
  5.  
  6. msgbox % ParamaterA
  7. msgbox % ParameterB
  8.  
  9. ; ------------------------
  10.  
  11. ProfilePatchParameter = Hello
  12. ProfilePath = Path
  13.  
  14. ;Param with a space
  15. Param = %ProfilePatchParameter% %ProfilePath%
  16.  
  17. ;Param with a space
  18. ParamAnotherWay := ProfilePatchParameter . " " . ProfilePath
  19.  
  20. msgbox % Param
  21. msgbox % ParamAnotherWay
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement