Re: [VB6] - Inline assembler Add-in.
Not working here.
And register/unregister every time is not appealing
Re: [VB6] - Inline assembler Add-in.
Quote:
Originally Posted by
camomille
Therefore, assembly code can only be ultimately embodied in a naturally compiled program. VB is interpreted and run in development mode and no executable file is generated. Therefore, all assembly code is just comment information for VB. The solution to this inconvenient problem is to provide direct DLL calls in IDE development mode. Then use conditional compilation to handle this problem perfectly. Most of the development packages provided by the author provide these, as well as sample code. Developers can gain a deep understanding of this process.
You can't control the register usage of VB6 code so this doesn't make sense to mix VB code with asm. Moreover my Add-in supports IDE debugging you can run your function in IDE directly.
Re: [VB6] - Inline assembler Add-in.
Hello <The trick>. I am using your addin. It's the only one the is working for me. The problem is, I have asm modules that I use in several projects, and I have to copy the asm for every project I use them. Copying the .ia file doesn't work. Maybe you can find solution to this.
Re: [VB6] - Inline assembler Add-in.
Quote:
Originally Posted by
Dry Bone
Hello <The trick>. I am using your addin. It's the only one the is working for me. The problem is, I have asm modules that I use in several projects, and I have to copy the asm for every project I use them. Copying the .ia file doesn't work. Maybe you can find solution to this.
You should copy also bas file.
If you have any wishes (regarding to inline-asm Add-in) feel free to indicate them. I could add them to the new version.
Re: [VB6] - Inline assembler Add-in.
Quote:
Originally Posted by
The trick
If you have any wishes (regarding to inline-asm Add-in) feel free to indicate them. I could add them to the new version.
Hi,The trick,I think inline-C should work as well based on how this plugin works, can you write a version for C?:afrog: