ActiveX

  • Thread starter Thread starter Nikolay Petrov
  • Start date Start date
N

Nikolay Petrov

Is it possible to create ActiveX in VB .NET and if yes does the client
need to have .NET Framework installed?

tnx
 
Nikolay,

The answer is no.

And why would you use an ActiveX. I see more and more a X in the right top
of my IE and than a text that there is stopped an ActiveX from running for
security reasons.

Probably will that in IE7 even be more.

Cor
 
Nikolay,

A sample from ActiveX which are AFAIK not usable anymore are those that try
to come directly to the file system of the client.

Cor
 
Cor, I am aware of what you are speaking.
If you have red some of my previous posts here, I am looiking for
solution to compress files at client side, then upload them to server.
By compression at cleint side I mean that not the user should
zip/rar/etc the files.
As far as i can see, the only way to achieve this is by using
ActiveX.(or at least, that is what other people answerd to my posts)
Personaly I prefer the .NET way, but how to execute the compression
code client-side is unknown to me. And also the clients are not
supposed to have .NET Framework installed.
I guess back to ActiveX, right?
 
Nikolay,

As far as I know is the only possibility in all over the world situations
the HTML control Input and than the type file (that will ask for the file,
however I thought that you can set that in advance).

When it is more about a situation where you have full control over the
browser, than you can go for the rich client.

Cor
 
I would like this to be implemented as a part of our Intranet web
services, instead of separate application. And it is much easier to
maintain on 1000+ PCs.
 
Nikolay Petrov said:
Is it possible to create ActiveX in VB .NET and if yes does the client
need to have .NET Framework installed?


You can use VB.NET to create controls that can be used in MFC and Internet
Explorer, however, VB6 as host environment ist not supported:

ActiveX control containers that support .NET controls
<URL:http://support.microsoft.com/?scid=kb;EN-US;311334>
 
Ok Herfried thank for the link.
All my client PCs are using IE6+, so according to it thre should be no
problems, right?
Other question: I have to use SharpZipLib library in my control to
acheive what I need. Maybe the question is stupid, but i've never tried
to write custom controls, so how to add this library to my control?
Should it be done automatically, when referenced in my project?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top