1. COM Object
I haven't done any programming for a number of years. However I am going to
attempt to write a COM object. Is it possible to do this in Euphoria?
2. Re: COM Object
Tom Peterson wrote:
>
> I haven't done any programming for a number of years. However I am going to
> attempt to write a COM object. Is it possible to do this in Euphoria?
In theory, yes. In order to do this, you'd need to translate your code and
compile to a dll. There are many other requirements that you'd have to
fulfill in order to be a COM object, like providing all of the correct
interfaces, etc. You would have to be very familiar with the low level
details of how COM objects work, and implement a lot of that yourself.
Some of it you could borrow from EuCOM, for example, but it never got to
the point of allowing you to make a COM object in euphoria.
Matt
3. Re: COM Object
- Posted by Tom Peterson <p75213 at gm?il.c?m>
Mar 15, 2008
-
Last edited Mar 16, 2008
Thanks for your help on that. I decided to write a piece of vbscript
which is working well. My next question is - Can I access a dbase iv database in
Euphoria?