Hi am having difficulty understanding why the following is not
working.
Dim TempID As Integer
Set TempID = Me.OpenArgs
Knowing that OpenArgs is a string I then changed the declaration of
TempID to be String, but this does not work either.
I have also tried
Set TempID = Val(OpenArgs) 'where TempID is an integer.
Can anyone suggest possible solutions. I need the value of OpenArgs
to be copied this TempID variale as I need it for a particular
programming purpose.
Thanks
working.
Dim TempID As Integer
Set TempID = Me.OpenArgs
Knowing that OpenArgs is a string I then changed the declaration of
TempID to be String, but this does not work either.
I have also tried
Set TempID = Val(OpenArgs) 'where TempID is an integer.
Can anyone suggest possible solutions. I need the value of OpenArgs
to be copied this TempID variale as I need it for a particular
programming purpose.
Thanks
Comment