mscodingblog.blogspot.com
Mitul Suthar: November 2013
http://mscodingblog.blogspot.com/2013_11_01_archive.html
Friday, November 22, 2013. Show selected item details from Autocomplete dropdownlist of jQuery using PartialView. This is a continuation of a series around Autocomplete using jQuery in Asp.net MVC4. 1 Implement Autocomplete using jQuery UI inside Asp.Net MVC4 Application. 2 Show selected item details from Autocomplete dropdownlist of jQuery UI – (using Knockout). 3 Show selected item details from Autocomplete dropdownlist of jQuery UI – (using PartialView). In the last post. Join e in db.Employees. State...
mscodingblog.blogspot.com
Mitul Suthar: PowerForms update - 0.3.4.16609
http://mscodingblog.blogspot.com/2015/03/powerforms-update-03416609.html
Sunday, March 1, 2015. PowerForms update - 0.3.4.16609. In the previous post. I introduced PowerForms Nuget package that allows you to create Windows Forms quickly using Fluent syntax. After publishing I have found some inconsistencies and found that certain methods are absurd. So in this post I am going to highlight what’s changed. How to get the update? Install-Package PowerForms –Version 0.3.4.16609. Var form = new PowerForm();. System.Console.WriteLine(dt["FirstName"].ToString() ;. Var dt = form....
mscodingblog.blogspot.com
Mitul Suthar: Work with TF.exe from Visual Studio Package Manager Console
http://mscodingblog.blogspot.com/2014/02/work-with-tfexe-from-visual-studio.html
Wednesday, February 12, 2014. Work with TF.exe from Visual Studio Package Manager Console. I work with Team Foundation Server and I have found sometimes it takes lots of mousing [I mean mouse movements] to accomplish a certain task. While if you don’t know then all the commands that are available to us from Visual Studio are also available from the command line. Oh! C: Program Files (x86) Microsoft Visual Studio 12.0 Common7 IDE. After this you can just do like this Win R cmd. And it gives me pending cha...
mscodingblog.blogspot.com
Mitul Suthar: String Extension to use instead of String.IsNullOrEmpty
http://mscodingblog.blogspot.com/2015/03/string-extension-to-use-instead-of.html
Monday, March 16, 2015. String Extension to use instead of String.IsNullOrEmpty. Everyday while writing C# code until C# 6.0 comes I have to write code like this many times. Var firstName =" ;. Firstname is null or empty".Dump();. Public static class StringExtension. Public static bool IsNullOrEmpty(this string value). Return String.IsNullOrEmpty(value);. Public static bool IsNullOrWhitespace(this string value). Return String.IsNullOrWhiteSpace(value);. This allows us following. Posted by Mitul Suthar.
mscodingblog.blogspot.com
Mitul Suthar: June 2013
http://mscodingblog.blogspot.com/2013_06_01_archive.html
Wednesday, June 5, 2013. Low cost method for organizing electronics components. So there is one problem you will have to deal with when you are beginning to work with electronics projects and that is organizing these tiny components like resistors, capacitors, diodes, transistors, etc. There are different suggestions as this stackexchange question. You can put a strip of resistances say 1M ohms in one bag and use permanent marker to label it. Posted by Mitul Suthar. Monday, June 3, 2013. I also have an A...
mscodingblog.blogspot.com
Mitul Suthar: December 2013
http://mscodingblog.blogspot.com/2013_12_01_archive.html
Wednesday, December 4, 2013. Fixing TF215097 error while using Nugetter on TFS Build 2010. I got the following the error while trying to run a build on TFS Build 2010 that was supposed to create a nuget package using Nugetter. Of a simple class library project. TF215097: An error occurred while initializing a build for build definition Project BuildDefinitionName: Cannot set unknown member 'Microsoft.TeamFoundation.Build.Workflow.Activities.SyncWorkspace.RequestsFailed'. TFS 2010 Build Server. Deploying ...
mscodingblog.blogspot.com
Mitul Suthar: March 2015
http://mscodingblog.blogspot.com/2015_03_01_archive.html
Monday, March 16, 2015. String Extension to use instead of String.IsNullOrEmpty. Everyday while writing C# code until C# 6.0 comes I have to write code like this many times. Var firstName =" ;. Firstname is null or empty".Dump();. Public static class StringExtension. Public static bool IsNullOrEmpty(this string value). Return String.IsNullOrEmpty(value);. Public static bool IsNullOrWhitespace(this string value). Return String.IsNullOrWhiteSpace(value);. This allows us following. Posted by Mitul Suthar.
mscodingblog.blogspot.com
Mitul Suthar: September 2013
http://mscodingblog.blogspot.com/2013_09_01_archive.html
Thursday, September 19, 2013. Use Processmonitor to debug command line syntax passed through PowerShell. If you are trying to find out why a certain formatted command within PowerShell is not working then I strongly recommend using ProcessMonitor. Suite of tools. When you initially fire up the ProcessMonitor then it will show you lots of information and it can be overwhelming. So there is a powerful filtering functionality built into the utility. Click on the filter tab and click on filter. In PowerShell...
mscodingblog.blogspot.com
Mitul Suthar: February 2015
http://mscodingblog.blogspot.com/2015_02_01_archive.html
Sunday, February 1, 2015. Introducing PowerForms for creating windows form quickly. PowerForms is a little nuget package which allows you to create windows forms quickly either in a LinqPad query or in a console application for rapid data collection. Var person = Persons.Where(x = x.FirstName = "Mike" & x.LastName = "Choi").FirstOrDefault().Dump("Mike");. Person.EmailAddresses.Dump("Email Addresses");. Person.PersonPhones.Dump("Phones");. Person.PersonCreditCards.Dump("Credit Cards");. Var fd = form....
mscodingblog.blogspot.com
Mitul Suthar: Introducing TfsManager Some PowerShell cmdlets to work with Tfs
http://mscodingblog.blogspot.com/2014/02/introducing-tfsmanager-some-powershell.html
Thursday, February 27, 2014. Introducing TfsManager Some PowerShell cmdlets to work with Tfs. TfsManager is a project hosted on github by me. The idea came about this project when I was fiddling around with Team Foundation Server Object Model. Github url: https:/ github.com/mitulsuthar/TfsManager. You can fork it, submit issues and pull requests. I will be happy to work with you. Install the PowerShell module by using this single command. 1 Get all the cmdlets available for this module. From (2) you can ...