Application.Run .. (Argument Passed ByRef)

Jaafar Tribak

Well-known Member
Joined
Dec 5, 2002
Messages
9,917
Office Version
  1. 2016
Platform
  1. Windows
Hi all,

As you know, when passing an argument ByRef the Callee procedure code can change the value underlying the argument in the calling code as shown in the following example :

Rich (BB code):
Sub Caller1()
    Dim X As Long

    X = 1
    Call Callee(X)
    MsgBox X ' returns 2
 
End Sub

Sub Callee(ByRef arg As Long)
    arg = 2
End Sub

The above MsgBox returns 2 as expected instead of 1 because the Callee procedure changed the value of the passed argument


However, if we use Application.Run, the above mechanism no longer works and the passed argument is not modified despite using ByRef... (In the following example, the MsgBox now returns 1 instead of 2)

Rich (BB code):
Sub Caller2()
    Dim X As Long

    X = 1
    Application.Run "Callee", X
    MsgBox X  ' returns 1

End Sub

Sub Callee(ByRef arg As Long)
    arg = 2
End Sub

Does anybody know if there is a way of making the ByRef work with Application.run ?
 
Hi Everybody... finding this post really helps me with answer of Rory

Moreover I discover that Object.Run supports ByRef parameters but also supports functions...
The Application.Run Only supports ByVal parameters and functions but only if if they are from a DLL(never try on MacOs M1) or XLL(not supported on MacOs)

So, basically this resolve all my circular dependencies when using reference in Excel :)

Thanks again and delivers the good new !
 
Upvote 0

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