Only one Windows application bothers me before I can completely switch to Linux. This is a mapping application (cannot find a suitable one for Linux) that I use with Wine.
This application has its own language and allows the user to create objects from COM components to implement external functions. On Windows, I created a program that uses Mono, which provides certain functions that allow me to interact with charting software.
Example:
myObj = CreateObject("myApp.application"); myObj.data = Price; volatility = myObj.Volatility;
Question:. How can I show the ComVisible "myApp" components, which runs on Linux in Mono runtime, for wine graphics software?
source share