Monday, February 6, 2012 7:03

Posts Tagged ‘.NET’

Navigate Code and Text in Virtual Studio 2010

Tuesday, April 12, 2011 2:28

Original article: http://msdn.microsoft.com/en-us/library/9w13x3hh.aspx There are various ways to move through text or code in the Code Editor using the mouse and navigation keys: Use the arrow keys to move one character at a time, or the arrow keys in combination with the CTRL key to move one word at a ...

This was posted under category: .NET, SharePoint  |  Read Full Story  |  0 Comments

Display Line Numbers in Virtual Studio 2010

Tuesday, April 12, 2011 2:26

ine numbers are not added to your code; they are for reference only. For line numbers to print, you must select Include line numbers in the Print dialog box. For more information, see How to: Print Code in the Editor. To display line numbers in code On the Tools menu, select ...

This was posted under category: .NET, SharePoint  |  Read Full Story  |  0 Comments

Virtual Studio 2010 disable the automated TFS connection

Wednesday, March 23, 2011 0:29

Add a DWORD value called "AutoLoadServer" under HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\TeamFoundation. Zero means do not reconnect automatically.

This was posted under category: .NET  |  Read Full Story  |  0 Comments

VB.NET to C#

Thursday, September 2, 2010 19:53

I came across this syntax error - "Non-invocable member 'System.Windows.Forms.Control.Controls' cannot be used like a method" when converting a VB.NET project to C#  windows form application. In C#, weshould use bracket("[", "]") to retrieve item from a collection instead of using the parenthesis as in VB.NET. VB.NET ->TabControl1.Controls(1).Enabled = False C#         -> this.TabControl1.Controls[1].Enabled ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments

VS 2008 users: remember to download the SourceSafe CTP

Monday, December 21, 2009 15:45

You've probably all seen Soma's announcement that the 2008 suite of products officially shipped this morning.  Good luck downloading -- our servers are pegged :) If you plan to use VS 2008 with SourceSafe, make sure to pick up the Update CTP too.  Without it, some features like "Open from ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments

Excel Financial functions for .NET

Monday, December 29, 2008 13:58

Considering that the .NET framework is easily on the short list for the most popular business application platform, it is surprising that financial functions are largely ignored. Sure there is a handful of methods squirreled away in VisualBasic.Financial, but most developers don’t even think to look there. It is no ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments
Versions of .NET Framework and Visual studio

Versions of .NET Framework and Visual studio

Monday, December 29, 2008 13:47

Published: November 20, 2007 - 08:46AM CT As promised earlier this month, Microsoft announced today that both Visual Studio 2008 and the accompanying .NET Framework 3.5 have been released to manufacture (RTM). Codenamed Orcas, Visual Studio 2008 (VS2008) comes two years ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments

Windows visual studio tips

Monday, December 29, 2008 13:04

Plugins: DPack http://www.usysware.com/DPack/Default.aspx TestDriven.NET  http://www.testdriven.net/ Short cuts: CT+SH+L - remove current line CT+L - cut current line CT+EN / CT+SH+EN insert a new line CT+I - incremental search CT+SH+V - cycle paste "印象最深刻的就是工具栏上的那个搜索框:当输入一些文字之后,按回车,会在当前打开的文件中从当前光标位置向后搜索内容,并选中第一个搜到的内容(估计用 过这个玩意儿的人都知道);输入一个数字行号,按Ctrl + G,就会跳转到这一行;输入工程中的一个文件名,按Ctrl + Shift ...

This was posted under category: .NET  |  Read Full Story  |  0 Comments
.NET 两个月学习计划

.NET 两个月学习计划

Tuesday, November 25, 2008 16:46

这是BQ的.NET的学习计划,记于此以供跟踪。 :) ASP.NET...

This was posted under category: Team Fight  |  Read Full Story  |  4 Comments