Click here to Skip to main content
15,885,936 members
Everything / Visual Studio / Visual Studio .NET 2003

Visual Studio .NET 2003

VS.NET2003

Great Reads

by Martin Welker
To get qualified access to paper based information, sometimes more than plain OCR is needed. This article shows why, and offers a solution to increase OCR quality by semi-automatic table extraction.
by Michael Dunn
A tutorial on writing a shell extension that can be used on the Send To menu.
by Michael Dunn
A tutorial on using owner-drawn menus in a context menu shell extensions, and on making a context menu extension that responds to a right-click in a directory background.
by Jecho Jekov
Provides an easy way to use C calling convention callback functions in C# and VB

Latest Articles

by Alen M
This article focuses on callout development for MS CRM 3.0. As an example Turkish Citizen Number Validator code is written.
by Chris Stefano
A custom tool for Visual Studio .NET which runs an XSL transformation to generate code
by Eric P Schneider
Basic demo on how to serialize and deserialize custom collections
by Emre Guldogan
A System for Simulation and Analysis of Logic Circuits

All Articles

Sort by Score

Visual Studio .NET 2003 

16 Feb 2011 by jim lahey
Or you could just pop over to:http://www.connectionstrings.com/[^]Use the exhaustive samples they provide and not hard code your connection strings by using a standard .NET configuration file:http://msdn.microsoft.com/en-us/library/1xtk877y.aspx[^]
11 Sep 2016 by Avatar2400
This is a simple class that allows you to have message box with checkbox and other small features.
20 Sep 2012 by Sreedhar Puligundla
Simple steps to create SQL joins by using SQL Server 2008 Management Studio
17 Feb 2011 by dontumindit
While dealing with databases, sometimes there is a need to get a list of tables in the application
3 Mar 2011 by crocks256
The ConnectionStringBuilder classes in .NET can be quite handy...http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx[^].
1 Aug 2014 by B. Clay Shannon
Sending commands in a Compact Framework app via C# to a Zebra QLn220 printer
12 Sep 2014 by Alex Puchades
In this tip, XEndian, a header-only library will be presented
14 Feb 2011 by FZelle
You are both wrong with the DataAdapter.Why do you think there is an overload with the querystring and the connectionstring?public DataSet select_query(string query, string con_str){ try { using (SqlDataAdapter da = new SqlDataAdapter(query,con_str)) { ...
14 Feb 2011 by woric
The sample code provided by Andrew Rissing is a huge improvement over the original, but incorrectly catches the exception and displays a MessageBox. (Andrew correctly points out this is not a good idea.)A better solution is to allow the exception to fail:public DataSet...
30 Apr 2012 by Constantin Chumak
This is an alternative for "Locate SQL Server instances on the local network"
27 Sep 2013 by dontumindit
Communication with database in .NET is easy but sometimes one gets stuck by wrong format of connection string
14 Feb 2011 by Andrew Rissing
The following samples should take advantage of using statements and furthermore built in features of the ADO.NET framework. Furthermore, if you open a connection, make sure you open it at the latest time possible and close it as soon as possible.Edit: While I was originally not trying to...
10 Mar 2017 by Southmountain
Gems for typedef and namespace in C
5 Sep 2015 by Thinira
In this tip, we will discuss how to setup Angular 2.0 in Visual Studio and write a very basic “Todo” application.
23 Feb 2011 by PrimeCoder
Nice,How about adding a couple of other methodspublic static void Parameter(IDbCommand command, string naam, object value){ IDbDataParameter par = command.CreateParameter(); par.ParameterName = naam; par.Value = value ?? DBNull.Value; ...
3 Sep 2014 by milkboy31415
This code transforms rotations and vectors between reference frames such as Unreal, 3d Studio Max, etc.
1 Feb 2004 by Sebastian Sosna
A simple program which lets you browse containers of your Active Directory
14 Apr 2014 by Mack Ait-Aoudia
This article describe a solution to prevent some browser's functionnalities
7 Jun 2013 by FatzBomb
How to convert a written number to a numerical value anywhere in a string.
1 Mar 2011 by bipin9
goto Server Explorer right Click on DataBase Click on properties in properties window you will get Connection String copy it & use where you want use !!
24 Jul 2013 by Norbert Eder
The article includes a sample project showing how to save the nodes of a TreeView into an XML file.
5 Jan 2014 by Leon van Wyk
Send faxes with C# using Win 2k or XP
29 Apr 2011 by dontumindit
An Easy Way To Query a Database
19 Sep 2013 by alifaraze
writing error in a text file is very easy but writing error from a custom assembly in reporting services requires permissions
3 Mar 2011 by MikkelAndersen
I get it from the web.config via ConfigurationManager.ConnectionStrings;This makes it possible to keep all connectionstring settings in the web.config file.For example: http://www.dreamincode.net/code/snippet1676.htm[^].