PC Review


Reply
Thread Tools Rate Thread

ActiveX, plug-in...whatever

 
 
Rob T
Guest
Posts: n/a
 
      27th Jan 2005
The other day I posted a question about using ActiveX in my project.....
obviously, that's not the best solution. But I found this great article on
what the author calls rich-client which does EXACTLY what I'm looking for.
Being able to show a windows form in an IE window!
http://msdn.microsoft.com/msdnmag/is...h/default.aspx

Unfortunately, some of the terminology is over my head and it's in C#...I'm
a VB person. Could anyone explain how this is done or point me somewhere
that does this? I will admit, I can be quite dumb some days and learn best
by a nice step-by-step example.

Thanks for your help.

-Rob T.


 
Reply With Quote
 
 
 
 
bruce barker
Guest
Posts: n/a
 
      27th Jan 2005
you can now write an active/x control in .net and download to the browser.
there are serveral rules involved:

1) the client must have the .net framework installed already (gennerally you
need 1.1 installed)
2) the code dll or cab file must be signed
3) the user must allow active/x controls in the browser
4) because the control is written in .net, hosted by unmanged code, it runs
in a special security envoriment, and unlike a normal active/x control will
be restricted to what it can do (no access to the disk, other website other
than the one downloaded from, etc).
5) IE only.
6) when the page first loads the control, it must load the .net runtime, and
load an appdomain. this can take several seconds, up to minute or more. so
you don't want to do this for a trival control.

in general use this techonolgy where you would use a large java applet.

-- bruce (sqlwork.com)

"Rob T" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
| The other day I posted a question about using ActiveX in my project.....
| obviously, that's not the best solution. But I found this great article
on
| what the author calls rich-client which does EXACTLY what I'm looking for.
| Being able to show a windows form in an IE window!
| http://msdn.microsoft.com/msdnmag/is...h/default.aspx
|
| Unfortunately, some of the terminology is over my head and it's in
C#...I'm
| a VB person. Could anyone explain how this is done or point me somewhere
| that does this? I will admit, I can be quite dumb some days and learn
best
| by a nice step-by-step example.
|
| Thanks for your help.
|
| -Rob T.
|
|


 
Reply With Quote
 
Rob T
Guest
Posts: n/a
 
      27th Jan 2005
Thanks for the response Bruce. I'm aware of these 'restrictions'. I guess
my real question is how do I create the class with the windows form in it?
If I were to crate a new project from scratch, what type of project template
should I use? Are there any existing VB example out there I can pick
through? I'm basically looking for a good How-To on it.

Thanks again.


"bruce barker" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> you can now write an active/x control in .net and download to the browser.
> there are serveral rules involved:
>
> 1) the client must have the .net framework installed already (gennerally
> you
> need 1.1 installed)
> 2) the code dll or cab file must be signed
> 3) the user must allow active/x controls in the browser
> 4) because the control is written in .net, hosted by unmanged code, it
> runs
> in a special security envoriment, and unlike a normal active/x control
> will
> be restricted to what it can do (no access to the disk, other website
> other
> than the one downloaded from, etc).
> 5) IE only.
> 6) when the page first loads the control, it must load the .net runtime,
> and
> load an appdomain. this can take several seconds, up to minute or more. so
> you don't want to do this for a trival control.
>
> in general use this techonolgy where you would use a large java applet.
>
> -- bruce (sqlwork.com)
>
> "Rob T" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> | The other day I posted a question about using ActiveX in my project.....
> | obviously, that's not the best solution. But I found this great article
> on
> | what the author calls rich-client which does EXACTLY what I'm looking
> for.
> | Being able to show a windows form in an IE window!
> | http://msdn.microsoft.com/msdnmag/is...h/default.aspx
> |
> | Unfortunately, some of the terminology is over my head and it's in
> C#...I'm
> | a VB person. Could anyone explain how this is done or point me
> somewhere
> | that does this? I will admit, I can be quite dumb some days and learn
> best
> | by a nice step-by-step example.
> |
> | Thanks for your help.
> |
> | -Rob T.
> |
> |
>
>



 
Reply With Quote
 
=?Utf-8?B?U293bWk=?=
Guest
Posts: n/a
 
      3rd Feb 2005
Hi ,
Why dont use some of the code converters from C# to vb.net ??
I think by doing this it would be easier for you to understand the code.

Thanks


"Rob T" wrote:

> Thanks for the response Bruce. I'm aware of these 'restrictions'. I guess
> my real question is how do I create the class with the windows form in it?
> If I were to crate a new project from scratch, what type of project template
> should I use? Are there any existing VB example out there I can pick
> through? I'm basically looking for a good How-To on it.
>
> Thanks again.
>
>
> "bruce barker" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > you can now write an active/x control in .net and download to the browser.
> > there are serveral rules involved:
> >
> > 1) the client must have the .net framework installed already (gennerally
> > you
> > need 1.1 installed)
> > 2) the code dll or cab file must be signed
> > 3) the user must allow active/x controls in the browser
> > 4) because the control is written in .net, hosted by unmanged code, it
> > runs
> > in a special security envoriment, and unlike a normal active/x control
> > will
> > be restricted to what it can do (no access to the disk, other website
> > other
> > than the one downloaded from, etc).
> > 5) IE only.
> > 6) when the page first loads the control, it must load the .net runtime,
> > and
> > load an appdomain. this can take several seconds, up to minute or more. so
> > you don't want to do this for a trival control.
> >
> > in general use this techonolgy where you would use a large java applet.
> >
> > -- bruce (sqlwork.com)
> >
> > "Rob T" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > | The other day I posted a question about using ActiveX in my project.....
> > | obviously, that's not the best solution. But I found this great article
> > on
> > | what the author calls rich-client which does EXACTLY what I'm looking
> > for.
> > | Being able to show a windows form in an IE window!
> > | http://msdn.microsoft.com/msdnmag/is...h/default.aspx
> > |
> > | Unfortunately, some of the terminology is over my head and it's in
> > C#...I'm
> > | a VB person. Could anyone explain how this is done or point me
> > somewhere
> > | that does this? I will admit, I can be quite dumb some days and learn
> > best
> > | by a nice step-by-step example.
> > |
> > | Thanks for your help.
> > |
> > | -Rob T.
> > |
> > |
> >
> >

>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ActiveX & Plug Ins ???? HELP !!?? PLEASE Cazzythom Windows XP Security 1 15th Feb 2008 03:40 AM
ActiveX, plug-in...whatever Rob T Microsoft ASP .NET 3 3rd Feb 2005 04:53 PM
ActiveX, plug-in...whatever Rob T Microsoft VB .NET 3 3rd Feb 2005 04:53 PM
ActiveX and plug ins. =?Utf-8?B?RGFuLg==?= Windows XP Help 2 13th Feb 2004 11:01 PM
ActiveX and Plug in questions Shelley Windows XP Internet Explorer 2 14th Jan 2004 09:27 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:16 PM.