|
Any idea how to fix this error in Visual Studio? This error occurs when trying to create a new C# Console Application. I can create and build a C# Website, but Intellisense does not work. VB Applications work correctly. I tried upgrading to SP1 but that...
Started by James Lawruk on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Everything works fine_CURRENT_USER\Software\....
Did you try reinstalling Visual Studio like you were told to do?
In the command prompt, I ran C:\Program Files\Microsoft Visual Studio 9\Common7\IDE\devenv.exe /resetsettings.
|
|
It's kind of confusing when it comes to Microsoft Visual C++.
How to tell whether a Microsoft Visual C++ project is a .Net project, or a native C++ project?
Started by Ngu Soon Hui on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In 2008, go.
Visual Studio 2003, 2005 and 2008 all support both Managed and Native applications.
|
|
Perhaps this is a stupid question, but for the life of me I cannot find a way to do this.
How would one go about adding an event handler to a control in a form in Microsoft Visual Studio (2008) with C#?
I can do it manually, but opening the Designer.cs...
Started by morrog on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Double-clicking the event name....
Clicking the icon takes you to the list of available events for that control .
In the properties window (hit F4 to bring it up), there should be a little lightning bolt icon .
In the designer, click the control of interest.
|
Ask your Facebook Friends
|
How can I enable Emacs key bindings in Microsoft Visual C# 2008 Express Edition?
Started by Gambit on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It seems that the Emacs keybinding file ( Emacs.vsk ) it's not included on Visual Studio Express.
|
|
I have an old dll that uses the Microsoft Visual C++ 2003 (7.1) run time package. Unfortunately I don't have that DLL around anymore. Short of reinstalling VS2003, is there another way to get the run time redistributable dll?
Started by Jim McKeeth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
At least that is what a post on the microsoft forum ....
For: Microsoft Visual C++ 2008 Redistributable Package (x86)
After a bit of googling, it seems that there never was a separate redistributable for Visual C++ 2003 (7.1).
|
|
I would like to have my warnings set to the highest level using Microsoft Visual C++ compiler. Similar to using -pedantic on gcc. What compiler switches do you use to have the most warnings enabled?
Started by KPexEA on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The warning level warnings as errors with /WX
Visual C++ doesn't seem to have an real equivalent to -pedantic - which is asking gcc to report all warnings ....
The highest warning level on Visual C++ is /Wall.
W4 /Wall should do the trick.
|
|
Hi Anybody is familiar with DevExpress in Microsoft Visual C#?
My boss gave me the code to study and this code has the version of DevExpress 8.3. And I would like to open this code in my laptop which has already a version of DevExpress 9.1 Would that ...
Started by tintincute on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
DevExpress has a convertion....
You can either use the DevExpress tool to upgrade or manually remove and add the references to use 9.1 .
For compiling, you have to convert the project to use DevExpress 9.1 .
If you want to just look at the code, it should be fine .
|
|
After installing the F# September CTP (1.9.6.2), Visual Studio 2008 frequently gives an error "Microsoft Visual C# IntelliSense has stopped working" which promptly crashes all of Visual Studio. I tried the tips mentioned in a similar SO article such as...
Started by Lee Richardson on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is the message from Brian McNamara on the F# team on 12/9/08:
This is the first report of this we’ve had, but I am able to reproduce the problem on my box, so we’ll see what turns up debugging, I’ll let you know if I ... .
This is now a confirmed bug.
|
|
Visual C++ doens't work on my Vista. both 2010 and 2008 fails to create new projects. what alternative do i have ? I am sick of googling and trying out all the other hacks to fix it.
Started by gpow on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Try installing Visual Studio in a newly....
Re-install Windows along with all your other apps (including VS) .
Re-install Visual Studio.
Try right clicking on Visual Studio and saying 'Run.
To the folder where you're trying to write them.
|
|
I am interested in finding either official or reverse engineered documentation detailing the name mangling scheme used by the Visual Studio C++ Compiler to translate C++ names into symbols in generated code.
I am aware that this may change between versions...
Started by grrussel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
A serious community effort to uncover the decoration scheme: 1 , 2 , 3 , 4 ,... .
Http://msdn.microsoft.com/en-us/library/ms681400(VS.85).aspx
Found a useful link , which also links to further useful information .
Following link may be of interest to you.
|