Hi,

What I have to do to be able to develop a software in a pocketPC wich I can install it by parts ? I mean that I want to sell a module to my costumer and if he wants buy another different one he just have buy the module and install it in the pocketPC and in this way the user will have the 2 modules in one software and he will choose wich software he wants to execute pressing the right button

Thanks

Re: Modules by Chris

Chris
Wed Feb 04 12:14:45 CST 2004

This is often implemented by placing the "modules" in different DLLs. You
main application would then load them with a defined interface.

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


"Marcos Martins" <marcos.martins@agx.com.br> wrote in message
news:8663CEF9-9C3C-432A-8A65-0D70230569FA@microsoft.com...
> Hi,
>
> What I have to do to be able to develop a software in a pocketPC wich I
can install it by parts ? I mean that I want to sell a module to my costumer
and if he wants buy another different one he just have buy the module and
install it in the pocketPC and in this way the user will have the 2 modules
in one software and he will choose wich software he wants to execute
pressing the right button.
>
> Thanks



Re: Modules by anonymous

anonymous
Wed Feb 04 12:31:05 CST 2004

But Could I implement dlls using c++ classes ??

Thanks

Re: Modules by Chris

Chris
Wed Feb 04 12:54:14 CST 2004

Sure, it's just like any other DLL. You'll have to define your own
interface and load paradigm, but you can do it however you'd like.

--
Chris Tacke, eMVP
Co-Founder and Advisory Board Member
www.OpenNETCF.org
---
Windows CE Product Manager
Applied Data Systems
www.applieddata.net


"Marcos Martins" <anonymous@discussions.microsoft.com> wrote in message
news:221CB0AA-C6DA-459F-AE9E-A3FD6D852615@microsoft.com...
> But Could I implement dlls using c++ classes ???
>
> Thanks



Re: Modules by anonymous

anonymous
Wed Feb 04 13:41:06 CST 2004

Thanks very much