visual-studio

No intellisense in Visual Studio 2010 Test Projects

Is there anything special about Test Projects that would cause intellisense not to work? This is my first experience with a test project. ...

Cannot start debugger on Visual Studio 2010 (F5) However, ' attach to process' does work (slow). How to fix?

The environment: Clean (new) install of Windows 7 64bit. Clean (new) install of Visual Studio 2010 Professional (10.0.30319.1). Windows Update is up to date. The problem: I cannot start the debugger on Visual Studio 2010 (hit F5): 'Unable to start debugging on the web server. Unable to connect to the web server. Verify that the web s...

Visual Studio 2010 with phone tools - Any advanced/configurable settings?

In Visual Studio 2008, there was the device manager for setting up additional templates and options for the emulator. None of these options are available with Visual Studio 2010 which I understand as the features were removed. When the Phone Tools are installed, the device target box comes back but there are no options at all. Basica...

How to show data pointed to by a pointer in VS 2008?

Hi there, I was wondering if there is any feature in Visual Studio 2008 that would show me data stored at address XY? Specifically I need to check data the pointer points to. Something like this: BYTE *pMem = (BYTE*)GlobalAlloc(GMEM_FIXED | GMEM_ZEROINIT, FileSize); <do some magic at pMem+offset1> //bug occurs, need to check data at pM...

Mercurial or Git

Hello I need a good SCM with integration in Visual Studio 2010 and ability to work over internet, I mean other users should be able to checkin/checkout files through internet/network. I saw Git and its Extensions but I had problem with VS Integration. Its toolbar buttons and menu items didn't respond to my clicks, it just did nothing. I ...

vsdoc support for jQuery 1.4.3: how long?

jQuery was updated over the weekend. How long should I expect to wait before the .-vsdoc version is released? thx ...

Change properties in the status bar label

I use the following code to create a Label in the status strip when a child window is open. Public Sub StatusStripPanelAdd(ByVal lCount As Integer, ByVal sImage As System.Drawing.Image, ByRef sText As String, ByVal sender As Object, ByVal e As System.EventArgs) With (StatusStrip2) .Items.Add(sText, sImage) End With ...

C++\IronPython integration example code?

I'm looking for a simple example code for C++\IronPython integration, i.e. embedding python code inside a C++, or better yet, Visual C++ program. The example code should include: how to share objects between the languages, how to call functions\methods back and forth etc... Also, an explicit setup procedure would help too. (How to incl...

Change fonts in my StatusStripLabel

I use the following code to change the parameters in my StatuStripLabel Dim ItemImage As System.Drawing.Image = iImage Dim item = New ToolStripStatusLabel(sText, ItemImage) item.BorderSides = ToolStripStatusLabelBorderSides.All item.BorderStyle = Border3DStyle.RaisedOuter item.LinkBehavior = LinkBehavior.HoverUnderline ...

Breaking program into multiple files - getting error "redefinition; different basic types"

Hi ! I want to break my program into multiple files 1. main.c - is the main function 2. definitions.h - contains #define, typedef, function prototypes 3. functions.c - contains function(prototypes in definitions.h) In definitions.h, I have typedef for structure MyStruct, which is used in definitions.h & functions.c I have done the fo...

How i can minimize the child window when i click the StatusStripLabel

I have create a procedure to open dynamicaly a StatusStripLabel for my child window, also when i close the child window the label in Status Bar is closed as well. Now that what i want is to click once the StatusStripLabel and the child window minimized (hide) and when i click it back the child window restored. Also when i minimize the ch...

Setup MS Visual Studio for the PAWN language

I am used to work with MSVS 2008 and 2010 for some time now. I did some projects using C# and C++ but I am still a rookie. For my next project I have to develop using the PAWN language and would like to use MSVS as my IDE. I did some research on the subject but since PAWN is not that popular I didn't find any satisfying solution. My qu...

Creating an installer with Visual Studio - How do I control the file structure?

Quick question here, I'm using Visual Studio to create an Outlook add-in. I've created the code and it boots up nicely in Outlook. Now to actually creating an installer.. This is what I've done so far, created a new installer project and added the files (dll and vsto) from the debug folder of the actual outlook project. But when I build ...

ISO C++ and the infamous underscore

Possible Duplicate: Why is getcwd() not ISO C++ compliant? After searching for availability of execvp on Windows, particularly with VisualStudio, I've ended up with http://msdn.microsoft.com/en-us/library/ms235414.aspx ... However, it says I should use _execvp instead of execvp. GCC also seems to support _execvp. But what's t...

How do I determine if a VSLangProj.Reference is a Project Reference or a File Reference?

I am working on a Visual Studio plug-in. Given a VSLangProj.Reference, is there a way to programmatically determine if that reference is a project reference or a file reference? ...

Alternative to Matlab

I'm looking for some environment that fulfil all conditions below: is free or have free student's licence enables to make dll that can be used in C# in Visual Studio 2010 has very good performance on matrix calculations has good documentation or examples/tutorials It does not have to be compatible with Matlab. ...

MSWord Richly Formatted Text Paste into Webgui Text Input Field for Database Submission

I have several richly formatted paragraphs in a Word 2003 document. How do I copy each paragraph and paste it in a text input field with all the formatting in place? The main objective is to make each paragraph as an object in the database so users can add and rearrange these objects(paragraphs) in custom order to generate their custom ...

Free alternative of ViEmu?

Is there a free/open source alternative to ViEmu for Visual Studio? ...

custom code snippets in intellisense

ive started exporting some of my frequently used blocks of code to custom snippets is there a way to get these to show up in intellisense and not have to use the snippet browser from the context menu or snippet manager at first i thought this was connect to resharper but they still dont come up when i disable the resharper intellisense ...

how to Implement Array.ConvertAll Method in c#

i can not Convert the T TYPE array in to Int array My Code is below . T [] arra = new T[arr.Length]; int [] converted = new int[arr.Length]; T element; for (int i = 0; i < arr.Length; i++) { for (int j = 0; j < arr.Length - 1-i; j++) { Type s = (Type)System.Int64...