write a vb script to rename a folder from tree4 to tree7
Answers were Sorted based on User's Feedback
Answer / ranadheer
dim vfso
set vfso=createobject("scripting.filesystemobject")
vfso.renamefolder "C:\tree4","C:\tree7"
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / usha
set fso=createobject("scripting.filesystemobject")
set f=fso.getfolder("C:Tree4")
f.name="Tree7"
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mudaseer
dim vfso
set vfso=createobject("scripting.filesystemobject")
vfso.movefolder "C:\tree4","C:\tree7"
| Is This Answer Correct ? | 1 Yes | 2 No |
what is diff between static and dynaic arrys?
Mention what is vbscript procedures?
How to return a value from function...? you should not tell msgbox, print.. etc.,
HI how can handle dynamic image through vb script example we have to create email id fill the edit box(these latters change wrong password) i am wating your answer
When does ‘on click of button’ event gets triggered in the vbscript language?
how to increasing the numbers in a given text box please write a vb script
What variable can you use to share info across the whole application for one user?
Mention what is the difference between vbscript and vba?
Mention how you can call vbscript functions?
What is sql loader? Explain the files used by sql loader to load file?
* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?
How will you convert a string to lower case string using vbscript?