o
k
q
u
e
s
t
i
o
n
s
.
c
o
m

[2005] To create Active X component to Web IIS -

Hi

I have developed an application in ASP.NET that opens Word document on any event

Here is the code

Dim wdDoc, obj As Object
obj = CreateObject("Word.application")
wdDoc = obj.Documents.Add("C:\MyWordDoc.doc")
wdDoc.Application.Visible = True

It runs fine when I run it on local host however when I load it on IIS it fails and give exception on this line:

obj = CreateObject("Word.application")

Cannot create Active X component
I have no idea to register?

What should I do?

 

Registering a .Net COM component..HELP... -
I have created a .Net Com Component that is instantiated from VB6. On my machine in debug i can create it and call functions ok from VB6, but when deployed (using the vb6 deployment wizard) I get the Active x can't create object error. Does anyone know how to register the .Net Com c


Active X component Vs Com object: Newbie -
Hi, Im just starting in VB and I have a question about COM objects versus Active X components. Can an instance of a COM object display forms/ buttons etc on a web page or would I have to create an active X component to do that? Basically, what I am trying to do is create an i


[2005] To create Active X component to Web IIS -
Hi I have developed an application in ASP.NET that opens Word document on any event Here is the code Dim wdDoc, obj As Object obj = CreateObject("Word.application") wdDoc = obj.Documents.Add("C:\MyWordDoc.doc") wdDoc.Application.Visible = True It


Active X component causes ADO connection to fail -
I am using an active X component (PLserver) from Nordic ID to a handheld scanner Piccolink. I connect to an oracle database using ADO. when I run the project it is OK. Then I stop the program for refining the code, and the second time I run the project, the ADO connection is lost, and


Active x Component cannot create object -
Hi I get this message "Active x component cannot create object error number 429" when i install my application. I am using components, the dlls are getting registered properly. Only when i install vb my application works. Thanks Yashasvi


Active x component unable to create object.. HELP!! -
I have used the package and deployment wizard for an app I am working on. It installs fine, but as soon as you attempt to log in it gives Error 429 ActiveX component can't create object. Any help would be very much apprecaited.


[2005] Correctly instantiate Active X Component on Form -
Hi, Does anyone know how to instantiate/initialize an active x control in a windows forms app in code. In particular the ax web browser control. It works fine just dropping it onto the form, but I want to create it from scratch in a seperate thread to the UI, I can create it and


Active List Bar Component in VB6 -
When i click a form with Active List Bar Component (SSActiveToolBars) it Shows a form that saying "Unlicense Copy - For Demo Use Only" and Create an Error in Logs saying "Cannot load control Listbar1; license not found." What should i do with this to run Correctly?


Active X exe doesn't die itself. -
I am using a timer control on a form to activate an Active X exe which does some work and at the end just unloads the form cleans up all the objects. This should ensure that the component gets unloaded but sometimes it doesn't. I can use the END statement to end the Active X exe forcib


[2005] How to create custom non-visual component -
How do I create a component much like the "Dialog" components? I have added a new "component" to my project, but I can't seem to drag it on to an existing form. How do I do this?


Creating Active EXE (DCOM) in VB .NET -
Hi all, I have an ActiveX Exe (DCOM Component) in VB 6.0. We are trying to convert this in VB .NET but the upgrade wizard suggest this to convert into Class library as DLL. Compiling the same in VB .NET does not result this in DCOM component. How can i create/covert DCOM Compone


plz help me! -
hi! to all, i have been using VB 6 for database applications.recently ,i tried to know abt the working of Active-X components.i created a sample Active-X dll project & used it within other project.it was working properly.then using packaging & deployment wizard,i created a set


Active X Back Color -
I doing a active x component in visual studio 6 in my component I have 2 shape box that I want that recive the same color of the frame that they will be put in Thank a lot


Active-X Component cannot create object error... -
Hi everybody, i am new to ASP and by chance i saw an example in the Database Programming with vb6.0 from wrox press. i used their example and here is where i am getting an error. it goes like this "Active-x Component cannot create object -- vbscript error". The scenario is th


Cannot Create Active X Component -
When calling Microsoft word through a VB application it comes up with the Error "Cannot create Active X Component." What could be the cause of this????????? I am using the following! Dim oWordApp as Word.Application!!! Should I rather use ... Dim oWordApp as New Wor


DataGridView in VB 2005 -
Hi Friends, I am working on Client/Server app. in VB.NET using VS 2003. I have hard time using DataGrid component. I came to know that DataGridView component is way far better. But its available in VS 2005 which I dont have. VisualBasic 2005 Express edition is free bee, which


Urgent !! Javascrip in Usercontrol -
I have created one ActiveX component.I am embedding this active x Component in other tool which support Active x component and opened into browser.Here i want to use javascript .My purpose doesn;t solved if i used javascript outside the activex control. Can any boby knows how to use J


Sending Email Active X problem -
I'm using the CDO Library and the CDONTS method of sending Email but when I run the program I get an Active X component can't create object error. Any help would be great.


