PC Review Forums Newsgroups Microsoft DotNet Microsoft Dot NET Compact Framework How to add web browser on the form (Pocket Pc)

Reply

How to add web browser on the form (Pocket Pc)

 
Thread Tools Rate Thread
Old 05-10-2005, 06:44 AM   #1
=?Utf-8?B?Vml2ZWs=?=
Guest
 
Posts: n/a
Default How to add web browser on the form (Pocket Pc)


I am using VS 2003 emulator to develop a application for Pocket PC, I want
use web browser in one form. But I am not able to find the web browser
control to add to the form.
Please help.
  Reply With Quote
Old 05-10-2005, 07:17 AM   #2
Sergey Bogdanov
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
http://www.opennetcf.org/sdf/

--
Sergey Bogdanov [.NET CF MVP, MCSD]
http://www.sergeybogdanov.com


Vivek wrote:
> I am using VS 2003 emulator to develop a application for Pocket PC, I want
> use web browser in one form. But I am not able to find the web browser
> control to add to the form.
> Please help.

  Reply With Quote
Old 05-10-2005, 11:15 AM   #3
=?Utf-8?B?Vml2U0I=?=
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

Hello Sergey,

I have downloaded the dlls and now able to place a browser on the form, i
even assigned the html text to the control. But nothing is seen on the
browser.
I am using web service to get this HTML text. Everything else is working
fine except this browser issue.

Thanks,
Vivek

"Sergey Bogdanov" wrote:

> You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
> http://www.opennetcf.org/sdf/
>
> --
> Sergey Bogdanov [.NET CF MVP, MCSD]
> http://www.sergeybogdanov.com
>
>
> Vivek wrote:
> > I am using VS 2003 emulator to develop a application for Pocket PC, I want
> > use web browser in one form. But I am not able to find the web browser
> > control to add to the form.
> > Please help.

>

  Reply With Quote
Old 05-10-2005, 03:53 PM   #4
=?Utf-8?B?QWxleCBZYWtobmluIFtNVlBd?=
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

Which method did you use?
--
--
Alex Yakhnin, .NET CF MVP
www.intelliprog.com | www.opennetcf.org


"VivSB" wrote:

> Hello Sergey,
>
> I have downloaded the dlls and now able to place a browser on the form, i
> even assigned the html text to the control. But nothing is seen on the
> browser.
> I am using web service to get this HTML text. Everything else is working
> fine except this browser issue.
>
> Thanks,
> Vivek
>
> "Sergey Bogdanov" wrote:
>
> > You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
> > http://www.opennetcf.org/sdf/
> >
> > --
> > Sergey Bogdanov [.NET CF MVP, MCSD]
> > http://www.sergeybogdanov.com
> >
> >
> > Vivek wrote:
> > > I am using VS 2003 emulator to develop a application for Pocket PC, I want
> > > use web browser in one form. But I am not able to find the web browser
> > > control to add to the form.
> > > Please help.

> >

  Reply With Quote
Old 06-10-2005, 05:14 AM   #5
=?Utf-8?B?Vml2U0I=?=
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

Please see the code pasted below

objWebBrow = New OpenNETCF.Windows.Forms.WebBrowser

objWebBrow.Left = 2
objWebBrow.Top = 30
objWebBrow.Width = 350
objWebBrow.Height = 200

objWebBrow.BorderStyle = BorderStyle.Fixed3D
objWebBrow.AddText(strReport.ToString)

' I tried with this also
' objWebBrow.Url = "www.microsoft.com"
pnlPerformance.Controls.Add(objWebBrow)
objWebBrow.Show()


"Alex Yakhnin [MVP]" wrote:

> Which method did you use?
> --
> --
> Alex Yakhnin, .NET CF MVP
> www.intelliprog.com | www.opennetcf.org
>
>
> "VivSB" wrote:
>
> > Hello Sergey,
> >
> > I have downloaded the dlls and now able to place a browser on the form, i
> > even assigned the html text to the control. But nothing is seen on the
> > browser.
> > I am using web service to get this HTML text. Everything else is working
> > fine except this browser issue.
> >
> > Thanks,
> > Vivek
> >
> > "Sergey Bogdanov" wrote:
> >
> > > You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
> > > http://www.opennetcf.org/sdf/
> > >
> > > --
> > > Sergey Bogdanov [.NET CF MVP, MCSD]
> > > http://www.sergeybogdanov.com
> > >
> > >
> > > Vivek wrote:
> > > > I am using VS 2003 emulator to develop a application for Pocket PC, I want
> > > > use web browser in one form. But I am not able to find the web browser
> > > > control to add to the form.
> > > > Please help.
> > >

  Reply With Quote
