I have an ARM assembly code that compiles well with Visual Studio. I would like to now use the same ARM assembly code and compile it with GNU Assembler. As you know the syntax of both assemblers are different. I was wondering if there is any tool that can convert from these Assembly syntaxes.
...
Hi folks,
is it possible to have a way to clear the Visual Studio OUTPUT window, programatically? For example, the SysInternal's debugger app called DebugView has the specific command called DBGVIEWCLEAR .. which clears the log window.
Please don't say: right-click, clear window .. with the mouse. I know that, but that's not what i'm a...
I have a custom color theme within visual studio which uses a dark background which looks great, however when I copy & paste into Outlook I would like outlook to use the default formatting, is this possible?
My current workaround is to simply paste into a single cell table, reset the background color on the text to none and apply a back...
I have a TreeView control on a form. I am dynamically adding new TreeNodes to it, and I am calling Expand() on them prior to adding them. This causes their IsExpanded property to be true. However immediately after adding it to the TreeView, or to any node on the TreeView, its IsExpanded property turns false and none of the nodes are expa...
This is C4055 Warning message.
'conversion' : from data pointer 'type1' to function pointer 'type2'
A data pointer is cast (possibly incorrectly) to a function pointer.
This is a level 1 warning under /Za and a level 4 warning under /Ze.
How do we resolve this warning?(By correct way, not a trick)
Edit:
This is a code...
When working in a VB.NET project in Visual Studio (2008 specifically, but hopefully the answer applies to any version) is it possible to have intellisense/auto-complete only show the "All" tab instead of the "Common"/"All" tab? Or alternatively, have it default to the "All" tab.
Being predominately a C# developer having the editor try ...
I have VSTS 2008 but no Analyze menu. Why did it happen in first place? And how can I get it?
...
I am attempting to use Scintilla .NET in a project (I want a good editor + syntax highlighting, etc). Unfortunately, when I reference the binaries in my project, I can't seem to actually use the Scintilla controls. I get two different errors.
The first happens when adding
SciLexer.dll as a reference to my
project. I get a message th...
hi there,
i'm getting errors when trying to build the decnumber++ library in vs2008. the error i'm getting is C2995 and C2666. to me it seems visual studio is not allowing template function overloading? if anyone has any ideas i would really love to hear them. if anyone would like to try and build this decimal library in VS to see if th...
We have been using Google Code SVN to store a school project. As we were experimenting with different ideas, we created new Visual Studio Projects and stored them there. Now we want to merge all the different ideas into one final project.
Here is the current layout of the repository:
- svn
- branches
- Idea1
- Idea2
- tags
-...
In both VSTS 2008 and VS 2010 RC1 when I create a Unit Test (mstest), I am not asked where I would like the project to be placed. It will always turn up at the Solution level. I would like to place the test project inside the folder of the class(es) that are being tested.
I have tried unloading the unit test project and adding it to t...
This is kind of a vague question, but is there anything I can do about visual studio slowing down an application? If I run the executables outside of visual studio it runs at a very acceptable speed. If I run it inside visual studio with the debugger enabled it runs nearly 200x slower. I have tried to uninstall and reinstall visual studi...
I don't need this declaration because it only makes my code big and unreadable.
Is there a way to make Visual Studio (VS) not add it automatically. Every time I remove it, it is added back by VS.
Function DoStuff(Tom As String)
NOT
Function DoStuff(ByVal Tom As String)
...
I'm currently using Visual Studio 2008. As other applications, it saves its layout in their setting folder. That's fine. But, my problem is that I often launch 3~4 Visual Studios, and change each instance's layout.
However, Visual Studio can only remember a single set of layout of the last terminated instance. I don't blame this limitat...
This could save me so much time. Sometimes I find myself writing things like this in the watch or immediate window:
MyObject.Function1.Fuction2.Fuction3.Fuction2
Instead I could just declare several new variables and do this in a more structured way.
However doing this is not allowed.
Is there some way that i can do this? Is there...
Hello :)
I've got a little problem with a query which I create in the Visual Studio Designer.
I need a query with a lot of 'OR'-clauses for the same column.
I found the operator 'IN', but I don't know how to use that in the Visual Studio Designer:
Example IN:
SELECT EmployeeID, FirstName, LastName, HireDate, City
FROM Employees
WHER...
Hi folks. Here is my situation:
The project I'm working on right now
uses a version control system
(Microsoft Team Foundation) that's
hosted and managed remotely by the
customer. I am in charge of doing a
massive refactoring/bugfixing after
somebody who left a horrendous mess of
code behind. Due to several reasons
tha...
Hey
I'm trying to use the ReportViewer Control in Visual Studio 2008 but I'm having problems with viewing the "Smart Tag Panel". The little triangle which should be in the top right corner is not shown. I think the problem is that I can't select the ReportViewer in the Designer in Visual Studio. How do I fix this?
Otherwise i tried to ...
Hi!
I've been using C/lex for a long time and would like to use F#/fslex now.
I'm comparably well off in C# and in the process of learning F#.
The only thing is that I can't see any project example or template where fslex is properly included in the Visual Studio build process.
Does anyone know where I can find one?
Lots of Greetings!
V...
I'm using Xcode for C++ on my computer while using Visual Studio at school.
The following code worked just fine in Visual Studio, but I'm having this problem when using Xcode.
clock c1(2, 3, 30);
Everything works just fine, but it keeps giving me this error that says "Expected ';' before 'c1'"
Fine, I put the ';' .. but then, it gi...