c# & PocketPC

  • Thread starter Thread starter FredBen
  • Start date Start date
F

FredBen

Hi all

I did a small graphic program in c# for windows. Works well.
After that I wanted to compile it for my pocketpc (2003) and I could not do it.
GraphicsPath does not exist for pocket pc ? why is that ? how can i make it run ?

thanks
 
Hi
It is my understanding that the .NET framework used for handhelds is much
smaller than the standard .NET framework. Chances are that GraphicsPath was
one of the elements left out. As for getting it to run, the only way I
would know to do it would be to use a graphics utility that is included in
the Compact framework. Although now that I think about it, you could
"probably" export the GraphicsPath object and register it in the GAC of your
pocket PC.

Hope this help
Carlson Quick
 
Back
Top