Click here to Skip to main content
15,892,005 members
Articles / Web Development / HTML

Synchronicity - A Folder Synchronizing Application

Rate me:
Please Sign up or sign in to vote.
4.90/5 (29 votes)
7 Feb 2011CPOL25 min read 76.7K   3.5K   106  
Windows service for synchronizing folders
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace SynchroConsole
{
	public partial class FormAddSyncItem :Form
	{
		//--------------------------------------------------------------------------------
		public FormAddSyncItem()
		{
			InitializeComponent();
		}

		//--------------------------------------------------------------------------------
		private void buttonBrowseFrom_Click(object sender, EventArgs e)
		{

		}

		//--------------------------------------------------------------------------------
		private void buttonBrowseTo_Click(object sender, EventArgs e)
		{

		}

		//--------------------------------------------------------------------------------
		private void buttonOK_Click(object sender, EventArgs e)
		{
			this.DialogResult = DialogResult.OK;
			this.Close();
		}

		//--------------------------------------------------------------------------------
		private void buttonCancel_Click(object sender, EventArgs e)
		{
			this.DialogResult = DialogResult.Cancel;
			this.Close();
		}

		//--------------------------------------------------------------------------------
		private void checkBox1_CheckedChanged(object sender, EventArgs e)
		{

		}

		//--------------------------------------------------------------------------------
		private void buttonBrowseBackup_Click(object sender, EventArgs e)
		{

		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions