use eVB control in .NET CF

  • Thread starter Thread starter cfyam
  • Start date Start date
If your control is an ActiveX control, you could write a wrapper around it
(.NETCF has no COM interop) or use a solution like Odyssey's CFCOM -
http://www.odysseysoftware.com/cfcom_main.html
eVB code itself is not accessible from outside your eVB application, as it
is an interpreted script you cannot call into parts of it from a .NETCF
application. You can launch an eVB application from .NETCF by using the
CreateProcess API method which is included in the OpenNETCF.WinAPI library -
www.opennetcf.org/winapi.asp

Peter
 
Back
Top