Search This Blog

29 August, 2011

auto increment option not working in excel 2007

Unable to drag cell corner to auto increment in excel 2007

To enabled the auto increment feature in the excel sheet, enable the check mark in the

Excel Options -> Advanced

Enable fill handle and cell drag-and-drop 



06 August, 2011

How to check-out a particular version of code from svn?

There are different ways you can achieve it, below are the different ways

svn checkout svn+ssh://<ipaddress>/Project/trunk@<revision number>

example: 
1) svn checkout svn+ssh://192..168.1.10/project/trunk@1978
2) svn checkout -r 1978  svn+ssh://192..168.1.10/project/trunk

tmux enabling mouse interaction

Add the below line to the ~/.tmux.conf setw -g mouse on save the file and exit from the tmux shell, you should be able to use your mouse to ...