Tag Archives: VB.NET

Article: Understanding Delegates using Visual Basic.NET 2005

  All,   My new article on "Delegates using Visual Basic 2005" got published here http://www.aspfree.com/c/a/VB.NET/Understanding-Delegates-using-Visual-BasicNET-2005/   It explains delegates in a simplest fashion.  If you are new to eventing in Visual Basic, make sure that you complete this http://www.aspfree.com/c/a/VB.NET/Understanding-Custom-Events-using-Visual-Basic-NET-2005/ beforeContinue reading

Posted in VB.NET | Tagged | Leave a comment

Developing Object Oriented Components using WCF and Visual Studio 2008 beta

Hai,   My next contribution on "Developing an Object Oriented Business Component using WCF and Visual Studio 2008" got published here: http://www.aspfree.com/c/a/BrainDump/Developing-an-Object-Oriented-Business-Component-Using-WCF-and-Visual-Studio-2008/   thanks Jag

Posted in WCF | Tagged , | 25 Comments

Article: Understanding Event-Driven programming using Visual Basic.NET 2005

Hai,   My new article on "Understanding Custom Events using Visual Basic.NET 2005" got published here http://www.aspfree.com/c/a/VB.NET/Understanding-Custom-Events-using-Visual-Basic-NET-2005/    enjoy and let me know the feedback…   thanks Jag

Posted in VB.NET | Tagged | 12 Comments

Article: Polymorphism using Abstract Classes in Visual Basic.NET 2005

Hello guys,   This is my new article focusing on abstract classes in Visual Basic 2005.  It also discusses on achieving polymorphism when using Abstract Classes in Visual Basic 2005.  The article is here http://www.aspfree.com/c/a/VB.NET/Polymorphism-using-Abstract-Classes-in-Visual-Basic-NET-2005/   Enjoy and give me the … Continue reading

Posted in VB.NET | Tagged | 8 Comments

Article: Understanding “Shadows” in Visual Basic.NET 2005

Hello guys,   My new article on working with "Shadows" keyword in Visual Basic 2005 got published here http://www.aspfree.com/c/a/VB.NET/Shadowing-using-Shadows-in-Visual-Basic-NET-2005/   enjoy and let me know the feedback.   thanks Jag

Posted in VB.NET | Tagged | 14 Comments

Article: Overloading and Overriding in Visual Basic 2005

Hello,   My article on "Overloading and Overriding in Visual Basic 2005" got published here http://www.aspfree.com/c/a/VB.NET/Overloading-and-Overriding-in-Visual-Basic-NET-2005/   Enjoy…   thanks Jag 

Posted in VB.NET | Tagged | 12 Comments

TIP: Executing Anoynymous Transact-SQL blocks from .NET

Following is the sample code which executes a Transact-SQL anonymous block dynamically using .NET:   Public Shared Function GetValueFromAnoymousBlock() As String     Dim s As String     s = "DECLARE @x int" & ControlChars.NewLine     s &= "DECLARE @y int" … Continue reading

Posted in VB.NET | Tagged , | Leave a comment

TIP: Copying rows from a DataView to a new DataTable

In an ASP.NET app, I had a need to copy the data from a DataView to a DataTable for additional manipulation of the rows (without effecting the original table that the DataView was created on). Came across this:   C# … Continue reading

Posted in VB.NET | Tagged , | Leave a comment

OOP based database application development in VB.NET 2005

Hello,   My new contribution on developing database applications with respect to OOP in VB.NET 2005 got published here http://www.aspfree.com/c/a/VB.NET/Implementing-OOP-to-Develop-Database-Oriented-Applications-using-VBNET-2005/   Enjoy and let me know the feedback. thanks Jag

Posted in VB.NET | Tagged | Leave a comment

Parsing and transforming XML documents using Visual Basic.NET 2005

Hello guys,   My article on parsing and transforming XML document using Visual Basic 2005 got published at http://www.aspfree.com/c/a/VB.NET/Reading-and-Transforming-XML-Documents-using-Visual-Basic-2005/   Enjoy..   thanks Jag

Posted in VB.NET | Tagged | 12 Comments