visual-studio

Any good ideas for Visual Studio 2010 related projects for an internship?

Hi everybody. I have an internship coming up in February where I will work with Visual Studio ALM (TS) 2010. My company tutor let me be free in choosing what I would like to work on with Visual Studio ALM...it kind of has to be something new, interesting and which will have a benefit for the company. I'm not very familiar with VS ALM 2...

Is there any Visual Studio-like tool for creating GUIs for Python?

My girlfriend asked me if there was a tool (actually, an IDE) that would let her create her GUI visually and edit functions associated with GUI-related events with little effort. For example, she wants to double-click a button she just created and immediately see (and edit) the code associated with that button's on-click event. I believ...

Getting a significant amount of data into a SQL Server (Express) database at time of deployment

For most database-backed projects I've worked on, there is a need to get "startup" or test data into the database before deploying the project. Examples of startup data: a table that lists all the countries in the world or a table that lists a bunch of colors that will be used to populate a color palette. I've been using a system where ...

SQL Database Project in Visual Studio

Hi, I have a database ready which I am maintaining manually, I would like to now use that database to create an SQL project. I am creating also but not able to import the existing Tables, Views, Stored Procedures or any other object. Is there any way to do it. If yes please let me know. Thanks, Piyush ...

Visual Studio Shell Based Application

My new project would be a custom IDE for proprietary Application creation. This can be a Shell based application on VS Shell. I wanted to know what are the license requirement for these kind of applications. My question: If I create my project as VS Shell based Application, what kind of license is required by the end user of the Shell b...

Visual Studio & GDI++

Hi. I tried to find a similar question here, but found something different. I prefer to use display fonts smoothing in Windows, but I don't like the way how Windows XP smoothes the display font edges. Currently I use GDI++ that smoothes the display fonts making them look very similar to text rendered in Safari browser for Windows (as fa...

Visual studio isolated shell, how do i add my custom project type..?

I have extended visual studio 2010 beta2 (Isolated shell) to create a custom wpf grpahic designer with c# scription support. Could anybody help about the scope of this approch in extending VS for this purpose.. Thanks, Subin. ...

how to give a grid row a row command

I want to make my gridview rows selectable. I don't like the idea of a user clicking a button or link on the grid to select the row. How can I give the actual row a row command? ...

Visual Studio forms designer

I have an annoying problem. Sometimes Visual Studio does not show option "View designer" for some of my forms in solution explorer. It does not show design mode errors, just doesn't show option to use the designer. I cannot figure out exact cases when this happens.. Does anybody have some ideas about what causes such behavior of solution...

VB.NET - Winsock GetData Method

Hey guys, I imported the Winsock feature in my vb.net application, so I can make a Chat System. I just have one little problem with my program. In the GetData method of my program, CLIENT SIDE: *Dim strData As String* AxWinsock1.GetData(strData, vbString) TextBox1.Text = TextBox1.Text & _ strData & vbCrLf It will under...

How can I use pixels in Visual Studio instead of inches?

I'm making reports in Business Intelligence Designer Studio (VS 2005). My reports will be viewed primarily on the screen, and I'd like to change my ruler to pixels instead of inches. Is this possible? ...

Inserting with form view

I have a formview. With the datasource of the formview i want to insert a record into the database, but i want to insert a value i get from a method i create in code. Doesn't that mean that i will not be able to directly code this onto the Data source using the wizard? ...

Automatically attach XML files to XSD schema in Visual Studio?

I just discovered the beauty of Visual Studio's automatic XSD schema generation.* Is there an easy way to have VS automatically attach files with particular names to existing XSD schema? So if I have myconfig.xml files scattered throughout a project (or several projects) I would want them to always validate against myconfig.xsd, rather...

Working with Git in Visual Studio 2010 beta 2

GitExtensions doesn't yet support 2010. What do I in the meantime? I want something that handles moving/renaming files from within the IDE, similar to Ankh for SVN. ...

ClearCase and Visual Studio . NET - how to unlink them?

Hi, I'm working with VS.NET and ClearCase. They are linked. Since I'm working on a laptop with snapshot views, sometimes I have to work while I'm disconnected from network and ClearCase. When it happens, my working environment is just stuck, since it's looking for connection to ClearCase. It seems that I have to unlink this CC-VS.NET c...

Visual Studio 2010 Beta start without debugging Console wont stay open

I want to keep the console (output) window open to view the output of the project I am working on. I have enabled the start without debugging option and added the button to the debugging toolbar, but alas it fails to keep it open nicely like in visual studio 2008. I have to add cin.getline() etc etc etc to get it to stay open, but I don'...

C#: backing field declaration and summary tag

When defining properties I like to do just before property declaration, something like this private IList<SomeType> _myList; public IEnumerable<SomeType> MyList { get { return _myList;} } But if I place ///<summary> tag on the property, I lose the benefit of declaring the backing fields like this, it is not readable any more. If I ...

is it possible to use linq on "sql server project"

I'm using visual studio 2008. How can i use linqtosql on the sql server project? ...

Conditional Compilation in Visual Studio(C#)

I am attempting to make it so that we can have our application to behave differently based on the presence of a preprocessor directive. I've read that you can create build configurations to define different preprocessor directives based on which build you do. Well, I am not seeing anything in Visual Studio to do this.. I know how to do i...

How do I get Visual Studio to do vbscript syntax highlighting for .asp files?

asp files are highlighted as html in Visual Studio 2008 unless I put language=vbscript in all my <% > code blocks. lame! when I go to tools -> options -> text editor -> file extention I don't get vbscript or vb as an option, only c#, c++, html, etc ...