Cross-compile / recompile ActiveX for mobile devices

In our project, we have many ActiveX controls written in VB6. On large (x86) computers, it works very well. These controls are hosted on the website. And mobile users want to use it too.
So, is there a possible solution to recompile / compile the .ocx and make the .cab file to work on the ARM architecture?
Or maybe I can emulate x86 architecture on mobile phones / PDAs?

Mateusz

+1


a source to share


1 answer


It is not possible to take control written in VB6 and run it on an ARM-based device (via cross-compilation, emulation, or otherwise).



Your best route is to rewrite your application to target both x86 and ARM mobile platform of your choice (one of java / j2me, .net framework / compact framework, flash, C / C ++ and etc.) or just make your application run on the server and expose it over the internet

+1


a source







All Articles