Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
678 views

Passing arguments to constructors using CreateObject in Coldfusion

I'm trying to use a Java object in Coldfusion using the CreateObject function. This works fine when the constructor in the Java class doesn't take any arguments e.g.: MyObject myObject = new ...
3
votes
2answers
153 views

ColdFusion CFC implementation of C# Partial Class?

Does ColdFusion offer a mechanism for splitting CFCs into multiple files? I am NOT talking about extension, I am talking about splitting the SAME CFC into multiple files; the same way C# allows for ...
3
votes
4answers
2k views

Start Visual Studio programmatically; C# equivalent of VB's CreateObject(“VisualStudio.DTE.8.0”)

I can start a new hidden Visual Studio process from VBScript, and drive it programmatically, by doing this: Set DTE = CreateObject("VisualStudio.DTE.8.0") DTE.DoStuff() How do I do that in C#? ...
2
votes
1answer
64 views

What is the difference between declaring connection via object tag and Server.CreateObject

When using classic ASP, what is the difference between declaring connection via object tag: <object RUNAT="Server" ID="cn" PROGID="ADODB.Connection"></object> and declaring the ...
2
votes
4answers
651 views

What is the difference between using cfinvoke and createObject to run a component function?

In my company's code, I've often seen component files used by initializing an object of that component and calling the methods off the object. However, it seems to me somewhat more straightforward to ...
2
votes
3answers
478 views

How to determine the association between a VB6 app and an exe instanced with CreateObject()

We need to figure out how a service can peek at a running VB6 app and/or its DCOM spawned exe and figure out which VB6 app goes with which DCOM exe. The VB6 app and the spawned exe are both on the ...
2
votes
1answer
597 views

Alternative to Server.CreateObject

I am writing a navigation system in classic ASP (on Windows CE). I require a way to dynamically include navigation files based on the calling script. I have come up with the following code that ...
2
votes
3answers
4k views

Question about CreateObject() in VB6 / VBA

I can do this: Dim fso As New FileSystemObject or I can do this: Dim fso As Object Set fso = CreateObject("Scripting.FileSystemObject") How do I know what string to use for CreateObject? For ...
1
vote
0answers
34 views

What is the difference between creating a COM instance through CreateObject versus ActiveXObject?

This has been touched on here in the second answer but I don't see how it answers the question (nor does the link provided). What can ActiveXObject do that CreateObject cannot, and vice-versa?
1
vote
1answer
61 views

How to set values for the silverlight plugin using javascript

I can't seem to figure out how to set a particular value for the Silverlight Plug-in. Specifically, the splashScreenSource value. I'm able to get this working using the param (name/value) method, ...
1
vote
1answer
80 views

Discovering registered COM components

Is there a way to determine if a registered COM component is creatable as a stand-alone component simply by parsing the information available in the registry? In particular, by the information found ...
1
vote
5answers
235 views

Best method for Prototype object oriented programming in JavaScript

