| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| Microsoft Support |
|
(816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for...
|
|
| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| Microsoft Support |
| (816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for... |
|
| "Can't create a child list" error message when you open a form in Visual Studio .NET |
| http://www.kbalertz.com/ |
| (816799) - When you delete the table that is bound to a control form of the DataSet Schema and then save the project in Microsoft Visual Studio .NET, you may receive the following error message when you open the form in Design view: Can't create a child list for... |
|
| .NET Data Persistence: SQL Server vs. Matisse vs. FastObjects |
| The Code Project |
| An article with source code examining the development speed and performance capability of .NET, Matisse and FastObjects |
|
| A Small Data Class |
| FLWS.com.au |
| This is a small code sample to demonstrate how simply you can create an array and use it as the DataSource for a ListBox control. More than that though, I'd like you to pay close attention to the small Class called ListData that serves as a Data Class. I saw a Class similar to this one used in an example on MSDN, and, because I can never find anything twice on MSDN, thought that I'd better document it here on ShowUsYourCode. |
|
| Advanced Checkbox Validation Across n-Pages for the DataGrid Control |
| DotNetJunkies |
| In this article, Oliver shows how to select up to two records from a datagrid that can then be compared to generate a PDF document on the fly. |
|
| An auto-resize C# Listbox (updated) |
| The Code Project |
| A listbox which will auto-resize its texts. |
|
| An Introduction to Mobile Programming in C# |
| C#Today |
| With the expansion of the web away from traditional browsers, current technology has brought the internet into mobile devices. Microsoft has constantly improved its support to such devices, and the introduction of the .NET framework has taken this support a step further. With .NET we can program for a mobile device as a normal web page and the Common Language Runtime and .NET framework will take care of rendering the data in the appropriate format, i.e. as HTML for browsers, as WML for mobile phones, etc. In this article Niranjan Kumar introduces us to programming for Mobile devices using C# and ASP.NET pages. This is illustrated with a Stock List application that accesses a SQL Server database and lists available stocks on either a Mobile device or HTML browser. |
|
| An RSS 2.0 Blog Reader Written In MyXaml |
| The Code Project |
| An RSS 2.0 Blog Reader Written in MyXaml |
|
| Ask the DotNetJunkies: Dynamically Populating An ASP.NET ListBox |
| DotNetJunkies |
| When dynamically populating a list box using listbox.items.add, asp.net generates the same string for the HTML tag OPTION's value and text. In the past, I would put a table key in the value while filling the HTML text with various information. What are methods for splitting the listbox attributes? The .net framework examples do not address this type of dynamic filling of the listbox. Thanks, Ken (your interview on MSDN was great) |
|
| Ask the DotNetJunkies: Performance Impacts of Server Controls |
| DotNetJunkies |
| If the validation controls or intrinsic controls post the page back to the server, will it not affect the performance of the pages because huge files have to go back and forth from the client to the server? |
|
| ASP.NET 2.0's Client Callback Feature |
| DotNetJunkies |
| One of the most overlooked features of ASP.NET 2.0, part of Visual Studio 2005 or "Whidbey", is the Client Callback feature. This feature allows you to programmatically call server-side methods through client-side JavaScript code without the need for posting back the page. This article describes how to use the Client Callback feature to implement your own callback scenario and introduces the new TreeView control that has this feature built in. |
|
| ASP.NET C# Disable/Enable ListItems |
| The Code Project |
| This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control. |
|
| ASP.NET C# Disable/Enable ListItems |
| The Code Project |
| This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control. |
|
| Basic Content Management System with ASP.NET and MS Access |
| The Code Project |
| A very basic web-based content management system using ASP.NET and MS Access |
|
| Building a Directory Listing Application |
| DotNetJunkies |
| In this article, Ljubomir shows you how to allow the user the ability to specify a folder for use later in a program. He explains two ways of building a Directory Listing application that lists all folders from a specific drive and its subfolders. |
|
| CleanUp Files using C# |
| The Code Project |
| This article is just a sample application which uses the .Net framework to delete unwanted files from the directories specified. The Sample uses the System.IO namespace to manage the task and uses a recursive function to delete files. |
|
| Client/Server-side ASP.NET Credit Card Validation Control |
| The Code Project |
| Article discussing new version of ASP.NET Credit Card Validator, including both server and client-side checks and VS.NET designer support. |
|
| Client/Server-side ASP.NET Credit Card Validation Control |
| The Code Project |
| Article discussing new version of ASP.NET Credit Card Validator, including both server and client-side checks and VS.NET designer support. |
|
| CodeSnip: XML Form Generator, Part 1: Generating an XML Form |
| http://aspalliance.com/ |
| One of the most frequent tasks that web developers receive is that of creating a form to collect user input. One solution is to use an ASP.NET web page to create an XML file that will be used as the basis for a Web form. The three part article, XML Form Generator, will demonstrate how to easily create an XML form that will save user input as an XML file. |
|
| ColdStorage Advertising Service Development |
| MSDN |
| This article describes some of the issues faced and lessons learned in the development of the ColdStorage sample Advertising Service. |
|
| Color Dialog ListBox/ComboBox |
| GotDotNet |
| This application shows a way to view (in ListBox/ComboBox) all of the named colors specified in the KnownColor enumeration. Author: Vladimir Olifer, e-mail: vOlifer@si.rr.com |
|
| ColorComboBox |
| The Code Project |
| Selecting colors with a combo box. |
|
| Coloring items in a ListBox |
| The Code Project |
| This article describes the "bug/feature" in the ASP.NET ListBox. |
|
| Creating a custom DataGridColumnStyle in C# |
| C#Today |
| The .NET framework provides many unique controls like the DataGrid, which is a data bound list control that displays the items from a data source in a table. The DataGrid is the most powerful and flexible control in the .NET toolbox. In this article, Chad DePue takes a look at one aspect of the DataGrids flexibility, by creating a custom column. The DataGrid provides two types of columns for free, the DataGridTextBoxColumn and the DataGridBoolColumn, but there are many types of data that wont fit into either of these two column types. In the example given, we want to search a directory for icon (.ICO) files and display each icon as a row in the DataGrid. Neither of the existing column styles will do this for us, so we create our own. |
|