HTML text box ?

  • Thread starter Thread starter AussieRules
  • Start date Start date
A

AussieRules

Hi,

Anybody know of a really good HTML text box. I want my user to be able to
enter text(WYSIWYG mode) and then I can save the basic html.

Any thing free of course would be really good!

Thanks
 
Hi Aussie,

What you mean with a HTML text box.

The only thing in HTML is as far as I know the <INPUT type="text">

Cor
 
Hi Aussie,

Looking at Herfrieds message and reading your message with a lot of thinking
what it could be.

You can edit in the axWebbrowser by doing this very simple instruction.

DirectCast(DirectCast(e.pDisp, SHDocVw.WebBrowser).Document,
mshtml.IHTMLDocument2).designMode = "On"

Cor
 
I want the user to be able to enter there text, in a WYSIWYG style, but I
can save the HTML for it.

Effectivly this is the same as typing in a document into MS word, and saving
it in HTML.

The user doesn't need to know HTML code to create a web page.

My app is a desktop application, where the user can enter text, and I then
want that text to appear on a web page. Therefore I want to preserve the
formatting, they have created.

Hope that makes it clearer.
 
I started to understand that yes,

See my answer in the other message.

The name for it in/on MSDN is reusing Internet Explorer with DHTML if you
want more information about it (I thougth there is even a complete HTML
example there).

Cor
 
Cor,

* "Cor said:
Looking at Herfrieds message and reading your message with a lot of thinking
what it could be.

You can edit in the axWebbrowser by doing this very simple instruction.

DirectCast(DirectCast(e.pDisp, SHDocVw.WebBrowser).Document,
mshtml.IHTMLDocument2).designMode = "On"

This will require a reference to MSHTML, doesn't it?
 
This needs a reference to MSHTML

Yes
(I saw I forgot it and this I was in doubt if I would correct it, but now
you have done it, let me make it complete)

Do not set an import to mshtmel, but do it exactly as here bellow otherwise
your program will often freeze in the IDE.

Cor
 
* "Cor said:
This needs a reference to MSHTML

Thanks for confirming that.
Do not set an import to mshtmel, but do it exactly as here bellow otherwise
your program will often freeze in the IDE.

Thank you for the tip!
 
Back
Top