473,396 Members | 2,109 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

View and edit HTML in a windows form

I'm currently writing an e-mail application, and I need to know the best way
to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you to do
this, but I haven't seen anything for windows forms. Do any of you know
where I could find a windows control such as this? I want to mimic
functionality like outlook does.

Thanks in advance

-Matt
Nov 20 '05 #1
7 1825
The Microsoft (COM) Web Browser control is one possibility.

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"matt" <bl******@blahblah.com> wrote in message
news:uR****************@tk2msftngp13.phx.gbl...
I'm currently writing an e-mail application, and I need to know the best way to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you to do this, but I haven't seen anything for windows forms. Do any of you know
where I could find a windows control such as this? I want to mimic
functionality like outlook does.

Thanks in advance

-Matt

Nov 20 '05 #2
Mike,
Thanks for the response to this question. Do you have any information on
this control? Where should I go to find something like this, what should I
be looking for?

-Matt

"Mike McIntyre [MVP]" <mi****@dotnetshowandtell.com> wrote in message
news:u8*************@TK2MSFTNGP12.phx.gbl...
The Microsoft (COM) Web Browser control is one possibility.

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"matt" <bl******@blahblah.com> wrote in message
news:uR****************@tk2msftngp13.phx.gbl...
I'm currently writing an e-mail application, and I need to know the best way
to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you

to do
this, but I haven't seen anything for windows forms. Do any of you know
where I could find a windows control such as this? I want to mimic
functionality like outlook does.

Thanks in advance

-Matt


Nov 20 '05 #3
Matt,

In addition from Mike some links
webbrowser
http://support.microsoft.com/?kbid=311303

some faqs
http://support.microsoft.com/default...b;EN-US;311284

mshtml
http://msdn.microsoft.com/library/de...ng/hosting.asp

I hope this helps a little bit?

Cor
Nov 20 '05 #4
Google is your friend...

....www.codeproject.com/csharp/webbrowser.asp

Telmo Sampaio

"matt" <bl******@blahblah.com> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
Mike,
Thanks for the response to this question. Do you have any information on
this control? Where should I go to find something like this, what should I be looking for?

-Matt

"Mike McIntyre [MVP]" <mi****@dotnetshowandtell.com> wrote in message
news:u8*************@TK2MSFTNGP12.phx.gbl...
The Microsoft (COM) Web Browser control is one possibility.

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"matt" <bl******@blahblah.com> wrote in message
news:uR****************@tk2msftngp13.phx.gbl...
I'm currently writing an e-mail application, and I need to know the best
way
to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you

to
do
this, but I haven't seen anything for windows forms. Do any of you

know where I could find a windows control such as this? I want to mimic
functionality like outlook does.

Thanks in advance

-Matt



Nov 20 '05 #5
Telmo,

I don't really need a fully functioning web browser in my application, but
something that can parse html and edit html. A similar control that is used
in ASP.NET can be found here: http://www.longreat.com/ under the HTMLTextBox
section. I'd like to use something like that to compose my messages, and
also to read them.
-Matt

"Telmo Sampaio" <ts******@gmail.com> wrote in message
news:eb**************@TK2MSFTNGP09.phx.gbl...
Google is your friend...

...www.codeproject.com/csharp/webbrowser.asp

Telmo Sampaio

"matt" <bl******@blahblah.com> wrote in message
news:ea**************@TK2MSFTNGP10.phx.gbl...
Mike,
Thanks for the response to this question. Do you have any information on
this control? Where should I go to find something like this, what should
I
be looking for?

-Matt

"Mike McIntyre [MVP]" <mi****@dotnetshowandtell.com> wrote in message
news:u8*************@TK2MSFTNGP12.phx.gbl...
The Microsoft (COM) Web Browser control is one possibility.

--
Mike

Mike McIntyre
Visual Basic MVP
www.getdotnetcode.com

"matt" <bl******@blahblah.com> wrote in message
news:uR****************@tk2msftngp13.phx.gbl...
> I'm currently writing an e-mail application, and I need to know the

best way
> to view and edit HTML in my windows form application. When writing an > e-mail client in ASP .NET, there was a HTML component that allowed
you to
do
> this, but I haven't seen anything for windows forms. Do any of you

know > where I could find a windows control such as this? I want to mimic
> functionality like outlook does.
>
> Thanks in advance
>
>
>
> -Matt
>
>



Nov 20 '05 #6
* "matt" <bl******@blahblah.com> scripsit:
I'm currently writing an e-mail application, and I need to know the best way
to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you to do
this, but I haven't seen anything for windows forms. Do any of you know
where I could find a windows control such as this? I want to mimic
functionality like outlook does.


For viewing:

311303 WebOCHostVB.exe Hosts the WebBrowser Control in Visual Basic .NET
<URL:http://support.microsoft.com/?id=311303>

For editing:

Right-click the toolbox -> "Add/Remove Elements..." ->
"COM Controls" -> "DHTML Edit Control for IE5".

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>
Nov 20 '05 #7
This seems to be exactly what I need. Thank you very much for your help
-Matt

"Herfried K. Wagner [MVP]" <hi***************@gmx.at> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
* "matt" <bl******@blahblah.com> scripsit:
I'm currently writing an e-mail application, and I need to know the best way to view and edit HTML in my windows form application. When writing an
e-mail client in ASP .NET, there was a HTML component that allowed you to do this, but I haven't seen anything for windows forms. Do any of you know
where I could find a windows control such as this? I want to mimic
functionality like outlook does.


For viewing:

311303 WebOCHostVB.exe Hosts the WebBrowser Control in Visual Basic .NET
<URL:http://support.microsoft.com/?id=311303>

For editing:

Right-click the toolbox -> "Add/Remove Elements..." ->
"COM Controls" -> "DHTML Edit Control for IE5".

--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>

Nov 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Tamir Khason | last post by:
How to prevent the selected cell from being editable (visual) at DataGrid? Once click on cell (even readonly) there are cursor inside it and select text appears. How to prevent it Thankx
6
by: Robert W. | last post by:
I'm building my first major C# program and am try to use best practices everywhere. So I've implemented the "Document/View Model" whereby: - There's a Windows Form, which we'll call "formView" -...
2
by: Martin | last post by:
Hi, I want to create a number of ascx controls with edit and view modes. Previously I have put two panels in the ascx - one for view (with label subcontrols), and one for edit (with text box...
1
by: david | last post by:
Anybody could give me hint how use this control in asp.net web form. The problem is: I try to use COM component in my web form app by using MS training kit for windows form application. I would...
4
by: Nathan Sokalski | last post by:
When editing an ASP Table, Visual Studio does not allow me to edit it in Design View. This makes it harder to add elements, because I must add every element either by using Design View to create...
14
by: Jan Nielsen | last post by:
Hi In Microsoft Access it is possible to write code like this Sub test() DoCmd.OpenForm "TestForm", acDesign Dim a As Control For Each a In Forms("TestForm").Controls Do stuff Next End Sub
0
by: Brian Henry | last post by:
Here is another virtual mode example for the .NET 2.0 framework while working with the list view. Since you can not access the items collection of the list view you need to do sorting another...
3
by: mckbill | last post by:
Is there a way I can direct the cursor to a specific field (variable) in a form by typing the field name while in form view? I have a form with many fields, and it would be nice if there were...
5
by: GS | last post by:
I Google search for answer to detected changes to the current row in detail view of a windows form ( not datagridview), so far I have not got the right search term to get me the answer, certainly I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.