Robin Posted February 17, 2009 Posted February 17, 2009 Hi folks...Hope someone can help me with this bit of code... I need to add the ":\" to an INPUT, but it seems i'm missing something...Here is my code---> $value = InputBox("Drive", "Please Enter Root Drive...ie C or D", "", " M1") FileCopy("NTDETECT.COM", $value &":\", 1) Thanks fellas
Authenticity Posted February 17, 2009 Posted February 17, 2009 After the $value variable is holding the string just concatenate it using the & concatenation operator. Like: $value &= ':\' or $value = $value & ':\'. Same.
Robin Posted February 17, 2009 Author Posted February 17, 2009 After the $value variable is holding the string just concatenate it using the & concatenation operator.Like: $value &= ':\' or $value = $value & ':\'. Same.Thx Authenticity
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now