Jump to content

Recommended Posts

Posted

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 :)

Posted

After the $value variable is holding the string just concatenate it using the & concatenation operator.

Like: $value &= ':\' or $value = $value & ':\'. Same.

Thx Authenticity :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...