1
vote
1answer
26 views

Error when dynamically creating a generic list through reflection

when i run the program an error message pops up, it says: Object reference not set to an instance of an object from the methodinfo.invoke(data, null). what i want is create a dynamic generic ...
-3
votes
0answers
50 views

Events Inside the form within the dll [closed]

Inside my project, which is a class library, there are two files, a class file and a windows form. In the windows form, I have different controls such as textboxes and labels. My problem is that, the ...
0
votes
0answers
54 views

Emit Reflection (vb.net) Dynamically Reflect dropbox results in property grid

trying to add a dropdown into a property grid Im using VS2010 VB.net with reflection For my full solution - Download it here https://www.nyvault.com/files/reflection/xml_propgrid_reflect_sk.zip ...
1
vote
0answers
49 views

VB.NET: Overload extension methods of T

I want to create a XML document by the properties of an instance. For that I write two extensions. <Extension()> Public Function ToXml(Of T)(ByVal source As T) As XmlDocument Dim ...
0
votes
0answers
74 views

VB.NET exception: Public member <Member> on type <…> not found, when trying to load DLL class at runtime

My windows forms application uses a DLL to create an instance of one of it's classes. However I get Public member 'VOLX' on type 'STR001' not found. every time. The DLL Public Class WorkingClass ...
0
votes
1answer
44 views

Access members/function from a generic object created via reflection without reflection?

I have a a type available: Type arg1 = GetGenericType(3); // based on the number passed a type is received. I want to create an object of a generic type : MyGenericType<T>, so I do this: ...
0
votes
0answers
112 views

Find application data directory of vb.net application under test

I am writing NUnit tests for an application that stores reference data XMLs in My.Computer.FileSystem.SpecialDirectories.AllUsersApplicationData The problem is that when the NUnit executable runs ...
2
votes
1answer
103 views

.Net instance function pointer

Can I make a pointer to an instance function when I don't have the instance declared yet? Right now I'm using reflection to call my methods but it seems this could be easier with a delegate of sorts. ...
0
votes
2answers
66 views

VB.NET, INFER ON and Enum.GetValues

My project manager charged me to remove all "Option Infer On" directives from our solution (in order do not have undefined types, in his opinion). Dim enums = [Enum].GetValues(enumType) ' here I will ...
0
votes
2answers
75 views

C# or VB: Get the variable type from a property

I'm trying get a member based on a String from a class and then get the type but I'm not having any luck. Public Class Monster Public Property Name As String Public Property EatsPeople As ...
1
vote
3answers
249 views

Trying To Get The Name Of A Variable as a String VB.NET

I'm trying to return the name of a variable as a string. So if the variable is var1, I want to return the string "var1". Is there any way I can do this? I heard that Reflection might be in the ...
1
vote
0answers
95 views

How to convert MSIL code into C#?

I want to print method body on my web page using reflection. See attached image file, in that there is a GetAge method. When I select this method from the dropdown than body part of this method should ...
1
vote
1answer
95 views

.NET Reflection on Removable Drive

We have got the following setting: A IPlugin interface, which is being exposed by the main executable. The main executable (and the plugins) are located on a removable drive. We are trying to load ...
2
votes
1answer
228 views

Activator.CreateInstance MissingMethodException

I have a class in a c# dll with the following class public class RequiredTask : Base.BaseObject { public string Name { get; set; } public string Description { get; set; } public ...
1
vote
0answers
94 views

vb.net remove private method from listening to button click event in a private control

I have this FindButton_Click method in a private Control which is causing a crash. I have added a new method to handle the click event. I want to stop this FindButton_Click method from getting called ...
3
votes
1answer
133 views

Use System.Reflection.Emit to show a MessageBox in Windows.Forms

