Home All Groups Group Topic Archive Search About
Author
28 Mar 2005 3:08 PM
CSharpNewbie
is it possible to use c# windows controls the same way as
VB Activex Controls in IE pages?

We did something like:
<OBJECT ID="MyControl" NAME="MyControl"
CLASSID="clsid:FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF">
</OBJECT>

i'd rather use windows controls than web controls because
we may also use them inside a windows application, and i
also like the functionality of those controls better

thanks,
JP

Author
28 Mar 2005 3:13 PM
Ludwig Stuyck
On Mon, 28 Mar 2005 07:08:18 -0800, "CSharpNewbie"
<anonym***@discussions.microsoft.com> wrote:

Show quoteHide quote
>is it possible to use c# windows controls the same way as
>VB Activex Controls in IE pages?
>
>We did something like:
><OBJECT ID="MyControl" NAME="MyControl"
>CLASSID="clsid:FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF">
></OBJECT>
>
>i'd rather use windows controls than web controls because
>we may also use them inside a windows application, and i
>also like the functionality of those controls better
>
>thanks,
>JP

You can develop a normal application (using web services for
communication) and make them available as a smart client. This way
they are accessible via a hyperlink, but run as windows forms( Your
application is only available on-line).

In Whidbey the Smart Client approach has been replaced by the improved
ClickOnce technology, with offline scenario's.

Are all your drivers up to date? click for free checkup

Author
28 Mar 2005 4:46 PM
anonymous
I understand the web services part, i think, but could
you point me to something that explains "smart client"?

Thanks,
JP

Show quoteHide quote
>-----Original Message-----
>On Mon, 28 Mar 2005 07:08:18 -0800, "CSharpNewbie"
><anonym***@discussions.microsoft.com> wrote:
>
>>is it possible to use c# windows controls the same way
as
>>VB Activex Controls in IE pages?
>>
>>We did something like:
>><OBJECT ID="MyControl" NAME="MyControl"
>>CLASSID="clsid:FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF">
>></OBJECT>
>>
>>i'd rather use windows controls than web controls
because
>>we may also use them inside a windows application, and
i
>>also like the functionality of those controls better
>>
>>thanks,
>>JP
>
>You can develop a normal application (using web services
for
>communication) and make them available as a smart
client. This way
>they are accessible via a hyperlink, but run as windows
forms( Your
>application is only available on-line).
>
>In Whidbey the Smart Client approach has been replaced
by the improved
Show quoteHide quote
>ClickOnce technology, with offline scenario's.
>
>--
>Ludwig Stuyck
>http://www.coders-lab.net
>.
>
Author
28 Mar 2005 9:11 PM
Ludwig Stuyck
On Mon, 28 Mar 2005 08:46:11 -0800,
<anonym***@discussions.microsoft.com> wrote:

>I understand the web services part, i think, but could
>you point me to something that explains "smart client"?
>
>Thanks,
>JP
>

Have a look at http://www.developer.com/net/asp/article.php/3369601


Bookmark and Share