Can't Load ActiveX Component
I'm trying to configure IIS (create new web site) in code. My code works fine within a standard windows application, however, when I copy the code to an asp.net page, I get
the above error message. It occures in the:
function 'GetObject("IIS://localhost/W3SVC")'.
View Replies
ADVERTISEMENT
I created a ActiveX DLL component to create a Excel file under my home directory through VB6.0. Then I registered it through "regsvr32" command and a messagebox came out to say that the register was successful. But when I tried to run it in my ASP page under IIS ver5.01 and win XP Pro, it gave me this error:
Error Type:
Server object, ASP 0177 (0x800401F3)
Invalid class string
/tg.asp, line 2
Here is my full code:
<%
set myExcel=server.createobject("test.test1")
myExcel.CreateExcel
set myExcel=nothing
%>
View Replies
View Related
Was running my ASP app no problem on a Windows XP Pro SP2 machine with IIS, dragged a copy my app folder and put it on another Windows XP Pro SP2 machine with IIS and I get the below problem:
Error Type:
Microsoft VBScript runtime (0x800A01AD)
ActiveX component can't create object: 'Scripting.FileSystemObject'
/asp/forms.asp, line 497
I can run old copies of this app folder no problems so what has happened since I dragged a copy from one machine to another?
View Replies
View Related
I´m using IIS 5 on Windows XP. When trying to send a mail using 'CDONTS.NewMail', I get this error message : ActiveX component can't create object: 'CDONTS.NewMail' .
View Replies
View Related
In an ASP page, I get the above error which is Error number 429. I have 2 seperate webs.
1 web you must log on. It creates an object by getting DLL just fine. This works great.
The other web is open to the public, no login. The same web page gets the above error message.
How can I have an Public web page to create an object, which is my DLL?
View Replies
View Related
Im writing a script with the Excel ActiveX Component, ive written it all and just rememred I dont have excel installed on my server, or have the time to uplaod my entire Office ISO onto my server. Is there any way I can steal the excel dll from the cd or the installed version on my computer and install that on my server?
View Replies
View Related
We are trying to access a .net dll based method from classic asp code. When the method is accessed, system gives a message "You are about to access a Activex component". How do we suppress or stop this message from interfering method access.
View Replies
View Related
I wrote a vb6 "client-side" ActiveX Component that will extract the user's
network login.Now I want to be able to do some server-side work with this info, and it
would be great if I could put the user's network login into a session
variable but serverside-code is executed first ....
My objective is for, each time (or the first time) our intranet users access
the intranet's web page, it call the activeX which pull their user name
which them would call SQL and displays custom information.
would an include file work ? or can I in vb6
re-write my ocx so that it places the username directly in a server session
object
View Replies
View Related
Originally Posted by Error
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'CDONTS.Newmail'
/mailer.asp, line 20
I am Getting that error once i submit on a Form.. Code:
View Replies
View Related
I am recieving error ActiveX component can't create object in the following
line in the asp page.
set ExcelApp = CreateObject("Excel.Application")
Previously this code was working fine.
View Replies
View Related
I get:
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'CDO.Message'
/wheelofgod/mailing.asp, line 3
How is that dealt with?
View Replies
View Related
How to incorporate this Install-feature into my web site. I already wrote the setup program which is available on my web server. I do not want to let the setup program to be downloaded and get installed If this is not possible using ASP then do I need to really move to CGI scripting.
View Replies
View Related
I run a script on my server I get a error
messeage..
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'CDO.message
View Replies
View Related
I have created an .OCX in VB6 for use on a web page. I created a .cab file
and placed this file on the web server and updated the web page with the
<OBJECT> tag with the correct guid, etc.
When I hit the web page, it prompts me and asks if I want to download and
install the component. I click yes and it appears to go through the
motions of downloading the .cab, etc. But the control never appears on the
web page. When I check the registry, the ocx (and its dependencies) are
not registered. In fact, I can't see that the ocx is even on the system
anywhere. If I manually install and register the ocx, then the web page
works fine. Code:
View Replies
View Related
does anyone knows how to send email from ASP forms?
I wrote this code for sending email:
Dim objMail
set objMail = CreateObject("CDO.Message")
objMail.From = "mail-srv@binapuri.com.my"
objMail.To = "Serene@binapuri.com.my"
objMail.Subject = "New leave application."
objMail.TextBody = "Testing"
objMail.Send
set objMail=nothing
But I got this error:
Microsoft VBScript runtime error '800a01ad'
ActiveX component can't create object: 'CDO.Message'
What does it means?
View Replies
View Related
Does someone know the cause of this error? I'm developing a simple christian site for our church and it needs to have an email functionality. When I submit the form I receive this error. Can anyone give me some tips?
View Replies
View Related
After server went down I got this error after submitting Membership form. (win2000, IIS 5.0, Access Database(mdb)
ActiveX component can't create object Error Number =429
View Replies
View Related
I need to upload large files.I had the Huge ASP upload installed.It came recommended here.
Using the sample script I get this error when uploading:
Error Type:
Microsoft VBScript runtime (0x800A01AD)
ActiveX component can't create object: 'ScriptUtils.ByteArray'
/upload.inc, line 53
What does that mean?
View Replies
View Related
What I want to do is to show always the latest post on our company NNTP
and the newest email in my inbox as an activex background on my desktop.
View Replies
View Related
Does any one know a way how to use a visual basic 6 written activex .DLL
without registering it with classic .ASP?Reason why my hosting is charging me for registering .DLL.
View Replies
View Related
how can I create a simple non-UI dll or component which will be used by MS Access and .ASP apps which I can build with Visual C++ .net? An example or template which would allow me to paste in C code without learning all the C++ details would be perfect.
View Replies
View Related
Can somebody explain me wht this ActiveX is all about. I am not a ASP coder, actually i just need to create something however i needs to be ActiveX i have been googling around trying to figure out how to implement this AcitveX in this ASP(not aspx) page. The page is done. kinda just missing the ActiveX.
View Replies
View Related
I created a ActiveX DLL project that will be with a asp page. I compile the project using Project compatibility instead of Binary Compatibility and import the DLL into Component Services.
Is there any problem that might occur using Project compatibility instead of Binary Compatibility with IIS? Also, what is the difference with the two type of compatibilities?
View Replies
View Related
what is faster, ASP Code or compiled ActiveX DLL with same functions(queryng data from ms sql server).
View Replies
View Related
which ActiveX Component allows IIS to provide e-mail services
View Replies
View Related
Why would the following code execute in VB6 but hang indefinately when
exectuted in an ASP 3.0 page?
Set VLReceive = CreateObject("VLCTI.VLReceive")
This line is invoked in the following context:
<%
Dim VLReceive
Set VLReceive = CreateObject("VLCTI.VLReceive")
Set VLReceive = Nothing
%>
Is it the setup of the virtual directory or something?
View Replies
View Related
I have created a small activex dll to do a background task on my web server. I
fire it off with a set myjob = server.createobject(myactivex) and it runs.
I do not do a set myjob = nothing and so it seems to keep working even after
the initiating session is closed with session.abandon.
Question... what will be the lifetime of this object and is there a way to tell
if it is dead and needs to be reset... after the session is abandoned I no
longer have a reference to it (myjob)
View Replies
View Related
I have created one ActiveX DLL in VB that has one public function
("GetClientCPUID") which will return a string of the CPUID. I want to use
this to get the clients CPUID and retuern to webserver. I am new to using
activeX in client side.
In Asp how can I send this ActiveX to client browser? (I will instruct my
users to allow this activeX). Is there a way I will execute this activeX in
clients PC and get the return value and return to the server for my
processing? Please suggest the ways that I can do this.
Also suggest what are the situations that I should know before I proceed. I
think there will might a issue when I upgrade the activeX and the client
those are using the current one may face problem so I think I will need a
way to uninstall the register the new one. Code:
View Replies
View Related
I want to write an activex control. This actiovex comntrol will be a simple drop down and when i select a value from this drop down the value in another drop down will be fill up based on this value with page refreshing.I have no idea how to develop such type of activex control.
View Replies
View Related
Does anyone know where I can find any good documentation using ActiveX scripting with asp and vbscript? How is ActiveX scripting different than using ADO (ActiveX Data Objects)?
View Replies
View Related
I have asp page which is using activex exe component ...how can I debug from asp page to the component...I am using visual basic to create my activex component.
View Replies
View Related
I can call a method of an ActiveX control via javascript but I also need to go the other way and call a javascript (or vbscript) function from within the ActiveX control.
I'm thinking the control must issue an event and javascript must listen for that event? Am I on the right track? Where can I learn about how to do it?
View Replies
View Related
I get the following warning when i receive a mail send from Asp:
""Your current settings prohibit running ActiveX contros on this page. As a result, the page may not display correctly.""
i want to avoid getting this message what can i do for it.
View Replies
View Related