Emulator Problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hai I'm Kelly, I'm new to .net compact framework. I would like to ask in emulator, there are some default program is install such as "Pocket Word", "Pocket Excel", "Pocket IE". Can I invoke this program by clicking on a button ?? How to do it ?
I find out that in .NET Framework, System.Diagnostics. Process can use to call Desktop Internet Explorer and link to particular web page

Process.Start("IExplore.exe", "www.msdn.microsoft.com")

Can anyone let me know please

Thanksssssssssssssssssssssssss

Bye! :
 
Hi Kelly,

Definitely, u can do it.

In .NET Compact Framework Process object is not supported. But OpenNETCF
Smart Device Framework library, an open source and free utility offered by
the people of opennetcf.org, has implemented the Process object in their
object model. Here is the link showing the documentation of the
OpenNETCF.Diagnostics.Process Class..
http://www.opennetcf.org/library/OpenNETCF.Diagnostics.Process.html


Here is the link to download the OpenNETCF Smart Device Framework.
http://www.opennetcf.org/PermaLink.aspx?guid=3a013afd-791e-45ef-802a-4c1dbe1cfef9

HTH,

Girish.

Kelly said:
Hai I'm Kelly, I'm new to .net compact framework. I would like to ask in
emulator, there are some default program is install such as "Pocket Word",
"Pocket Excel", "Pocket IE". Can I invoke this program by clicking on a
button ?? How to do it ??
I find out that in .NET Framework, System.Diagnostics. Process can use to
call Desktop Internet Explorer and link to particular web page
 
Thanks Girish NS !! The information and links you provided really useful and I'll try on it. Anyway If you know some sample code that relate to this class ou mention can you let me know, but if no idea then is ok cause you already provided the best at least I can figure out by myself

Thanksss :) !!!
 
Back
Top