PC Review


Reply
Thread Tools Rate Thread

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

 
 
=?Utf-8?B?Vml2ZWs=?=
Guest
Posts: n/a
 
      5th Oct 2005
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
 
 
 
 
Sergey Bogdanov
Guest
Posts: n/a
 
      5th Oct 2005
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
 
=?Utf-8?B?Vml2U0I=?=
Guest
Posts: n/a
 
      5th Oct 2005
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
 
=?Utf-8?B?QWxleCBZYWtobmluIFtNVlBd?=
Guest
Posts: n/a
 
      5th Oct 2005
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
 
=?Utf-8?B?Vml2U0I=?=
Guest
Posts: n/a
 
      6th Oct 2005
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
 
=?Utf-8?B?QWxleCBZYWtobmluIFtNVlBd?=
Guest
Posts: n/a
 
      6th Oct 2005
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
 
=?Utf-8?B?Vml2U0I=?=
Guest
Posts: n/a
 
      7th Oct 2005
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Using Ms form in Pocket Excel =?Utf-8?B?TWlrZSBMaW0=?= Microsoft Excel Programming 2 9th May 2006 10:33 AM
Pocket pc Network Browser Freeware 0 10th Oct 2005 11:30 PM
Popup Form In Pocket PC App Lou Civitella Microsoft Dot NET Compact Framework 0 30th Nov 2004 09:37 PM
Activate a Form in VB.NET para Pocket PC Leonardo Castillo Microsoft Dot NET Compact Framework 0 9th Jun 2004 07:05 PM
Form for synching to Pocket PC The Mixer Microsoft Outlook Form Programming 1 27th Feb 2004 01:27 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:48 AM.