|
|
|
|
|
|
| | Total Hits: 18 | Today: 0 | Author: rushijoshi | Rating:  |
| |  There are many snippets available in Visual Studio .NET IDE. Inserting snippet is so easy that it requires few mouse clicks and you can enjoy reusability. You can also import/include namespaces associated with particular code and refer to the associated assemblies for that code. Currently, snippets are available for C#, VB, J# and XML. Code snippets use XML file format. You can create your own snippets and add them using Code Snippet Manager.... |
| | Total Hits: 21 | Today: 0 | Author: arunsuji | Rating:  |
| |  This article explains how to customize the project and item templates in Visual Studio. The article comes in three parts. The first part explains how to customize project templates. The second part explains how to customize item templates, and the third part explains how to create text template generators for project items.... |
| | Total Hits: 16 | Today: 0 | Author: Aashish Kumar Gupta | Rating:  |
| |  Most of us use Visual Studio IDE in our daily programming and coding.So this article will tell you few tricks and tips by which you can enhance your productivity and efficiency.... |
| | Total Hits: 22 | Today: 0 | Author: Daniel Carvalho Liedke | Rating:  |
| |  This is a simple List T and Dictionary T,T debugger visualizer for Visual Studio .NET 2005, 2008 and 2010. The only requirement for it to work is that the classes inside the lists or dictionaries should be marked as [Serializable].... |
| | Total Hits: 16 | Today: 0 | Author: Masayuki Tanaka | Rating:  |
| |  If you want to get another web site data, you can use HttpWebRequest and easily get page data via HttpWebResponse.But the site reuires form-based logon , Or you need some operation to get desired page, you should manage cookies and hidden variables like viewstate.This is pretty complicated and relyed on site behavior.... |
| | Total Hits: 16 | Today: 0 | Author: Albert Holguin | Rating:  |
| |  The vc compiler automatically disambiguates the location of stdafx.h when you #include "stdafx.h", using a set of defined rules (see MSDN for specifics), BUT IntelliSense does not. Therefore even when a piece of code compiles successfully, IntelliSense will not work correctly because it doesn't use the same logic as the compiler. If you specify the exact location of the file, as in #include "..\\stdafx.h", IntelliSense will now work right, but the compiler will call an error since it's looking f... |
| | Total Hits: 16 | Today: 0 | Author: Paul Watt | Rating:  |
| |  How often do you edit a series of code fragments that are redundant? Where you will repeat the same steps over and over, adding the same formatting around a simple list of items, or making the same changes to each function in your file? Visual Studio's IDE contains a feature that will allow you to easily convert this repetitive task into a simple quick process. The feature is called Quick Macros.... |
| | Total Hits: 20 | Today: 0 | Author: Amr Monjid | Rating:  |
| |  The BackgroundWorker allows you to execute operations that take a long period of time such as database transaction or file downloads, asynchronously on a separate thread and allow the user interface to remain responsive.... |
| | Total Hits: 17 | Today: 0 | Author: Gavin Greig | Rating:  |
| |  Visual C++ does not provide nice features such as syntax colouring for many languages other than C++ itself. One of these "poorer relation" languages is VBScript. With the increasing availability and usefulness of VBScript since the original release of Visual Studio 6, it may be quite desirable to use VBScript for purposes such as creating build scripts. However, it can be quite difficult to read yet another programming language without syntax colouring to lend a helping hand. As a result, it ma... |
| | Total Hits: 17 | Today: 0 | Author: Jeremy Falcon | Rating:  |
| |  Whether you have been programming for a few months or a few years, chances are you have came across the terms binary (bin for short) and hexadecimal (hex for short) at some point. For the programmers that have begun their careers in the years of late, these enigmatic topics are considered known only to well-seasoned programmers. In contrast, some of the older, more experienced programmers were shown this to be a fundamental concept when programming for computers. This shift in thought results in... |
| | Total Hits: 17 | Today: 0 | Author: Keith Kudlac | Rating:  |
| |  Visual Studio allows you to specify your own keywords for syntax coloring. You simply need to provide a file called UserType.dat. This file should contain each keyword you want highlighted, with each keyword on a separate line.... |
| | Total Hits: 17 | Today: 0 | Author: Adil Mughal | Rating:  |
| |  Hey folks, today I would like to mention one of the underutilized features of Visual Studio and that is the use of Visual Studio extensions. In particular, the integration of Visual Studio extensions through Extension Manager in Visual Studio 2010. You will find Extension Manager in Tools...... |
| | Total Hits: 8 | Today: 0 | Author: Gast128 | Rating:  |
| |  The Boost initiative is the next hottest thing after STL for the C++ community. While the documentation is quite good, it can be overwhelming to get a quick start. This simple article explains a method of building Boost libraries. I wrote it because many questions in the newsgroups are about linker errors, which happen if you try to link against some of the Boost libraries. The original article was written with Boost version 1.33, but the updated version works only with the new Bjam syntax which... |
| | Total Hits: 8 | Today: 0 | Author: Shining Legend | Rating:  |
| |  When we type in Visual Studio, the intellisense automatically pops up. If there is some text which is behind the intellisense and if we want to see those contents, use control key, the contents behind the intellisense will be seen.... |
| | Total Hits: 8 | Today: 0 | Author: Silviu Simen | Rating:  |
| |  This article details the usage of the spirit framework being used as the parser for a simple library that reads and writes INI files. It is not intended as a crash course in parsing or using the spirit library, but it can be used as an example for such purposes.... |
| | Total Hits: 8 | Today: 0 | Author: OriginalGriff | Rating:  |
| |  If you develop in any way like I do, then you are probably always writing place fillers and temporary bits that show a message box rather than doing the full action - "I'll write that later".
Did you know that Visual Studio can help you keep track of these? Go to the View menu, Task List. Now the task list is displayed along with the error list, bookmarks and output window. Select "Comments" rather than "User Tasks" and edit your code.... |
| | Total Hits: 8 | Today: 0 | Author: Abdur Rehman Raza Khan - dontumindit | Rating:  |
| |  In computing, a connection string is a string that specifies information about a data source and the means of connecting to it. It is passed in code to an underlying driver or provider in order to initiate the connection. Whilst commonly used for a database connection, the data source could also be a spreadsheet or text file. The connection string may include attributes such as the name of the driver, server and database, as well as security information such as user name and password.(source ... |
| | Total Hits: 10 | Today: 0 | Author: RahulKhadikar | Rating:  |
| |  You are familiar with many of Visual Studio's shortcut keys, but not all of them. Here is a handy reference that can make your .NET lifestyle easier and a lot more productive.
Last time when I posted some of the shortcuts (Asp.Net ShortCut Keys) I got some response that it would be good shortcuts would in tabular format and even would be more useful if they are sorted by some categories.... |
| | Total Hits: 11 | Today: 0 | Author: Pete O'Hanlon | Rating:  |
| |  I recently had a need to create an MSBuild file for a complex (multi-project) solution in VS2010. By default .sln files are not in msbuild format, but they can be called from MSBuild - while I could have done this, I didn't want to - I wanted a proper MSBuild solution. Fortunately, there is a way to convert the .sln file into an MSBuild .proj file.... |
| | Total Hits: 8 | Today: 0 | Author: Igor Okulist | Rating:  |
| |  At times I need to look into a processing step of a pipeline, either to identify a performance improvement or as part of impact analysis. If the step is covered by a unit test, then it is a bit easier to analyze, but alas this is not always the case.
In such a case, a general approach is to isolate a buffer of data being processed and extract it to a data file. Then the data can be analyzed separately or the data can be used to create a unit test. In the latter case, the unit test can be ... |
|
|
|
|
|
|