Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

Thursday, April 28, 2011

Web Platform Installer

 

Web platform Installer is a free tool from Microsoft, which will help you to find what are the latest you have to install and available in market.

If you want to download click here

Tuesday, July 6, 2010

How to get the deleted file in Windows

 

Last day i deleted one file from my pc.i recovered the file by using Restoration Version 2.5.14 and i successfully recovered the file. Following are the steps i used to recover the deleted files.

I am using windows 7 as my OS.

  1. Download Restoration Version 2.5.14
  2. extract the file if required,  else run the exe.it will popup with a screen as shown below.

RestoreVersion

3. Select the drive from where you want to recover the data.Here i am selecting Drive as K.

Drive K

4.Click the Search Deleted Files button.

Search

5.it will display the deleted files .select the file you want and click on Restore by Copying button.

Recover Selected File

6. Select the location where you want to recover the files.

Save Searched Files

Note: here i tried for a word document to recover. i don’t know what all files it will recover.

Wednesday, June 9, 2010

Square selection in Visual studio 2010

In visual studio 2010 we can easily select the items in square manner and replace those things.Here is one example.

Private

Here i have three private variable and i need to change it to public all at a time, press Alt Key and select the square area where you want.

square

Then type the thing what you want is select in the square where you selected and type.I changed private to internal.

internal

Enable javascript Debugging in IE

To enable javascript in IE, do the following steps

Open IE –> Tools –>  Internet Options –> Go to Advanced Tab –> uncheck Disable script debugging(Internet Explore)

Javascript

Note: uncheck Disable script debugging(other) to enable debugging in other scripts.

Now open visual studio and put break point in the javascript where you want and runt it once the scripts fire the break point also will hit.

Sunday, December 6, 2009

How to install Chrome OS ?

 

Few months back i was blogged about Chrome OS .Now it is released .

Today i decided to install the chrome os on my Laptop.Here are the steps that i followed to installed my Chrome OS.

Step 1 : download the VMware player and Chrome OS from here.

Step 2 : Install VMware player and Restart your machine and start your VMware player.you can see the below screen.

vmware

Step 2 : click Create a New Virtual Machine.

Step 3 : select “I will install the operating system later” and Click Next.

New Virtual Machine

Step 4 : Guest operating system as other and version as other .

Other

Step 5 : Enter Virtual machine name ,here i used Google Chrome OS.

Google Chome OS

Step 6 : Specify the disk capacity. Here i used as default setting.

 Virtual Size

Step 7 : Click the Customize Hardware .

Hw

Step 8 : Change the Network Adapter settings as shown below and click OK.

hw1

Step 9 : Click Finish . Now you can see the below image.

 GoogleOSLast

Step 10 : Now the Chrome OS image(VMware virtual disk file) that download

2

is copy to the installed location as same in the step 5.The name of VMware virtual disk file should be same as the virtual machine name. If not change the VMware virtual disk file to Directory name.

Here my location is C:\Users\anishmarokey\Documents\Virtual Machines\Google Chrome OS.

.When you copy it will ask like the below image.

1

Step 11 : go to VMware Player and click play Virtual Machine.

3

At last you can see the below screen ,Enter your username and password and click Enter.So you can see the magical world of Chromium OS.

4

Wednesday, October 7, 2009

NDepend – Part 1

Its a .NET Static analysis tool for Architecture and developers to analyze the code structure,specify design rules , do some massive code review , compare different versions of code etc . This tool is developed by Patrick Smacchia(C# MVP).

Main features of NDepend are as follows as

  1. Code Query Language(CQL)
  2. Compare Builds
  3. 82 Code metrics
  4. Manage Complexity and Dependencies
  5. Detect Dependency Cycles
  6. Harness Test Coverage Data
  7. Enforce Immutability and purity
  8. Warning about the health of your Build Process
  9. Generate custom report from your Build Process
  10. Diagrams
  11. Facilities to cope with real-world environment

To read more

This is the sample program i am going to analyze by using NDepend.

using System;
using System.IO;
using System.Collections.Generic;
interface IFirst
{
    int AgeFirst { get; set; }
    string NameFirst { get; set; }
}
interface ISecond
{
    int AgeSecond { get; set; }
    string NameSecond { get; set; }
}
abstract class abstractClass
{
    int Ageabstract { get; set; }
    string Nameabstract { get; set; }
}
class Program
{
    static void Main(string[] args)
    {
    }
}

As we all know that the interface is not derived from System.Object.

and the abstract is derived from System.Object.

The Dependency Matrix in NDepend helps to See things graphically.

interface VS Abstract1


For IL Instruction for abstract class can be find out with the help of Metrics in NDepend as follows.

Abstract1

There are lot of things like Code Query Language(CQL), Detect Dependency Cycles,Compare Builds etc are there to explore in NDepend tool.That i will cover the the upcoming parts.

If any one interested in this tool, have a look on NDepend and order it Now.

Note : Thanks Patrick Smacchia, for given a free licence of NDepend to write a review.

Sunday, September 13, 2009

Windows Live Writer - For Better Blogging

In my last post i wrote  how to copy a Code Snippet form visual studio to a blog . Today when i gone through some of the sites which says Windows live writer helps to write better blogs.

Steps that i followed to write a blog

step 1 : Download

Step 2 : After installation go to start –> programs –>  Windows Live –> Windows Live Writer

                               windows live writer

Step 3 : Windows Live write ask for the details about your Blog details .After all the windows live writer open as shown below

 

                     windows live writer Main

Now you can write and publish your post :)

For Copying code from visual studio to blog is as follows

Step 1 : Go to Visual studio and copy the code that you want

 

                                Windows live Visual studio

 

Step 2  : Select Code Snippet from Windows Live Writer

 

            windows live writer code snippest

Step 3 : Which opens a new window as shown below.From there select Edit –> Paste then Click Insert.

 

                windows live writer code

Step 4 : the output is displayed in your blog,when you click you publish in windows live writer.

Sunday, September 6, 2009

How to copy code from Visual studio to Html page

When i am give some code snippets its not a good way to read for readers.And when i go to see some other blogs they are given the code in very easily and neat way.Today i got the solution,am sharing the same with you all.

Steps to follow

Step 1 : Get the Addins from here
Step 2 :Extract it to your Visual studio Addins folder(C:\Users\anishmarokey\Documents\Visual Studio 2008\Addins) ,if the Addins folder is not there create it.
Step 3 : Open visual studio,click in Tools -> Add-in Manager



Step 4 :Add-in Manager a message box will come.Checked the check box for "Copy as HTML" and click ok.



Step 5 :Now you can select any code and when rigth click "Copy As HTML" as shown


Step 6 : Paste in your blog.It looks like as shown below

6 static void Main(string[] args)

7 {

8 }


 
Counter