Say i have a some code in my Form_Load
VB Code:
'Do something Dim intValue as Integer = 1 intValue *= 5 intvalue += 1 DoSomething(intValue)
VB Code:
Public Sub DoSomething(byRef Value as INteger) ' Can i find the orginal variable name in here? "intValue" End Sub





Reply With Quote