Hello MPGH Users!
--------------------------
First : Lets assign The Value to Variable
Like This
Code:
 $Tut = "Ahmed-"
We can also use 2 values as 1 with &
EX
Code:
 $Tut = "Ahmed-" & "Welcome In Autoit Tutorials"
You used it as you type :
Code:
$Tut = "Ahmed- Welcome In Autoit Tutorials"
You can also use it like this
Code:
$Tut = "-Ahmed"
$Tut2 = $Tut &" Welcome In Autoit Tutorials"
Same with system directorys:
Code:
$Tut=@ProgramFilesDir & "\Autoit3"
MsgBox(0,"",$Tut)
-------------------------------------------
Done..