I am attempting to include an assembler portion of code within one of my VB projects. Within C++ this was a matter of using '_asm' as a prefix to the code. Is there a similar solution within Visual Basic or is this not possible?
B Rose
Printable View
I am attempting to include an assembler portion of code within one of my VB projects. Within C++ this was a matter of using '_asm' as a prefix to the code. Is there a similar solution within Visual Basic or is this not possible?
B Rose
I only wish you could put assembly into a VB project. Unfortunately, that amount of control would go against the language principles. The only conceivable way would be to write the assembly needed into a C DLL somehow and then call that code.