Run-time Error 424

30percent

Board Regular
Joined
May 5, 2011
Messages
118
Office Version
  1. 2016
Platform
  1. Windows
Hi,

I have the following code but I got the error message saying that "Run-Time Error 424, Object Required". Wonder if someone could point out what the cause is, and how to rectify?

Code:
Sub callCFP()

pathName = "C:\Code\subFolder_1"
Set fso = CreateObject("Scripting.FileSystemObject")
CreateFullPath (pathName)

End Sub

Sub CreateFullPath(byVal pathName)

absPath = fso.GetAbsolutePathname(pathName) 'error occur on this line

end Sub

The code basically stops at the line: absPath = fso.GetAbsolutePathname(pathName).

However, if I rewrite the code this way, the error doesn't appear. Could someone please explain?

Code:
Sub callCFP()

pathName = "C:\Code\subFolder_1"
Set fso = CreateObject("Scripting.FileSystemObject")
absPath = fso.GetAbsolutePathname(pathName)

Debug.Print absPath

End Sub

Thank you!
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hi,
you need to pass an instance of the object variable to the called procedure as an argument


Code:
Sub callCFP
Dim fso as Object
'your code

'call sub with arguments
CreateFullPath fso, PathName


End Sub

Code:
Sub CreateFullPath(ByVal fso As Object, ByVal PathName As String)


 abspath = fso.GetAbsolutePathname(PathName)


End Sub

you should also declare your variables with their correct data types.

Hope Helpful

Dave
 
Upvote 0

Forum statistics

Threads
1,214,951
Messages
6,122,442
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top