Advertisement

Results for "Author: tlwallace"

ASP_Volume2 #44223
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

ASP_Volume3 #62277
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

ASP_Volume3 #62278
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

C_Volume2 #85285
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

Java_Volume1 #103829
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

2_2002-2004 #130976
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

3_2004-2005 #149520
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

4_2005-2006 #167574
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

4_2005-2006 #167575
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

5_2007-2008 #190092
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

5_2007-2008 #190093
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

6_2008-2009 #212610
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

6_2008-2009 #212611
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

7_2009-2012 #235128
DataTreeView

Introduction At the time of this writing, the standard Windows Forms .NET TreeView control doesn't support the concept of databinding like the ASP.NET TreeView control. So, we are left writing our own solutions. This solution provides a standardized way to use databinding with the Windows Forms .NET TreeView control. This functionality will enable you to quickly develop user-friendly ways to create and view complex data information. It includes the Databinding as well as the following Design Patterns: Facade, Proxy, Singleton. It also includes custom 'Rule' classes to give the developer at design time the ability to derive primary key and foreign key data points. This is essential to adjusting the underlying Dataset when changes to the TreeView occur. Updates are also performed on a Asynchronous separate thread. The last item I'd like to mention is that this class does support two table DataSets, a Primary key table and a Foreign key table. Requirements The following were the initial requirements: Databind a DataSet to the TreeView and save results back to a Microsoft Access database. Design the solution to make it easy to reuse the class in different solutions. Encapsulate as much of the binding logic inside the custom solution and hide it from the UI developers. UI developers should have to write next to nothing for code to keep the TreeView in sync with the DataSet underneath it. Provide a sample for deleting nodes in the TreeView (via right click context menu) and have that deletion automatically reflected in the DataSet. Provide a sample for editing nodes in the TreeView (via right click context menu) and have the .Text property change automatically reflected in the DataSet. Provide a sample for inserting nodes in the TreeView (via right click context menu) and have the new node automatically reflected in the DataSet. Support drag and drop of TreeNode branches within the same TreeView and have the relationships automatically reflected in the DataSet. If the following columns are in the DataTable: Checked, ForeColor, BackColor, ImageIndex, or SelectedImageIndex, incorporate the following node properties when the TreeNode is created. If the any of these columns are missing, simply implement the default value for the TreeNode. Support drag and drop of TreeNode branches across multiple TreeView controls and have the relationships automatically reflected in the target DataSet as well as the source DataSet. Provide a sample for accepting and rejecting changes made to the same TreeView control giving the user the ability to undo their changes. Automatically commit changes to the source and target DataSet when a TreeNode branch is dropped on the target TreeView.

7_2009-2012 #235129
__!Appointments

Title: Appointments v1.0 Description: This is simply a calendar you can use, improve, and tailor to fit your particular uses. Its main feature is its ability to use xml as the data store. Store upcoming dates and appointments with it. Delete and view appointments. Some credit goes to Pedro Gonçalves and his article at: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=37874&lngWId=1 I used some example code and a few others that were useful to me. Enjoy.

Languages
Top Categories
Global Discovery