devxlogo

Using Function Pointers/Dynamic Functions

Using Function Pointers/Dynamic Functions

Question:
In Access 2.0 there is an Eval() function which will automatically evaluate numeric expressions. This functionality does not appear to exist in VB 4. I found an article in the MS Knowledge base (Q86688) which leads me to believe that the functionality was intentionally left out. The goal is to be able to store user-defined functions in a table and fire them based on user input. Is this possible and if so, how.

Answer:
Function pointers, essentially what you are describing, are not supported under Visual Basic. You can’t store a procedure name in the database and tell Visual Basic to dynamically run it. However, you could create a procedure that interpreted a code from the database and then run a particular piece of code based on that code. That’s about as close as you can get. You could also make separate executables for each different piece of code you might want to run, but that’s even worse and more complicated.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist