Archive for the ‘English’ Category

A Dropbox 0.7.110 security issue

Saturday, June 26, 2010 12:09 No Comments

Reading this Dropbox help page (see the ‘For our advanced users’ box) I discovered an interesting Dropbox feature: the cache. Dropbox will store a local cache of files, I suppose mainly for performance reasons. This means that if you delete a file, probably you will be able to recover it also offline.
This is cool, but [...]

This was posted under category: English, General software Tags: , , ,

svn2tfs project started

Wednesday, March 3, 2010 1:08 No Comments

A new project has just been published: svn2tfs. As the name suggests, its duty is to import SVN (SubVersion) repositories to TFS (Team Foundation Server) team projects. Currently the project is available on Codeplex and released under GPL license.

This was posted under category: English, svn2tfs Tags: , , , ,

Cancelling Window close in WPF

Thursday, November 27, 2008 12:25 No Comments

In this post we will avoid a window to be closed.
Forms in .NET 2.0 have the Closing event and this event has the e parameter of type ClosingEventArgs.
ClosingEventArgs has the Cancel property that if set to True will cancel the close procedure.
Visual Studio 2008 SP1 when used with a WPF project will generate an e [...]

This was posted under category: English, Windows Presentation Foundation