In the following code,
I'm wanting to access the value of a constant. "helpname" is dim'd string and the name of the constant is set in helpname. Using Eval just gives me a runtime error 2482:Code:Private Function ShowHELP(ID As Long) helpname = "Help" & ID MsgBox Eval(helpname) End Function
Is it even possible?