Package and Deployment Wizard problem... -
Hello, I just completed a project with VB6 and compiled it. But when I try to package it, I get an error message 429, saying that the Active X component can't create object. I don't even have an Active X in my project. What is going on here? How can I fix this? Thanks for any lea


ActiveX component causes error after compile when called from IIS -
I have created a component that uses ADOX to create an access database and define a set of linked tables. When the component runs within the VB6 debug all the action is done by VB6.EXE and the component functions. When the component is compiled IIS runs the component as DLLHOST.EXE and


signing an activex control -
Created an activex control to send outlook tasks from an asp.net web page. I noticed when the active x component gets initialized on the page I get that IE message, about whether to accept the activex or not (part of the security). I think you can modify the IE options to drop this m


[2005] View Active Reports in PDF view... -
I finally figured out that I need to add an "active reports viewer control" to my toolbox to use it, and that you drag the component on form, and set the document equal to a "newactivereport1". But I need to know how to modify the viewer, or whatever I need to mo


Help Please!! Active X component cannot create an object -
i am getting the error "Active X component cannot create an object, error:429", When i try to run the application. This is not the case all the time, this error is not frequent but occurs very rarely but i am not able to understand the problem as to why i am getting this


[2005] Label VS Button -
They both have same members, they both have same properties. So what's the difference between them not include the visual look ? Right now, I'm creating a component like my attach image. It's currently inherits label. I want to expand its ability with mouse enter and leave for nice


[2005] How to create a .Net toolbox component -
Hello! I want to create a .Net component which will be similar to a Timer. It will have properties, functions, events and no UI. I don't know how to start doing such a project... And how do I make it possible for it to be installed in the user's VS.Net environment. can anyone


activex components -
Hi I have developed a program but when i go to run it on another machine it comes up with the error "run-time error 429 active x component can't create object" the only way aroud this so far is to load the active x components off the visual studio disc on what ever mach


[2005] File or assembly name XXX, or one of its dependencies, was not found -
Hi all, I have a vb6 dll that is attempting to call a vb.net (2005) dll via COM interop. The moment the vb6 component attempts to instantiate an object from the .NET dll, the above error occurs. As near as I can tell, all of the non-framework components the .net dll uses live


Debug Active-x Exe -
Hi, I have an active X exe project which I want to debug. This active x exe is called from a normal EXE. The active X exe does not have any visual component. All it does it read data from file and inerts it into database. I have tried loading both projects simultaneously, in dif


Invalid Prog ID -
I just created an active x component and compiled it into my windows system directory. I am using windows 2000 Pro. But everytime I try to run the asp page to create an instance of that component I get the following error: Error Type: Server object, ASP 0177 (0x800401F3) Invalid


PDF Active X component -
Hi, im trying to open a VB project that I created on another computer that uses the Pdf active x component, when i try to open it up on another computer I keep getting the error message "\foldername\pdf.tlb could not be loaded. Continue loading project? " I have put the pdf.


[2005] Question in create tabpage with same component -
How can i create multiple tabpage with same component? for example, i had create a listview in tabpage1, how do i copy the listview and put in every tabpage?


Create your own firewall -
Create your own firewall It is possible to create your own firewall using the .NET framework or a third-party component. My objective is to keep track of all incoming and outgoing IP addresses regardless of the active browser that is being used to surf the web. Once an IP addre


Newbie here - need help with datasets -
My form consists of a combox and a datagrid. When the user selects a table from the combobox I need to be able to tie the datagrid to that table programatically. Additionally all the add, delete, update features need to active against that table. I have been able to add datsets with


How to add vb6 activex component into... -
im creating a activex component in vb6.0 which sends tasks. I want to utilize this activex control on an ASP.net web page... Lets say I ve created the ocx (compiled it) and what not..and I go into Visual Studio.net...I create a new project..I have webform1.aspx...I want to add this


how do I create an .NET active x dll -
Hi; I have a vb6 active x dll that I call from some of my windows script host (WSH) VBscript. I would like to convert this DLL to .NET. In vb6, creating an active x dll required selecting a active x dll type from the project dialog. I don't see this option in .NET any more.


Error in Creating Setup Package -
Hi Guys, I have developed a project in VB6.0. The program runs fine on my pc as an exe because I have all the components installed. I want to run this on my server now, which only has vb5 installed on it. So I tried to create a Setup package to carry the project over to the Server


create database error -
i am running VB5 and am trying to create a database in code but i get an error "Active X component can't create object" i have referenced DAO 3.51 and microsoft activeX data objects 2.0 please can anyone help thanks [Edited by eamd on 06-22-2000 at 06:59 PM]


component -
hi!!! I would like to know how to create component. Where do we have to go to create component. And after how to we do to use this component in a project. tanks a lot


Intances and Termination -
Could any body tell me How to Unload an component from itself. Eg: Active X exe Class: Class1 Form: Form1 On Command button click I need to terminate the whole component


Component help -
Hi there, I have created a component. but the problem is that when i place the component , I have to drag it to get the complete component & when I strech more I get white colour with the component ie component with white component but component width remains the same. Please he