Solved Vbs Object required: '' (error on Line 5)(letter 1)

marthijn99

New member
Local time
8:02 PM
Messages
50
Location
Rijssen
as it says in the title

Option Explicit
dim custFolder, folder

custFolder=InputBox("Type custom path")
Folder.CreateFolder "C:\" & custFolder & "folder1"
 

My Computer My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
unknown
OS
Windows 8.1 x64
CPU
Intel(R) Core(TM) I3-3220 3.30GHZ
Motherboard
unknown
Memory
4 gb ram
Graphics Card(s)
AMD Radeon 6570
Screen Resolution
1280 x1024
Hard Drives
500 gb
Keyboard
Logitec k120
Mouse
MaxXrer
Internet Speed
30 MB p/s
Antivirus
avira,avg (both free)
Browser
google chrome
In line 5 it says
Code:
Folder.CreateFolder "C:\" & custFolder & "folder1"

It uses a method on the Folder variable but problem is that it was declared (on line 2) but never initialized to anything, hence the error.

What is lacking is creating the "file system object" before using it:
Code:
Set folder=CreateObject("Scripting.FileSystemObject")
 

My Computer My Computer

Computer type
Laptop
Computer Manufacturer/Model Number
Toshiba Sattelite A665-S6092
OS
Windows 7 Ultimate x64
CPU
Intel Core i7-740QM
Memory
8 GB DDR3
Graphics Card(s)
NVIDIA GeForce 330GT
Screen Resolution
1366x768
Hard Drives
Samsung 840 SSD 500GB
1TB USB3 external HD
Cooling
Coolermaster Notepal U3 notebook cooling pad
Internet Speed
3mbps ASDL
Antivirus
ClamWin 0.98.7
Browser
Opera 12.17 x86 (main), Firefox 38 (sec), IE11 (last resort)
In line 5 it says
Code:
Folder.CreateFolder "C:\" & custFolder & "folder1"
It uses a method on the Folder variable but problem is that it was declared (on line 2) but never initialized to anything, hence the error.

What is lacking is creating the "file system object" before using it:
Code:
Set folder=CreateObject("Scripting.FileSystemObject")

thanks that did the trick
 

My Computer My Computer

Computer type
PC/Desktop
Computer Manufacturer/Model Number
unknown
OS
Windows 8.1 x64
CPU
Intel(R) Core(TM) I3-3220 3.30GHZ
Motherboard
unknown
Memory
4 gb ram
Graphics Card(s)
AMD Radeon 6570
Screen Resolution
1280 x1024
Hard Drives
500 gb
Keyboard
Logitec k120
Mouse
MaxXrer
Internet Speed
30 MB p/s
Antivirus
avira,avg (both free)
Browser
google chrome
Back
Top