Question about VBE object

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • isidro
    New Member
    • Feb 2007
    • 3

    Question about VBE object

    I need to modify a Function procedure, I can do it with de VBE object. But once time I have run this function, the changes made to the code don't take effect until ends the application and I don't want this, I need to recompile only this function.
    How can I do this?

    I need tu run a function whose name is in a variable. For example:
    MyVar = Fun1
    Call MyVar
    How can I do this?

    Thanks for read this, and thanks for helping me
  • willakawill
    Top Contributor
    • Oct 2006
    • 1646

    #2
    Hi. Your basic thinking about procedural programming languages needs to change so that you can think, instead, about the problem at hand and how to find a solution. The language is not the problem and the language is not the solution.

    Comment

    • d0wns3t
      New Member
      • May 2013
      • 3

      #3
      To answer your question: I think the eval function may be what you're after eval(varProcNam e)

      Comment

      Working...