Comment by blargthorwars
2 months ago
Friendly reminder for MS Access fiends:
It's ok to store code in tables and then pass it to VBA for evaluation via Eval, or to ASF via the engine.Compile
2 months ago
Friendly reminder for MS Access fiends:
It's ok to store code in tables and then pass it to VBA for evaluation via Eval, or to ASF via the engine.Compile
But what if i want to debug my code?
Great question! Programmatically copy your snippet to a module, then call it:
Public Sub AppendCode() Dim cm As Object Set cm = Application.VBE.VBProjects(1).VBComponents("GeneratedLogic").CodeModule
End Sub
I've written my fair share of evil shit in VBA.
But... what is effectively eval() just in VB? Yikes.
2 replies →
You can inspect the AST in order to debug your code. For syntax highlighting, use tools like Notepad++ (ASF shares most of the syntax with Javascript). Each piece of code is commented, no obscure machine code.