Posts

Showing posts with the label List Copy

Community of Practices and Software Release Planning

Image
Being inspired by Dr. Guenther Ruhe ( http://pages.cpsc.ucalgary.ca/~ruhe/ ), Software Engineering Decision Support Laboratoty, University of Calgary, I carried out this research. So, I am very thankful while working with him in Software Engineering Decision Support System and it’s elaborative research. Introduction: Software development arena has become more variant and competitive. People are exchanging their ideas in different kinds of internet forums and communities of practices. There is numerous open source software networks exist in this variant community and playing a vital role in the process of innovativeness and efficacy. Developers are also being helped to the greater extent by grabbing the ideas from these communities. Some industries are also paying interest to this growing community of practice. It will be effective if I could introduce a systematic process of building and managing these communities and thus helping this innovative approach to grow to a greater extent a...

Synchronizing SharePoint Lists Between Internal and External Sites

Image
I have created a sample program to synchronize SharePoint lists between two sites. There are many ways to accomplish this task: 1. SharePoint List Event Handler (ItemAdded, ItemUpdated, ItemDeleted etc.) 2. Custom WorkFlow to copy list items when modified 3. Windows Form to Push Data Manually 4. Windows Service to schedule the move on scheduled times Here is the sample for the 3rd Approach [Windows Form to Push Data Manually]: In this approach. Create a C# Class Library Project and Add a reference to Microsoft.SharePoint.DLL from 12 Hive. Create 2 XML Files [Feature.XML, Elements.XML] to intall the feature. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Xml; using System.Net; namespace AMIMoverByWebService { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnSync_Click( object sender, EventArgs ...