Sunday, March 20, 2011

Add export functionality to VS Ultimate modeling tool

Follow posting http://blogs.msdn.com/b/camerons/archive/2010/11/29/xmi-export-sample.aspx by Cameron in Skinner's blog. It provide example tool's extension XMIExportSample. The sample builds the installation for new  Export feature to VS
Requirement:
VS SDK
Visualization and Modeling SDK

Note that import is provided by VS through Architect menu. 

Wednesday, March 16, 2011

Find all files checked out by anyone for a team project

Check out by a certain user
tf.exe status /user:<domain>\<username> $/<project> /r
Checked out by all users
tf status /user:* $/teamProject /r

Friday, March 4, 2011

Form tag. Default value of attribute method.

Default value is GET.

Method attribute of Form tag controls type of request, usually GET or POST.
e.g
<form action="url" >
    <input id="searchkeyword" type="text" name="searchkeyword" />
    <input type="submit">ClickMe</input>
</form>
ClickMe button triggers GET request. Text entered into searchkeyword textbox will be sent in QueryString as
searchkeyword=[text]

Explicit method setup.
Post request
  <form action="url"  method="POST">
Get request
  <form action="url"  method="GET">