Thursday, January 27, 2005

The Build Process with NAnt - Part 4: The Deploy File

The Build Process with NAnt - Part 4: The Deploy File

Checkout Reports from VSS

Checkout Reports from VSS

Versioning with CruiseControl.Net

Versioning with CruiseControl.Net

Urban Potato - System.ComponentModel

Urban Potato - System.ComponentModel

How does the Windows Forms designer in Visual Studio load a Form?

How does the Windows Forms designer in Visual Studio load a Form?

David Hill's WebLog - Smart Clients For Smart Users - Smart Clients

David Hill's WebLog - Smart Clients For Smart Users - Smart Clients

.NET Tools Blog - Database & Co.

.NET Tools Blog - Database & Co.

Nickel and Dime Content Management System (ndCMS)

Nickel and Dime Content Management System (ndCMS)

.net projects

.net projects

C# 101 - Representing a double quote in string literals

C# 101 - Representing a double quote in string literals

UI Design is hard...

UI Design is hard...

GUI Programming is Hard

GUI Programming is Hard

UI Design

UI Design

The Trademark Blog

The Trademark Blog

Out of Cheese: March 07, 2004 Archives

Out of Cheese: March 07, 2004 Archives

Fredrik Norm�n's blog - NSQUARED2

Fredrik Norm�n's blog - NSQUARED2

Open Source Software in C#

Open Source Software in C#

The Netlib

The Netlib

Programming Texts/Tutorials

Programming Texts/Tutorials

Java for Scientific Computing

Java for Scientific Computing

Linux Software Encyclopedia

Linux Software Encyclopedia

Free C/C Sources for Numerical Computation

Free C/C Sources for Numerical Computation

Mathematics, Statistics and Computational Science at NIST

Mathematics, Statistics and Computational Science at NIST

Stupid Coding Tricks

Stupid Coding Tricks

Java Numerics: Main

Java Numerics: Main

NIST Course on C Programming for Scientists

NIST Course on C Programming for Scientists

The Object-Oriented Numerics Page

The Object-Oriented Numerics Page

Tuesday, January 25, 2005

Bay Area Bioinformatics

Bay Area Bioinformatics

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

Bay Area Bioinformatics

Bay Area Bioinformatics

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

.NET 247 : Can anyone tell how I do batch update to the database with SqlDataAdapter and Dataset on microsoft.public.dotnet.languages.csharp

.NET 247 : Can anyone tell how I do batch update to the database with SqlDataAdapter and Dataset on microsoft.public.dotnet.languages.csharp

Client/Server Bioinformatics/LIMS Data System and Data Mining Products, Design, Development and Consulting

Client/Server Bioinformatics/LIMS Data System and Data Mining Products, Design, Development and Consulting

Bay Area Bioinformatics

Bay Area Bioinformatics

Bay Area Bioinformatics

Bay Area Bioinformatics

Client/Server Bioinformatics/LIMS Data System and Data Mining Products, Design, Development and Consulting

Client/Server Bioinformatics/LIMS Data System and Data Mining Products, Design, Development and Consulting

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

The Code Project - A Practical Guide to .NET DataTables, DataSets and DataGrids - Part 3 - C# Programming

John Wood's Blog: Shortcomings of the DataSet

John Wood's Blog: Shortcomings of the DataSet

Consume Dataset from Webservice - Exceptions, Errors, Bugs

Consume Dataset from Webservice - Exceptions, Errors, Bugs

A .Net Architecture, Design & Development Journal: The Byrd Data Model - Part 2

A .Net Architecture, Design & Development Journal: The Byrd Data Model - Part 2

PBS | I, Cringely . Archived Column

PBS | I, Cringely . Archived Column

.NET Technical Information

.NET Technical Information

A Comparative Overview of C#

A Comparative Overview of C#

C# CribSheet

C# CribSheet

Data access in .Net

Data access in .Net

5b-Database Updates for Windows Applications-Coding Data Provider Objects and Untyped DataSets

5b-Database Updates for Windows Applications-Coding Data Provider Objects and Untyped DataSets

Threading in a .NET windows form

Threading in a .NET windows form

Building a .net library

Building a .net library

Passing data in and out of web services using (typed) xml (-datasets)

Passing data in and out of web services using (typed) xml (-datasets)

MSDE Links

Articles - Microsoft SQL Server 2000 Database

Articles - Microsoft SQL Server 2000 Database

CELC - Links

CELC - Links

tobinharris.com - .NET and Misc Tools

tobinharris.com - .NET and Misc Tools

tobinharris.com - .NET and Misc Tools

tobinharris.com - .NET and Misc Tools

.NET 247 : The file cannot be copied to the run directory on microsoft.public.dotnet.framework.aspnet

.NET 247 : The file cannot be copied to the run directory on microsoft.public.dotnet.framework.aspnet

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

Desktop Engineers Junk Drawer - Handy Odds N Ends for Windows 98, NT & 2000

The Code Project - A Guide To Writing Articles For Code Project - The Scrapbook

The Code Project - A Guide To Writing Articles For Code Project - The Scrapbook

Brad Abrams - Design Guidelines

Brad Abrams - Design Guidelines

BlackBytes .NET Components DNS Security Registry Whois Network Time Zone Converter

BlackBytes .NET Components DNS Security Registry Whois Network Time Zone Converter

TimeZoneInformation Class

TimeZoneInformation Class

VBForums.com - CodeBank - C#

VBForums.com - CodeBank - C#

VBForums.com - C# - Clear a container of controls quickly.

VBForums.com - C# - Clear a container of controls quickly.: "public void ClearControlValues(System.Windows.Forms.Control Container)
{
try
{
foreach(Control ctrl in Container.Controls)
{
if(ctrl.GetType() == typeof(TextBox))
((TextBox)ctrl).Text = '';
if(ctrl.GetType() == typeof(ComboBox))
((ComboBox)ctrl).SelectedIndex = -1;
if(ctrl.GetType() == typeof(CheckBox))
((CheckBox)ctrl).Checked = false;
if(ctrl.GetType() == typeof(Label))
((Label)ctrl).Text = '';
if(ctrl.GetType() == typeof(DateTimePicker))
((DateTimePicker)ctrl).Text = '';

if(ctrl.Controls.Count>0)
ClearControlValues(ctrl);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.ToString());
}
}"

punkcoder: Clearable DateTimePicker

punkcoder: Clearable DateTimePicker

punkcoder: Clearable DateTimePicker

punkcoder: Clearable DateTimePicker

punkcoder: Clearable DateTimePicker

punkcoder: Clearable DateTimePicker