I am trying to do a msgbox with ilgenerator.emit but I have an exception when I run the code: exception generated from destination of a call This is my code: Private Sub Button1_Click(ByVal ...
0
votes
1answer
86 views

How to find parameter types of Action (using reflection)?

I have a method that takes an array of actions as parameter. The actions in this array should always require 1 parameter, but the parameter type can differ. The method should check what type of ...
0
votes
1answer
283 views

How to use reflection in Portable Class Library for Windows Store/WP8/WinRT?

I need to find an equivelent to the following code for use in a portable library: Public Overridable Function GetPropertyValue(ByVal p_propertyName As String) As Object Dim bf As ...
3
votes
2answers
96 views

How can I dynamically call a static method on a derived class

In my ASP.Net MVC pages I can click on column headers to sort by that column, but this involves "magic strings" in the aspx, which can result in runtime issues. I am trying to check at runtime ...
2
votes
1answer
93 views

String values left out of PropertyInfo.GetValue

I am not very well-versed in Reflection, but I have been working on this bit of code for a few days trying to obtain the values of class properties. I am using an API to find the values inside of cron ...
2
votes
2answers
203 views

Compiling and running code in runtime

I am trying to compile and run code at runtime. I am using the below code to achieve this. However, when i trying to invoke the method, simply a "Find Source" file browser dialog opens and the code ...
0
votes
1answer
71 views

Visual Studio 2010 says my type variable isn't defined when it is

I'm trying to use reflection to access a custom assembly that I've created. Specifically I'm trying to access a public list of a structure that I've created. (It is a list of Holiday structures which ...
0
votes
3answers
571 views

Iterate through class properties

I have a VB.NET class called ticket that has several public properties of type 'field'. I would like to have a way that I can iterate through all of these properties (with a for each) and perform a ...
1
vote
0answers
34 views

Is there a way to get the expression in a string in vb.net

LogEvents(System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson)) I want to be able to output not just the content of System.Text.Encoding.UTF8.GetString(queryPlaces.ToBson) but also the actual ...
0
votes
2answers
67 views

Exception has been thrown by the target of an invocation - for property BackColor

I get that error when I am trying to setValue for property BackColor for a textBox What I have is a formBuilder. So with my formBuilder Runninng I can create a form adding a TabControl and in the ...
4
votes
1answer
183 views

Reflecting only child properties of a derived class on VB.NET

I'm trying to serialize properties of a class that inherits from another using Reflection, but I would like to serialize only the properties of the child class, not the parent ones. How can I do that? ...
0
votes
1answer
182 views

Dynamically Instantiate a Table Adaper Created with a Dataset Generator

I have a number of stored procedures. I used the .net server explorer and the dataset generator to create table adapter and table pairs. Now in my code I want to dynamically instantiate these table ...
0
votes
0answers
37 views

Setup Class for a Properties Panel in project

I have a project/hobby i am working on and i need to have the ability to represent a classes properties as actual visual properties on a "properties sheet/tab" in the project. Some of the more ...
0
votes
1answer
144 views

Getting PropertyInfo without an instance of the class

I have started using reflection and am a bit confused about getting PropertyInfo. I do something like this and it works: Dim x as New MyClass Dim prop as PropertyInfo = x.GetType.GetProperty("Name") ...
0
votes
0answers
117 views

Can I assign a value to a Castle.Proxy object property via reflection?

I have a controller test base which I use to handle a lot of the redundant code in my testing. Internally, it takes a generic TDataSource parameter which should be an interface containing the IDbSets ...
2
votes
1answer
80 views

When getting types from an assembly, is there a way to determine if type is an Anonymous Type?

I added an Anonymous type to my project: 'Put the courses from the XML file in an Anonymous Type Dim courses = From myCourse In xDoc.Descendants("Course") Select New With ...
1
vote
1answer
282 views

How to convert string to code in vb.net and to view static or public variables of main project [duplicate]

Possible Duplicate: How to expose current assembly to CodeProvider I wrote a code which converts a string from a textbox in vb.net like in this exemple: how to convert string to code in c# ...
0
votes
1answer
244 views

Using Expression.Call with Queryable.Select with a type known only at runtime

I am trying to select a column from an IEnumerable collection that has a type known only to me at runtime. The only way I can think of using this is using LINQ expressions to build a dynamic call to ...
0
votes
1answer
273 views

Vb.net Passing values to constructor of Type T

I have this code to get the default constructor: Public Function f(ByVal t As System.Type) As Object Return t.GetConstructor(New System.Type() {}).Invoke(New Object() {}) End Function I need to ...
1
vote
1answer
749 views

Setting ReadOnly Property in PropertyGrid Sets All Properties Readonly

I am using a PropertyGrid control to edit my class properties and I am trying to set certain properties read-only depending on other property settings. This is the code of my class: Imports ...
1
vote
3answers
134 views

Nullable(Of ) : type of parameter for <Attribute>. Does it work?

I'm trying to use the type Boolean for some parameter. <AttributeUsage(AttributeTargets.Method, Inherited:=True, AllowMultiple:=False)> Public Class MyAttribute Inherits Attribute ...
0
votes
2answers
352 views

retrieve internal member of an internal nested class by reflection

Ok, thanks to ILSpy, I know that the MenuItem class contains an internal class named MenuItemData, which contains itself an internal member named onDrawItem. Given a MenuItem, I want to retrieve the ...
0
votes
1answer
43 views

Is this possible to set Attributes in an Class Extension?

Is this possible to use <Attributes> on a method in a Class extension ? Here is a Class A Public Class Goblin Inherits Monster Enum goblinsRole Chief Grount End Enum Public ...
1
vote
1answer
98 views

How do I invoke a method on a class using attributes?

I want to invoke a method on a class that i have a reference to. The method that I want to call has a custom attributes. Currently I can find this attributes and call the property of my class ...
0
votes
1answer
96 views

Retrieve a property of a class as a collection

I'm working on a small project and got into some troubles trying to keep it OOP. I have a global variable: Public Stations As New Microsoft.VisualBasic.Collection() And 2 classess: Station & ...
0
votes
2answers
305 views

Modify Property Code At Runtime in VB.NET

Let say I have the following classes, Public Class Base Public Event PropertyChanged() Sub New() ..... End Sub End Class Public Class Other Inherits Base ...
0
votes
2answers
586 views

How can I get a property name for a type without the need to instantiate an object of that type?

I have a requirement where I need to have a "type safe" way of accessing property names, without actually instantiating an object to get to the property. To give an example, consider a method that ...
1
vote
4answers
233 views

How to add interfaces to a class programmatically (at runtime)

I am looking for a way to add an interface implementation to a class at runtime. Here is a sample code, which I will discuss below. Public Interface IAction Sub DoThis(a As Integer) End Interface ...
0
votes
2answers
261 views

How to convert datatable to corresponding “named” and “typed” IEnumerable for Intellisense

Possibly a dup but I tried googling and searching here before posting. Assume a 2 column table with columns Age (int) and EmpName (string) A datatable can be converted to IEnumerable by a simple ...
4
votes
1answer
371 views

Strongly Cast a Reflection .GetValue() Object to a Generic DbSet

I'm using EF 4.3.1 in VS 2010 (.Net 4.0) to load a number of reference tables from a database in order to bind them to controls in a WinForms app. At form load, I'm pre-fetching the data so that it's ...
1
vote
2answers
79 views

Code a button that changes the underlying code of your program

Setup: A form with a text box, a button, and a list box. The list box has ~10 values that are added to it when the form loads. I'm wondering if it is possible to write the code for the button so ...
1
vote
1answer
252 views

How do I get all class properties by type?

How can I get all the properties of a class that implement a specific base class or interface? I have a properties class that contains several other property classes. Some, not all, of these classes ...
2
votes
2answers
157 views

Design Pattern for TypeOf Subclass

I am working on a parser for a serial data protocol. I have an overarching Packet class, a couple sub-classes such as CommandPacket and StatusPacket, and then a few sub-classes of each of those: ...
0
votes
0answers
62 views

Access to a webForm properties, knowing the relative/abs path

It's possible do something like this Load an ASP.NET 2.0 aspx page using System.Reflection? But access to a public shared member (propertie) instead of create an instance of the the webForm ? I ...
3
votes
2answers
2k views

A good and complete tutorial about reflection in .NET?

the question almost says it all. I think all of you know about the visual studio designer, and how it can show any property of an object, regardless of its type, provided that the property is allowed ...

1 2 3 4 5