looking for a .net component

  • Thread starter Thread starter M.B
  • Start date Start date
M

M.B

Hi,

I'm looking a .net component (third party or not) that I could include
- Text
- Image
- RadioButton
- CheckBox

any idea, link or suggestion ? I use VS 2002

thank's a lot for your help
 
M.B,

Why not use the WebBrowser control (you can add it by right clicking on
the toolbox to configure, and selecting the web browser component from the
"COM" tab).

It supports inserting and positioning everything that you mentioned, and
much more.

Hope this helps.
 
Thank you Nicholas
I've found the component (class : AxSHDocVw.AxWebBrowser) but couldn't found
a way to add a RadioButton for example could you give me a clue to start ?


Nicholas Paldino said:
M.B,

Why not use the WebBrowser control (you can add it by right clicking on
the toolbox to configure, and selecting the web browser component from the
"COM" tab).

It supports inserting and positioning everything that you mentioned, and
much more.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

M.B said:
Hi,

I'm looking a .net component (third party or not) that I could include
- Text
- Image
- RadioButton
- CheckBox

any idea, link or suggestion ? I use VS 2002

thank's a lot for your help
 
MB,

In order to use it, you have to generate HTML that will give you the
user interface that you want.

On retrospect, the web browser might have been a bad selection. Why not
just create the appropriate controls when you wish and add them where you
need them to be?

What are you trying to do?


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

M.B said:
Thank you Nicholas
I've found the component (class : AxSHDocVw.AxWebBrowser) but couldn't
found
a way to add a RadioButton for example could you give me a clue to start ?


in
message news:[email protected]...
M.B,

Why not use the WebBrowser control (you can add it by right clicking on
the toolbox to configure, and selecting the web browser component from
the
"COM" tab).

It supports inserting and positioning everything that you mentioned, and
much more.

Hope this helps.


--
- Nicholas Paldino [.NET/C# MVP]
- (e-mail address removed)

M.B said:
Hi,

I'm looking a .net component (third party or not) that I could include
- Text
- Image
- RadioButton
- CheckBox

any idea, link or suggestion ? I use VS 2002

thank's a lot for your help
 
Back
Top