
Not Able to “Start Debugging” in Visual Studio Paid Members Public
Quite a few days back,I faced a peculiar problem :).Visual Studio was not having the green play button(the one for Start Debugging) enabled.No way was I able to start debugging. Google gave many suggestions,none was of help. I soon found out that,in Startup Projects(From
The Building block Paid Members Public
Since this comes under the 'WF' tag it would not be difficult for anyone to understand what I am talking about. Yes its 'Activity'. Activity is nothing but a piece of re-usable component performing a specified task.When I say re-usable it means across multiple workflows
A newbie to WF Paid Members Public
With WPF(Windows Presentation Foundation), we saw the complete designer-developer separation,making it one of the best presentation technologies available at present. Windows Workflow Foundation(WF) brings about the separation of the 'when-and-what',says Bruce Bukovics,author of Pro WF: Windows Workflow in .NET 4 (Expert's

the Nokia Monster Paid Members Public
Of all the mobiles I have used till date this one goes top on my rating.With its elegant design,built quality and power packed features,the N95 8GB was worth every penny spent.8GB was not much of an attraction though, but definitely it being internal memory,boosted the

HP DV4 Paid Members Public
With all banks stopping on EMI(Equated Monthly Installment),with recession at its high,I was left with no choice for a long time,but to depend on internet cafe's,as my compaq V2624TU got some hardware problems and wouldn't start up.Blogging was on the
Do Stars Count???? Paid Members Public
Quite a few of you might be thinking on what this "Stars" are :).It's nothing other than the " little medals under ones Display Name ".Think I have put you again in thought.Not for too long but,it is the MSDN forum rating that
Ebook Or Hard Copy Paid Members Public
Hi, Of late I have developed the habit of reading books,most of them technical and few others which i feel interesting or of controversial topics.Now in the era of computers you get all the books of choice available right at the click of a button.But I prefer
Deleting Multiple Selected Items in WPF Paid Members Public
Hi, Many a times while using listbox,listview etc there might be a need to delete the multiple selected items. This can be easily achieved by the following piece of code While ControlName.SelectedItems.Count > 0 ControlName.Items.Remove(ControlName.SelectedItem) End While Happy Coding :)