Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
152 views

Is it possible to dynamically create form without having *.dfm and *.pas files?

is it possible to create and show TForm without having source files for it ? I want to create my forms at runtime and having the empty *.dfm and *.pas files seems to me useless. Thank you
4
votes
5answers
3k views

How can I pass an argument to a C# plug-in being loaded through Assembly.CreateInstance?

What I have now (which successfully loads the plug-in) is this: Assembly myDLL = Assembly.LoadFrom("my.dll"); IMyClass myPluginObject = myDLL.CreateInstance("MyCorp.IMyClass") as IMyClass; This ...
2
votes
2answers
29 views

How to creates dynamically an array and sets the element

This can create an array dynamically: Assembly asm = object.GetType().Assembly; string sTypeName = "Company.Namespace.ClassName"; object arrayWithSize1 = Activator.CreateInstance( ...
2
votes
4answers
303 views

Fast creation of objects instead of Activator.CreateInstance(type)

I'm trying to improve the performance of our application. We have a lot of Activator.CreateInstance calls that are causing some grief. We instantiate a lot of classes based on an interface ...
2
votes
2answers
114 views

How to cast returned value of CreateInstance

How does one cast the return value from CreateInstance when the type is unknown? For example in this code: MethodInfo mInfo = typeof(MyType).GetMethod(MethodBase.GetCurrentMethod().Name); Object o = ...
2
votes
3answers
566 views

Why does my call to Activator.CreateInstance intermittently fail?

I'm using the following code to access the Windows Explorer Shell's band site service: Guid GUID_TrayBandSiteService = new Guid(0xF60AD0A0, 0xE5E1, 0x45cb, 0xB5, 0x1A, 0xE1, 0x5B, 0x9F, 0x8B, 0x29, ...
2
votes
2answers
775 views

AppDomain.CreateInstance is not following the rules

According to How the Runtime Locates Assemblies step 2 is Checking for Previously Referenced Assemblies. However, in the code below you can see that this is definitely not happening. In the first ...
2
votes
2answers
1k views

CreateInstance of a Type in another AppDomain

My scenario is that I have a .net application (let's say a Console App) that creates AppDomains. It then needs to create instances and call methods on Types that are in that AppDomain. Each ...
2
votes
8answers
2k views

How to pass ctor args in Activator.CreateInstance or use IL?

I need a performance enhanced Activator.CreateInstance() and came across this article by Miron Abramson that uses a factory to create the instance in IL and then cache it. (I've included code below ...
2
votes
2answers
713 views

Define a typed dataset dynamically?

I am trying to create an instance of a typed dataset dynamically in my code at runtime. I have the type available to me, but when I try to do this: object obj = ...
1
vote
2answers
47 views

Any reason for this call to Activator.CreateInstance?

I'm maintaining someone else's code and they have this section in a method: object ReportCriteriaInstance = Activator.CreateInstance( ...
1
vote
1answer
120 views

Need to Release a com_ptr_t before reassigning with CreateInstance?

In a C++ class with _com_ptr_t members, will memory leak if CreateInstance() is repeatedly used on the same pointer to get fresh instances of COM objects, without first performing a Release()? It's ...
1
vote
1answer
241 views

System.Activator.CreateInstance returning null

The problem I have is that CreateInstance returns null. Here is the code: if(spattmono[0] != null) { if((SpecialAttack) System.Activator.CreateInstance( spattmono[0].GetClass()) == null) ...
1
vote
1answer
229 views

CreateInstance Returns “The specified module could not be found.”

I've been trying to get a program that worked on Windows 2000 to work on Windows 2003. Everything I've had to do so far to get the program to work on Windows 2003 has had to do with incorrect ...
1
vote
0answers
117 views

Visual Studio IDE Crash Using IDispatch.GetTypeInfo() for Excel.Application

I am writing an application to interface with COM components and I have run into a problem when working with the Excel.Application component while running my application in the Visual Studio 10 IDE. I ...
1
vote
2answers
149 views

How do you instantiate an IDispatchEx in C#?

this is my first SO question! I would like to instantiate a COM object and cast it to IDispatchEx so that I can enumerate its members. Here is an example: Type _COMType = ...
1
vote
3answers
205 views

Resolving injected instances when using Activator.CreateInstance

I'm trying to figure out how to have Castle Windsor resolve dependancies for objects created using Activator.CreateInstance. Currently when I create objects this way, the dependancies inside the ...
1
vote
5answers
198 views

c# string to class form wich i can call functions

on initialize a class by string variable in c#? I already found out how to create an class using a string so what i already have is : Type type = Type.GetType("project.start"); var class = ...
1
vote
0answers
164 views

Application crashes on trying CreateInstance

My Application is created in Vc++ and from the exe I try to load a Excel plugin which is created in C# . I communicate with Excel Plugin by using CreateInstance . But after doing 2 or 3 ...
1
vote
1answer
594 views

Call Activator.CreateInstance in a dll to intance class that reside inside Asp.Net App_Code

Help, here is the idea: External.dll IMyClass NewCreated = (IMyClass)Activator.CreateInstance(Namespace.MyClass).UnWrap(); Asp.Net WebSite App_Code Namespace.MyClass.cs Bin ...
1
vote
2answers
1k views

Activator.CreateInstance vs Factory Pattern

What is the difference between Activator.CreateInstance and factory? Can they be used interchangeably? Or stil do we need a factory pattern?
1
vote
2answers
846 views

How to Pass Parameters to Activator.CreateInstance<T>()

I want to create an instance of a type that I specify in a generic method that I have. This type has a number of overloaded constructors. I'd like to be able to pass arguments to the constructors, but ...
1
vote
2answers
146 views

How to conditionally choose the C# class I invoke via COM in my C++ DLL?

After much help from all my StackOverFlow brethren, I managed to create a C++ DLL that calls my C# classes via COM and passes data back and forth to an external application. There was much celebration ...
1
vote
4answers
2k views

CLSIDFromProgID is successful but CreateInstace fails! Why?

I am trying to create an instance of a COM object. I have the class name that implements the interface and I get a CLSID by using CLSIDFromProgID(). So since I am getting a CLSID I thought everything ...
0
votes
1answer
20 views

Download File - Ironpython

I am trying to design a simple script to download a file... but i'm stuck... Wht i did until now: request = WebRequest.Create(page) request.Credentials = NetworkCredential("name", ...
0
votes
2answers
45 views

Using .NET Activator.CreateInstance without using DTO

I have a Form class that contains several custom Form Elements. I have an Entity object, that provides specific attributes for the element, these are parsed from on XML file. All elements take the ...
0
votes
1answer
36 views

PropertyMetadata to register a DependencyProperty of Type “System.Windows.Point”?

Here is my code : public class ExoticPoint : DependencyObject { public Point PointValue { get { return (Point)GetValue(PointValueProperty); } set { ...
0
votes
1answer
177 views

Create TChromium instance with code

I have an issue trying to create Delphi Chromium Embedded instance with code var Chromium: TChromium; begin Chromium := TChromium.Create(TcxTabSheet1); Chromium.Parent := ...
0
votes
0answers
67 views

Components.classes.createInstance() crashes in JavaScript on FireFox 8

I'm updating a web-based system for managing my media library which uses javascript to call the application to open VLC Media Player to play the media when I click on it. Previously I've used IE along ...
0
votes
3answers
62 views

Error casting object loaded via createInstance

I have an assembly that contains the class RD_ToBeProcessed which inherits from ToBeProcessed. The classes are in separate assemblies. I load an object using createInstance and then attempt to cast ...
0
votes
1answer
75 views

How to manage .Net's RCW COM object creation paramets (namely requested interface)?

I'm using external native COM component in my C# .Net application. This COM dll doesn't have a type library, so I had to write the interop code myself, and having include/idl files I did it like ...
0
votes
0answers
48 views

Why does CreateInstanceFromAndUnwrap not work in a web container?

Hi I have code that looks like the following: public static I Load<I>(string appDomainName, string fqDllName, string classType) where I : class { AppDomainSetup appDomainSetup = new ...
0
votes
1answer
239 views

Activator.CreateInstance(string assemblyName,string typName) in silverlight windows phone 7

I want to use Activator.CreateInstance(string assemblyName,string typName) (http://msdn.microsoft.com/en-us/library/d133hta4%28v=VS.100%29.aspx) in my Windows Phone 7 app. But it doesn't seems to ...
0
votes
2answers
189 views

Factory Pattern in C++: generating explicit createInstance()-Method automatically

i have the problem in writing a C++ framework, that users should have less overhead than possible to use it. Users can publish their work to the frameworks by creating a shared library that contains a ...
0
votes
4answers
353 views

C# call external function (class other machine)

It it possible to call a function on an external class? The external class runs on another machine (say its locations is mymachine.com). have used CreateInstance some time ago but don't think that ...
0
votes
1answer
166 views

How does COM CoCreateInstanceEx try to load types (for non-admin win user)?

I have a very complicated problem that occurs only for non-admin windows user. I run a script S that resides on the desktop and calls a function in a C++ dll. Then the flow is as follows: My C++ ...
0
votes
1answer
127 views

Exception on QueryInterface(IID_IBaseFilter, …) Why?

I create my DShow COM dll (DirectShow filter), and try ManualLoadDLL() from inside simple application (on Windows mobile 6.5.3. Emulator). But on bold line hr = ...
0
votes
1answer
66 views

Loading Visual Studio solution into programmatic instance

I have an F# program that creates an instance of Visual Studio: let vsTy = Type.GetTypeFromProgID("VisualStudio.DTE.10.0") in let dte2 = Activator.CreateInstance(vsTy,true) :?> EnvDTE80.DTE2 in ...
0
votes
1answer
530 views

Creating instance of a service-side DataContract class on client-side in WCF

I have my custom class Customer with its properties. I added DataContract mark above the class and DataMember to properties and it was working fine, but I'm calling a service class's function, passing ...
0
votes
2answers
103 views

How to mark a property as ReadOnly even if GetCreateInstanceSupported = true in winforms, .net

Using the CreateInstance method of the TypeConverter class, it's possible to edit the properties of an immutable object - such as a font. However, unlike the font class, there's some properties in my ...
0
votes
4answers
1k views

Activator.CreateInstance(t, 42, args) cannot find constructor

I am using (a slightly extended version of) the following code in a factory-pattern style function: public class SingleItemNew : CheckoutContext { public BookingContext Data { get; set; } ...
0
votes
3answers
883 views

Using an AppDomain to instantiate a class in a DLL

I have a website that on user-demand compiles a class on the fly and deposits the dll(named Equation.dll) in a subdirectory of the website. The administrator can recompile at any time. However, once ...
-1
votes
2answers
72 views

How to supply parameters to constructors, not known in advance?

This function will load an assembly, let the user select a form from a list, and then try to invoke it. If successful, returning the form. My problem is how to instantiate the constructor with ...