PC Review
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Compact Framework
How to add web browser on the form (Pocket Pc)
Forums
Newsgroups
Microsoft DotNet
Microsoft Dot NET Compact Framework
How to add web browser on the form (Pocket Pc)
![]() |
How to add web browser on the form (Pocket Pc) |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
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. |
|
|
|
#2 |
|
Guest
Posts: n/a
|
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. |
|
|
|
#3 |
|
Guest
Posts: n/a
|
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. > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
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. > > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
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. > > > |
|
|
|
#6 |
|
Guest
Posts: n/a
|
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. > > > > |
|
|
|
#7 |
|
Guest
Posts: n/a
|
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. > > > > > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

