In my Smart Device Application, how do I invoke an HTML page? I have a help
screen written in HTML, and want the user to view this when he/she clicks on
my Help command button. Is there a way to auto-launch Pocket Internet
Explorer, and bring up this HTML page?

- Thanks,

JRD

Re: Launching at HTML Page from My Smart Device Application by Peter

Peter
Sat Sep 11 16:58:52 CDT 2004

You can using the ShellExecuteEx API call, which you can call using Platform
Invoke. There is a sample here in C#:-
http://www.opennetcf.org/forums/topic.asp?TOPIC_ID=210

You can also use the Process class in the Smart Device Framework:-
www.opennetcf.org/sdf/

Peter

--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org

Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups

"John R. Dougherty" <JohnRDougherty@discussions.microsoft.com> wrote in
message news:1E36A5E1-F92A-47A5-ACFB-981A356FD153@microsoft.com...
> In my Smart Device Application, how do I invoke an HTML page? I have a
> help
> screen written in HTML, and want the user to view this when he/she clicks
> on
> my Help command button. Is there a way to auto-launch Pocket Internet
> Explorer, and bring up this HTML page?
>
> - Thanks,
>
> JRD



Re: Launching at HTML Page from My Smart Device Application by JohnRDougherty

JohnRDougherty
Sat Sep 11 17:15:05 CDT 2004

Thanks - I will look at these sites (I am writing in VB, not C# - I assume I
can do something very similar w/VB, right?)

- JRD

"Peter Foot [MVP]" wrote:

> You can using the ShellExecuteEx API call, which you can call using Platform
> Invoke. There is a sample here in C#:-
> http://www.opennetcf.org/forums/topic.asp?TOPIC_ID=210
>
> You can also use the Process class in the Smart Device Framework:-
> www.opennetcf.org/sdf/
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> www.inthehand.com | www.opennetcf.org
>
> Do have an opinion on the effectiveness of Microsoft Windows Mobile and
> Embedded newsgroups? Let us know!
> https://www.windowsembeddedeval.com/community/newsgroups
>
> "John R. Dougherty" <JohnRDougherty@discussions.microsoft.com> wrote in
> message news:1E36A5E1-F92A-47A5-ACFB-981A356FD153@microsoft.com...
> > In my Smart Device Application, how do I invoke an HTML page? I have a
> > help
> > screen written in HTML, and want the user to view this when he/she clicks
> > on
> > my Help command button. Is there a way to auto-launch Pocket Internet
> > Explorer, and bring up this HTML page?
> >
> > - Thanks,
> >
> > JRD
>
>
>

Re: Launching at HTML Page from My Smart Device Application by Chris

Chris
Sat Sep 11 20:58:38 CDT 2004

Or use the HTMLViewer to display the page right in your app. It's also part
of the SDF....

www.opennetcf.org/sdf

-Chris


"Peter Foot [MVP]" <feedback@no-spam.inthehand.com> wrote in message
news:eBRdGqEmEHA.592@TK2MSFTNGP11.phx.gbl...
> You can using the ShellExecuteEx API call, which you can call using
Platform
> Invoke. There is a sample here in C#:-
> http://www.opennetcf.org/forums/topic.asp?TOPIC_ID=210
>
> You can also use the Process class in the Smart Device Framework:-
> www.opennetcf.org/sdf/
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> www.inthehand.com | www.opennetcf.org
>
> Do have an opinion on the effectiveness of Microsoft Windows Mobile and
> Embedded newsgroups? Let us know!
> https://www.windowsembeddedeval.com/community/newsgroups
>
> "John R. Dougherty" <JohnRDougherty@discussions.microsoft.com> wrote in
> message news:1E36A5E1-F92A-47A5-ACFB-981A356FD153@microsoft.com...
> > In my Smart Device Application, how do I invoke an HTML page? I have a
> > help
> > screen written in HTML, and want the user to view this when he/she
clicks
> > on
> > my Help command button. Is there a way to auto-launch Pocket Internet
> > Explorer, and bring up this HTML page?
> >
> > - Thanks,
> >
> > JRD
>
>



Re: Launching at HTML Page from My Smart Device Application by Peter

Peter
Sun Sep 12 04:55:27 CDT 2004

If you use the OpenNETCF classes then you can just add a reference in your
project and use

OpenNETCF.Diagnostics.Process.Start("\My Documents\MyFile.htm")

you can also convert the example in the previous link to VB.NET

Peter

--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org

Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups

"John R. Dougherty" <JohnRDougherty@discussions.microsoft.com> wrote in
message news:08C47BAA-DAD4-4C15-A0C4-A3640527AC50@microsoft.com...
> Thanks - I will look at these sites (I am writing in VB, not C# - I assume
> I
> can do something very similar w/VB, right?)
>
> - JRD
>
> "Peter Foot [MVP]" wrote:
>
>> You can using the ShellExecuteEx API call, which you can call using
>> Platform
>> Invoke. There is a sample here in C#:-
>> http://www.opennetcf.org/forums/topic.asp?TOPIC_ID=210
>>
>> You can also use the Process class in the Smart Device Framework:-
>> www.opennetcf.org/sdf/
>>
>> Peter
>>
>> --
>> Peter Foot
>> Windows Embedded MVP
>> www.inthehand.com | www.opennetcf.org
>>
>> Do have an opinion on the effectiveness of Microsoft Windows Mobile and
>> Embedded newsgroups? Let us know!
>> https://www.windowsembeddedeval.com/community/newsgroups
>>
>> "John R. Dougherty" <JohnRDougherty@discussions.microsoft.com> wrote in
>> message news:1E36A5E1-F92A-47A5-ACFB-981A356FD153@microsoft.com...
>> > In my Smart Device Application, how do I invoke an HTML page? I have a
>> > help
>> > screen written in HTML, and want the user to view this when he/she
>> > clicks
>> > on
>> > my Help command button. Is there a way to auto-launch Pocket Internet
>> > Explorer, and bring up this HTML page?
>> >
>> > - Thanks,
>> >
>> > JRD
>>
>>
>>