Click here to Skip to main content
16,015,481 members
Home / Discussions / C#
   

C#

 
GeneralUsing COM Objects (new interfaces) Pin
Anders Molin11-Apr-02 22:39
professionalAnders Molin11-Apr-02 22:39 
GeneralRe: Using COM Objects (new interfaces) Pin
James T. Johnson11-Apr-02 23:00
James T. Johnson11-Apr-02 23:00 
GeneralDamned Clipboard keeps changing format Pin
Nish Nishant11-Apr-02 22:01
sitebuilderNish Nishant11-Apr-02 22:01 
GeneralRe: Damned Clipboard keeps changing format Pin
James T. Johnson11-Apr-02 22:49
James T. Johnson11-Apr-02 22:49 
GeneralRe: Damned Clipboard keeps changing format Pin
Nish Nishant11-Apr-02 23:14
sitebuilderNish Nishant11-Apr-02 23:14 
GeneralDisplaying HTML Pin
paulb11-Apr-02 16:10
paulb11-Apr-02 16:10 
GeneralRe: Displaying HTML Pin
James T. Johnson11-Apr-02 22:33
James T. Johnson11-Apr-02 22:33 
GeneralRe: Displaying HTML Pin
Torsten Mauz12-Apr-02 1:57
Torsten Mauz12-Apr-02 1:57 
Alternatively you can use the DHTML ActiveX control (DHTMLED.ocx) to use it, simply find the file (or download the latest copy from Microsoft), then add it to your toolbox and add it to your form as a normal control.

The control as lots of methods that you can use to get HTML in to it, e.g. you can directly load a url:

axDHTMLEdit1.LoadURL("http://www.codeproject.com");

or you can access the DOM to add HTML programatically:

axDHTMLEdit1.DOM.body.innerHTML = "<a href=\"http://www.codeproject.com\">The Code Project</a>";

I suggest you download the DHTMLEd SDK from Microsoft which includes documentation for all the properties and methods.

This is a very powerful control but may be a bit of overkill for what you're doing.
GeneralC# and Imaging Pin
Rohde11-Apr-02 6:16
Rohde11-Apr-02 6:16 
GeneralRe: C# and Imaging Pin
James T. Johnson11-Apr-02 8:13
James T. Johnson11-Apr-02 8:13 
GeneralRe: C# and Imaging Pin
Nick Parker12-Apr-02 6:52
protectorNick Parker12-Apr-02 6:52 
GeneralReading From a text file Pin
Gavin_Mannion11-Apr-02 5:23
Gavin_Mannion11-Apr-02 5:23 
GeneralRe: Reading From a text file Pin
James T. Johnson11-Apr-02 22:42
James T. Johnson11-Apr-02 22:42 
GeneralRe: Reading From a text file Pin
Gavin_Mannion11-Apr-02 23:50
Gavin_Mannion11-Apr-02 23:50 
GeneralRe: Reading From a text file Pin
SimonS11-Apr-02 23:01
SimonS11-Apr-02 23:01 
GeneralDataGrid Pin
Mazdak11-Apr-02 2:46
Mazdak11-Apr-02 2:46 
GeneralRe: DataGrid Pin
James T. Johnson11-Apr-02 8:11
James T. Johnson11-Apr-02 8:11 
GeneralRe: DataGrid Pin
Mazdak11-Apr-02 21:27
Mazdak11-Apr-02 21:27 
GeneralRe: DataGrid Pin
SimonS11-Apr-02 23:03
SimonS11-Apr-02 23:03 
GeneralRe: DataGrid Pin
Andres Manggini12-Apr-02 9:08
Andres Manggini12-Apr-02 9:08 
GeneralRe: DataGrid Pin
James T. Johnson12-Apr-02 9:49
James T. Johnson12-Apr-02 9:49 
GeneralRe: DataGrid Pin
Carlos Antollini12-Apr-02 10:25
Carlos Antollini12-Apr-02 10:25 
GeneralRe: DataGrid Pin
Mazdak12-Apr-02 11:03
Mazdak12-Apr-02 11:03 
GeneralSpeedup app startup time Pin
paulb10-Apr-02 14:08
paulb10-Apr-02 14:08 
GeneralRe: Speedup app startup time Pin
James T. Johnson10-Apr-02 14:18
James T. Johnson10-Apr-02 14:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.