Question

Where can I find a list of official and unofficial Visual Basic 6 specifications that can allow me to, say, fully interpret the contents of a VB6 EXE file and analyze them, or interpret them on my own, instead of using MSVBVM60.DLL?

Something like the specification of the virtual machine and its language.

Things such as opcodes, instructions, mnemonics, whether it uses one or more stacks, stack pointers, registers, etc.

Was it helpful?

Solution

VB6 can be compiled to p-code or native code.

  • Native code is just native 8086 family machine code. I suppose that's a public standard. It's not very malleable.
  • Here's a link about p-code
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top