Blue Theme Orange Theme Green Theme Red Theme
 
Mindcracker MVP Summit 2012
Home | Forums | Videos | Photos | Blogs | Beginners | Advertise with Us
 | Consulting  
Submit an Article Submit a Blog 
 Jump to
Skip Navigation Links
TechnologyExpand Technology
WebsiteExpand Website
Mindcracker MVP Summit 2012
Search :       Advanced Search »
Home » Top Articles
Top Articles
 Top Articles  
Sorted by:  
Working with Strings in VB.NET by Mahesh Chand on Apr 21, 2003
This tutorial explains how to represent strings in .NET using VB.NET and how to work with them with the help of .NET class library classes.
Total View:- 584853 Total Download:- 654
Displaying data in a DataGrid in VB.NET by Mahesh Chand on May 07, 2004
This article explains you how easy is reading a database and Displaying data in a DataGrid using DataSet.
Total View:- 567698 Total Download:- 3540
Creating an Excel Spreadsheet programmatically using VB.NET by G Gnana Arun Ganesh on Jun 10, 2003
The Interoperability services make it very easy to work with COM Capable Applications such as Word and Excel. This article reveals using Excel from a managed application. Excel is the spreadsheet component of Microsoft Office 2000. The majority of Excel programmatic functionality is exposed through Automation via the type library Excel9.olb. The intention of this article is to express that a managed application can interrelate with Excel as a COM server.
Total View:- 415242 Total Download:- 5029
Exception Handling in VB.NET by Rajesh VS on Jun 10, 2003
Exception handling is an in built mechanism in .NET framework to detect and handle run time errors. The .NET framework contains lots of standard exceptions. The exceptions are anomalies that occur during the execution of a program. They can be because of user, logic or system errors.
Total View:- 368659 Total Download:- NA
Creating a SQL Server database programmatically using VB.NET by Mahesh Chand on Jul 20, 2003
In this application, I’ll create a SQL Server database, create a database table, add data to it, create database objects such as views, stored procedures, rules, and index and view data in the data grid using Sql data provider.
Total View:- 350688 Total Download:- NA
Understanding Properties in VB.NET by Rajesh VS on Jun 13, 2003
In VB.NET, properties are nothing but natural extension of data fields. They are usually known as ‘smart fields’ in VB.NET community. We know that data encapsulation and hiding are the two fundamental characteristics of any object oriented programming language.
Total View:- 322794 Total Download:- NA
Working with Timer Control in VB.NET by Mahesh Chand on Jun 24, 2003
The Timer control allows you to set a time interval to execute an event after that interval continuously. It is useful when you want to execute certain applications after a certain interval.
Total View:- 319129 Total Download:- 1971
How do I open a URL in a new Browser Window in ASP.NET? by Mahesh Chand on Sep 04, 2006
This quick tip shows you how to open a URL in a new Browser Window in ASP.NET.
Total View:- 291440 Total Download:- NA
Creating and opening Microsoft Word document from VB.NET by Mike Gold on Jul 10, 2003
This article is being written in response to a couple inquiries on the question, "How do I open a word document from .NET?". I guess after people read my excel article, they were under the impression that I knew how to do this in Word. Luckily, after some hunting around on the forums and feedback from other C# Corner members I got the gist of it.
Total View:- 269356 Total Download:- 3754
Printing in VB.NET by Mike Gold on Jun 25, 2003
This article explains about Printing in VB.NET.Printing is all carried out through components included in the toolbox. The main component that talks to the printer is the PrintDocument component.
Total View:- 250993 Total Download:- 5576
Multi Column ListView Control in VB.NET by Mahesh Chand on May 10, 2004
There are many questions about adding multiple columns to a ListView control. Some times its hard for beginners to find even small clues like ListView multi column won't work until you set its View property as Details.
Total View:- 232804 Total Download:- 1880
How to run Crystal Report using Crystal Report Viewer in VS.NET 2005? by Sushmita Kumari on Jan 24, 2006
This example is developed using Visual Studio 2005 and shows how to use Crystal Report Viewer in your applications to generate reports.
Total View:- 231419 Total Download:- 2859
Active Directory in VB.NET by Erika Ehrli on Jun 22, 2005
Microsoft Technet offers a script repository to work with Active Directory User Accounts; however,you needed to work with .NET and you could not find samples for all the tasks.I promised to myself that one day I would publish the code samples I found and created to help other developers who are working with Directory Services.
Total View:- 203156 Total Download:- 2084
Active Directory in VB.NET by Erika Ehrli on Jun 22, 2005
Microsoft Technet offers a script repository to work with Active Directory User Accounts; however,you needed to work with .NET and you could not find samples for all the tasks.I promised to myself that one day I would publish the code samples I found and created to help other developers who are working with Directory Services.
Total View:- 203156 Total Download:- 1490
Save an Image to SQL Server by Scott Lysle on Nov 27, 2006
This article describes an easy approach to saving an image file into an SQL Server 2000 database table as an SQL Server image data type.
Total View:- 202866 Total Download:- 4498
Browse or Open a File using VB.Net by Praveen Kumar on Nov 16, 2004
This tutorial explain how to Browse or Open a File by using OpenFileDialog Class.
Total View:- 196711 Total Download:- NA
ASP.NET Datepicker and Calendar Control by Liam McLennan on Dec 06, 2006
When developing enterprise ASP.NET applications it is common to require the input of dates. This article presents a hybrid textbox / calendar control for user input of dates.
Total View:- 195041 Total Download:- NA
Working with ProgressBar in VB.NET by Mahesh Chand on Jun 24, 2003
The Progressbar class provides progress bar control functionality in the .NET framework. You need progress bars to display the progress of your application or background tasks.
Total View:- 190880 Total Download:- 2117
XML Programming using VB.NET: Part 1 by Mahesh Chand on Apr 04, 2003
This article explains about the XML Prograaming using VB.NET. In this article we will explore XML classes and namespaces of .NET Framework Class Library and how to use them in VB.NET to read, write and navigate XML documents.
Total View:- 189323 Total Download:- NA
Understanding Structures in VB.NET by Rajesh VS on Jun 13, 2003
A structure in VB.NET is simply a composite data type consisting of a number elements of other types. A VB.NET structure is a value type and the instances or objects of a structure are created in stack.
Total View:- 184393 Total Download:- NA
Reading XML Files in VB.NET by Mahesh Chand on Jul 01, 2003
In this article, I will show you how to use XmlTextReader class to read an XML document and write data to the console.
Total View:- 181729 Total Download:- 1737
Reading XML Files using XmlDocument in VB.NET by Bulent Ozkir on Jul 01, 2003
In this article, I will show you how to read XML files in VB.NET using XmlDocument class and its members.
Total View:- 174921 Total Download:- 1293
A Simple Web Service in VB.NET by Manisha Mehta on Apr 26, 2005
This article and attached source code will demonstrate you how simple it is to create a web service and how the clients consume the web service provided by the .NET Environment.
Total View:- 170799 Total Download:- 2858
Creating and using Namespaces in VB.NET and C# by Srinivasa Sivkumar on Jun 11, 2003
We all know namespaces are the basic building block for the .NET framework. In this article, I'm going to show how to create and use namespaces with VB.NET and C#.
Total View:- 159836 Total Download:- NA
Add a Google Map to a VB Desktop Application by Scott Lysle on Mar 20, 2007
This project demonstrates a quick and easy way to add mapping to a windows desktop application (with an available internet connection) using Google Maps as the basis and source for the map.
Total View:- 155214 Total Download:- 6601
 1 - 25 of 100 1234
Discover the top 5 tips for understanding .NET Interop
Team Foundation Server Hosting
 © 2012  contents copyright of their authors. Rest everything copyright Mindcracker. All rights reserved.