Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

 

Dynamically setting an event handler for a class' event via reflection
Total Hit (2742) Here it is some code that shows how to use reflection to dynamically set an event handler for a class' event. «Code LangId=2» Sub TestSub() ' create a Person Dim pe As New Person() ' get a reference to the EventInfo for this object Dim peEv As EventInfo = pe.GetType.GetEv ....Read More
Rating
Implementing IClonable - Shallow copies
Total Hit (2526) An object that want to support cloning should implement the ICloneable interface. This interface exposes only one method, Clone, which returns a copy of the object. The ICloneable specifics don't specify whether the object that the Clone method returns is a shallow copy or a deep copy. The differenc ....Read More
Rating
Implementing ICloneable - Deep copies
Total Hit (3351) The simplest way to create a generic deep copy routine, that is a procedure that can create a true, distinct copy of an object and all its dependent object, is to rely on the serialization features of the .NET framework. «Code LangId=2» Function CloneObject(ByVal obj As Object) As Object ' ....Read More
Rating
Set up event handlers through reflection
Total Hit (2521) Reflection makes it easy to invoke a method (or assign a field or a property) by its name. For example, suppose you have the following classes: «Code LangId=2» Class Person Event PropertyChanged(ByVal propertyName As String, ByVal newValue As Object) Dim m_Name As String Property ....Read More
Rating
A command-line Object Browser that uses Reflection
Total Hit (3317)
Rating
AddRemoveEventHandler - Add or remove an event handler through reflection
Total Hit (2302)
Rating
CloneObject - cloning an object by serializing it to a memory stream
Total Hit (2540)
Rating
FilterByName - filtering by name the results of Type.FindMembers
Total Hit (2845)
Rating
FilterByType - filtering the results of Type.FindMembers by thier return type
Total Hit (3378)
Rating
FilterByType - filtering the results of Type.FindMembers by thier return type
Total Hit (2944)
Rating
GetField - Retrieving the value of a public field via reflection
Total Hit (2779)
Rating
InvokeMethod - Invoking a method via reflection
Total Hit (2673)
Rating
IsMemberSupported - Check whether an object supports a member with the specified name
Total Hit (2103)
Rating
LoadBinaryData - Deserializing an object from a file in binary format
Total Hit (2449)
Rating
LoadSoapData - deserializing an object from a file in SOAP format
Total Hit (2545)
Rating
SaveBinaryData - Serializing an object to file in binary format
Total Hit (3321)
Rating
SaveSoapData - serializing an object to file in SOAP format
Total Hit (2546)
Rating
SetProperty - Setting a property via reflection
Total Hit (3036)
Rating
Object Oriented features in VB.net (Part-1)
Total Hit (5960) In this article we will discuss about Object Oriented Features available in VB.net Let’s first understand the basic terminology used in Object Oriented Programming. «big»Classes, Objects, Members and Abstraction«/big» An object in programming is a construct that represents something from th ....Read More
Rating
Object Oriented features in VB.net (Part-2)
Total Hit (10883) In the previous article we discussed the basic concepts of Object Oriented Programming. Now let's implement all this in our favorite language - VB.net. «big»Creating Classes in VB.net«/big» As we discussed earlier, objects are instances of a specific template – called a Class. A "Class" contai ....Read More
Rating
Object Oriented features in VB.net (Part-3)
Total Hit (8557) «big»Inheritance«/big» Now that VB.Net supports many object oriented features, lets discuss about Inheritance. Inheritance is the cornerstone of Object Oriented programming. VB.net supports inheritance and I am sure VB6 programmers will welcome this step. Inheritance gives us an ability to define ....Read More
Rating
Working with DateTime and TimeSpan Object in VB.net
Total Hit (34696) In this article we will explore some key language features which are frequently used by VB programmers. «big»DateTimes in VB.net«/big» VB.net provides many new features for DateTime datatype. Unlike VB6 in VB.net you can initialize DateTime variable with verity of initial values. In VB.net you ....Read More
Rating


Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.