Old 06-10-2005, 07:30 PM   #6
=?Utf-8?B?QWxleCBZYWtobmluIFtNVlBd?=
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

Add the objWebBrow.EndOfSource() when you're done adding the html.

--
Alex Yakhnin, .NET CF MVP
www.intelliprog.com | www.opennetcf.org


"VivSB" wrote:

> Please see the code pasted below
>
> objWebBrow = New OpenNETCF.Windows.Forms.WebBrowser
>
> objWebBrow.Left = 2
> objWebBrow.Top = 30
> objWebBrow.Width = 350
> objWebBrow.Height = 200
>
> objWebBrow.BorderStyle = BorderStyle.Fixed3D
> objWebBrow.AddText(strReport.ToString)
>
> ' I tried with this also
> ' objWebBrow.Url = "www.microsoft.com"
> pnlPerformance.Controls.Add(objWebBrow)
> objWebBrow.Show()
>
>
> "Alex Yakhnin [MVP]" wrote:
>
> > Which method did you use?
> > --
> > --
> > Alex Yakhnin, .NET CF MVP
> > www.intelliprog.com | www.opennetcf.org
> >
> >
> > "VivSB" wrote:
> >
> > > Hello Sergey,
> > >
> > > I have downloaded the dlls and now able to place a browser on the form, i
> > > even assigned the html text to the control. But nothing is seen on the
> > > browser.
> > > I am using web service to get this HTML text. Everything else is working
> > > fine except this browser issue.
> > >
> > > Thanks,
> > > Vivek
> > >
> > > "Sergey Bogdanov" wrote:
> > >
> > > > You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
> > > > http://www.opennetcf.org/sdf/
> > > >
> > > > --
> > > > Sergey Bogdanov [.NET CF MVP, MCSD]
> > > > http://www.sergeybogdanov.com
> > > >
> > > >
> > > > Vivek wrote:
> > > > > I am using VS 2003 emulator to develop a application for Pocket PC, I want
> > > > > use web browser in one form. But I am not able to find the web browser
> > > > > control to add to the form.
> > > > > Please help.
> > > >

  Reply With Quote
Old 07-10-2005, 06:16 AM   #7
=?Utf-8?B?Vml2U0I=?=
Guest
 
Posts: n/a
Default Re: How to add web browser on the form (Pocket Pc)

Still the problem persist

"Alex Yakhnin [MVP]" wrote:

> Add the objWebBrow.EndOfSource() when you're done adding the html.
>
> --
> Alex Yakhnin, .NET CF MVP
> www.intelliprog.com | www.opennetcf.org
>
>
> "VivSB" wrote:
>
> > Please see the code pasted below
> >
> > objWebBrow = New OpenNETCF.Windows.Forms.WebBrowser
> >
> > objWebBrow.Left = 2
> > objWebBrow.Top = 30
> > objWebBrow.Width = 350
> > objWebBrow.Height = 200
> >
> > objWebBrow.BorderStyle = BorderStyle.Fixed3D
> > objWebBrow.AddText(strReport.ToString)
> >
> > ' I tried with this also
> > ' objWebBrow.Url = "www.microsoft.com"
> > pnlPerformance.Controls.Add(objWebBrow)
> > objWebBrow.Show()
> >
> >
> > "Alex Yakhnin [MVP]" wrote:
> >
> > > Which method did you use?
> > > --
> > > --
> > > Alex Yakhnin, .NET CF MVP
> > > www.intelliprog.com | www.opennetcf.org
> > >
> > >
> > > "VivSB" wrote:
> > >
> > > > Hello Sergey,
> > > >
> > > > I have downloaded the dlls and now able to place a browser on the form, i
> > > > even assigned the html text to the control. But nothing is seen on the
> > > > browser.
> > > > I am using web service to get this HTML text. Everything else is working
> > > > fine except this browser issue.
> > > >
> > > > Thanks,
> > > > Vivek
> > > >
> > > > "Sergey Bogdanov" wrote:
> > > >
> > > > > You might consider OpenNETCF.Windows.Forms.WebBrowser from SDF:
> > > > > http://www.opennetcf.org/sdf/
> > > > >
> > > > > --
> > > > > Sergey Bogdanov [.NET CF MVP, MCSD]
> > > > > http://www.sergeybogdanov.com
> > > > >
> > > > >
> > > > > Vivek wrote:
> > > > > > I am using VS 2003 emulator to develop a application for Pocket PC, I want
> > > > > > use web browser in one form. But I am not able to find the web browser
> > > > > > control to add to the form.
> > > > > > Please help.
> > > > >

  Reply With Quote
Reply



Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off