| A Designable PropertyTree for VS.NET |
| The Code Project |
| Ever since I first started programming with OWL back in 1995, I've written this type of control each time I learn a new language in which to program GUIs. I wrote one in OWL (Borland's MFC-like library), in straight C, and Java 2's Swing, among others. I've always called them 'PropertyTree's - mostly because the first place I saw them implemented was in Netscape's Edit | Properties dialog box. |
|
| A Tree Collection |
| The Code Project |
| An implementation of a Tree Collection in C#. |
|
| 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 Developer's Cookbook Chapter 3: Custom Controls |
| The Code Project |
| The most common techniques in building custom controls in ASP.NET. |
|
| ASP.NET Server Controls: Treeview |
| Egg Head Cafe |
| Microsoft has also released ASP.NET Server Control versions of the most popular IE controls, namely Treeview, TabStrip, ToolBar and MultiPage. These are all fully .NET compliant server-side controls. They are also, however, "Browser aware", and if the browser is "uplevel" (IE 5.5 or higher) the associated Client-side HTC behavior for each control is automatically downloaded with the page. |
|
| 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. |
|
| C# List View v1.3 |
| The Code Project |
| A fully featured completely managed C# ListView. |
|
| Classic ASP Framework 2.0 (CLASP) |
| GotDotNet |
| Work in Classic ASP using the same technics found in ASP.NET. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET!. It includes all your favorite controls (TextBoxes, RadioLists,CheckBoxes,DropDowns,DataGrids,DataList,Repeaters, RichTextBox, LinkButtons,ImageButtons,Pagers,Menu, TreeView,Panels, Graph, and much more!) Download the code here or always the latest version at: http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=69b08b15-d456-4cf9-8b12-d4642ef0c22e Samples site at: http://clasp.csharpjunkie.com/buttons.asp |
|
| Client Side File System Browser using a Web Control TreeView |
| GotDotNet |
| There are two files that are included in the ZIP file. I am using Visual Studio.NET 2000 Framework 1.1 What does this do? Not to long ago I was given a challenge. To use a TreeView (WebControl) to list all drives on a users file system. When a drive was selected list all sub files and folders. All folders have a checkbox next to them. When a user clicks on a checkbox next to a file that file's full path is appended to a hidden textbox on the form Well this sounds easier then it is. All of the code for expanding and collapsing the tree nodes is client side. This will also give an example of how to keep the position of a child node. I hope that someone finds use with this as I learned alot from creating it. Thank you for reading this and please feel free to post any comments or suggestions that you may have. Please also note I included just the .ASPX & CS files in the ZIP. William O'Malley |
|
| ColdStorage Sample Development Overview |
| MSDN |
| This article provides an overview of the development of the components included with the ColdStorage sample, including two Web services and a rich client application. |
|
| ColdStorage Service Design Overview |
| MSDN |
| This article describes the application architecture of the XML Web services included in the ColdStorage sample service. |
|
| ComboBoxTree |
| The Code Project |
| A treeview control that drops down much like a combobox. |
|
| CONTROLS: Plan Your Migration to the Visual Studio 2005 Navigation Controls |
| MSDN |
| The SiteMapDataSource and SiteMapPath controls, the TreeView control, and more! |
|
| Creating a Regular Expression Checker |
| devCity.NET |
| This article will attempt to explain the steps involved with creating a WinForm application that will validate regular expressions using the System.Text.RegularExpression namespace. The application will accept two inputs. The first input will be a string to search. The second input will be the regular expression that serves as our search criteria. |
|
| Cutting Edge: Script Callbacks in ASP.NET |
| MSDN |
| Solve your problems with scripting behind the scenes |
|
| Data Access in ASP.NET 2.0 |
| MSDN |
| Leverage the new ASP.NET 2.0 data access controls to reduce the code you have to write when developing a data-driven Web application. |
|
| Data Binding TreeView in C# |
| The Code Project |
| C# implementation of data binding TreeView. |
|
| DATA More Load, Less Code with the Data Enhancements of ASP.NET 2.0 |
| MSDN |
| Data Enhancements of ASP.NET 2.0 |
|
| datTreeView |
| GotDotNet |
| MultiSelect TreeView Descendent - V1 With Sample Project |
|
| Design Patterns Implementation in a Storage Explorer Application |
| The Code Project |
| A design patterns approach for designing and explaining a Storage Explorer application. The application is used to explore file composition in a computer storage. |
|
| Designing an Extensible DAL |
| DotNetJunkies |
| Filip walks you through how to design an extensible DAL. |
|
| Designing Resizable Windows Forms in Visual Studio .NET |
| The Code Project |
| Designing resizable forms in managed VS7 Windows applications is very simple - we don't need a layout manager, just use |
|
| Developing Custom Windows Controls Using Visual Basic .NET |
| MSDN |
| An overview of associated sample articles illustrating the basic concepts of Microsoft Windows control development through both discussion and code snippets. |
|
| Directory Picker in C# |
| C# Corner |
| This article illustrates the use of a treeview in a directory tree user control. You can use this control to visually select files or directories from any file structure on your computer system. |
|
| Drag and Drop Revisited |
| C# Corner |
| I've had a couple inquiries on how to do drag and drop in .NET again, so I've put together a simple app for dragging text from a TreeView to a TreeView and a TreeView to a ListBox. |
|