more OWC COM components problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

the thing is, i need to manage pivot table events, in order to do that i
recompile the visual studio .NET and this procedure created a new set of OWC
components the instructions to do that are in this web page
http://support.microsoft.com/default.aspx?scid=kb;en-us;823982
but this procedure created .NET framework components to be used in windows
forms but i needed this to be used in web forms i can not add this .NET
components in a web form, where i need them, what can i do about this problem?

how can i add this components in a web form?


any help would be great, thanks in advance
 
read the vba documentation, not the .net. the client (IE) hosts the native
com componets. you create the objects with the <object> tag or obj = new
ActiveXObject(name);

if the OWC objects are not marked safe for scripting, you will have to up
the trust for you site.

-- bruce (sqlwork.com)
 
Back
Top