I rather like the prototype way of programming and have been trying to understand it in javascript. I saw this bit of code in The Good Parts: function beget(o){ function F(){ F.prototype = o; ...
1
vote
1answer
538 views

CreateObject() object List for vbs

I like scripting, I don't like to reinvent the wheel, so I like CreateObject Can you please point me to a extense and useful list of objects that can be used on VBScript with a brief description. ...
1
vote
2answers
332 views

How to consume COM object in ASP.NET class file

I have a COM object that I am trying to wrap in a C# class in order to make it more readily available for other applications that wish to consume it. I have the following code that creates an ...
1
vote
1answer
657 views

adding stock data to amibroker using c#

I have had a hard time getting and answer to this and i would really , really appreciate some help on this. i have been on this for over 2 weeks without headway. i want to use c# to add a line of ...
1
vote
4answers
784 views

VB6 app not executing as scheduled task unless user is logged on

I would greatly appreciate some help on this one! It may be a tricky one. :) Problem I have an VB6 application which is set up as scheduled task. It starts every time, but when executing ...
1
vote
1answer
609 views

Automation Error - Not enough storage is available to process this command

VB6 CreateObject() is advising this error message: "Automation Error" - "Not enough storage is available to process this command" The object being created is a DLL written in C. I'm running the ...
1
vote
1answer
240 views

Reverse CreateObject in VBScript

I have an old vbscript the runs the command, foo = CreateObject(x.y). I want to run this script on another computer (which it doesn't run on now btw) but I don't know which dll's I should register, or ...
1
vote
2answers
1k views

Cannot instanciate .Net COM object in classic ASP/VBScript page (Error ASP 0177)

I've written a COM interop enabled class-library in C# using .Net 3.5. The object is meant to provide some utility functions for classic ASP pages. I've written a test.asp page which instanciates the ...
1
vote
3answers
936 views

difference between server.createObject and createobject in asp classic

according to http://msdn.microsoft.com/en-us/library/ms524620.aspx you should use server.createObject If you are already familiar with VBScript or JScript, note that you do not use the scripting ...
1
vote
2answers
403 views

AspAllowOutOfProcComponents error: many solutions, one programmer and no fix

I have been trying to work on integrating a NewsLetter for a companies local intranet and I keep running into the same error that everyone seems to be getting. I am running this on IIS 5.1 and on ...
1
vote
1answer
579 views

vb.net How can i kill the application that i created using createObject()

I'm using CreateObject(progId) in Vb to create a pdfDOcument. But the problem is that after i'm done and closing the document and release, How can i shutdown the process? How can i reference the ...
1
vote
1answer
478 views

Detect Plugins in Internet Explorer without Instantiating the Object

Normally when you use VBScript or JavaScript to CreateObject to detect a plug-in, the user gets the somewhat "jarring" security exception. What are some good ways to detect IE browser plugins ...
1
vote
3answers
2k views

Using VS 2008 (vb.net) I need to create an object I can use in Classic ASP with CreateObject

I am very new to VB.net. I have written these objects in VB6 before. I'm just lost in VB.net, but (kicking and screaming) I have to learn how to do this. I've been googling for hours with only minor ...
0
votes
1answer
25 views

VBScript and CreateObject issue

I'm not really experimented if it is about VBScript but I had the occasion to read many things through forums and actually yesterday I helped someone to checkout why his script wasn't working and ...
0
votes
1answer
28 views

VB CreateObject dll ambiguity

could you please help with the following I try to use Some.dll version 5.0 within my code. However, Excel has multiple reference for the same dll, with earlier versions like 4.0 If I run: Set co = ...
0
votes
0answers
127 views

(Solved) runtime error 438 (object does not support this property or method) on localhost with IIS 5.1

Developing an ActiveX DLL in VB6 for ASP on my development XP - in the VB environment everything works well - no problem to late bound instantiate the DLL by CreateObject (I don't work with GUID). ...
0
votes
0answers
11 views

How do you create a new object (button) on a workbook which is newly created by a main workbook using code only?

Just so you know, I don't have all that much experience with coding at all and I've only been working with VBA code for about 6 weeks. I'm editing a macro-enabled workbook that other people [whom ...
0
votes
1answer
256 views

createobject scripting.filesystemobject IIS 7 - vbscript code always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder

As per title createobject scripting.filesystemobject IIS 7 - vbscript code is always trying to save file in C:\Windows\System32\inetsrv\ instead of web site folder and I get a "permission denied" ...
0
votes
4answers
215 views

createObject in VB6 does fails when running exe

I have a VB6 program which tries to run a DLL written in C#. This DLL has a COM interface so I can create an object of a class in it with "CreateObject". The problem is that it runs and works well ...
0
votes
2answers
210 views

How to force 32bit app to use a 64bit COM dll in CreateObject?

The following code behaves differently depending on if I use the 32 or 64 bit version of wscript: Set oSQLServer = CreateObject("SQLDMO.SQLServer") For Each o in oSQLServer.ListInstalledInstances ...
0
votes
4answers
1k views

What is “Dim fso, MyFile, FileName, TextLine” in VBA?

I received this code from one of those nice people here who are willing to spend their time and energy to share their knowledge with noobs: Sub ReadLinesFromAFileOneAfterAnother () Const ForReading = ...
0
votes
3answers
3k views

Classic ASP: Server.CreateObject not supported

When I call Server.CreateObject(), from my Classic ASP page, I get Microsoft VBScript runtime (0x800A01B6) Object doesn't support this property or method I've tried the following (separately): ...
0
votes
2answers
2k views

Overriding CreateObject Function in VBScript

Need help to figure out how to overide the default CreateObject() function in VBScript with my own. Basically the same exact thing as this example in VB6: ...