Why does this fail, once Masm reaches jmp?
struct gdt_entry
{
unsigned short limit_low;
unsigned short base_low;
unsigned char base_middle;
unsigned char access;
unsigned char granularity;
unsigned char base_high;
};
struct gdt_ptr
{
unsigned short limit;
unsigned int base;
};
struct gdt_entry gdt[3];
s...
I'm using visual studio to build the setup project for my web application. The build failed because it seeks binary output at the bin\Debug\ folder while the binary I generated is actually under the bin folder. What can I do to fix this? Thanks in advance!
...
Hi all,
I'm trying to debug a Windows Service using VS2008 on Win7 64-Bit. The problem I'm having is that none of my breakpoints are being hit, regardless of which build configuration I choose: x86, x64 or AnyCPU.
Using "Attach to Process" after the service has started, none of the breakpoints are hit - yet the IDE doesn't inform me th...
Someone please tell me How to link graphviz( or call its code) in C++ (VIsual Studio)
...
When you run an application from within visual studio, it seems to pick a random port on localhost. For example, running an application right now, I get
http://localhost%3A3240/ApplicationStuffHere
I realize this port gets loaded into the solution file, via
VWDPort = "3240"
How does this get decided on? it seems fairly ra...
Hello,
Is there a proper way to reference the fields of a ssrs report from the embedded code of an ssrs report?
When I try to use Fields!Program.Value I get the following error --
There is an error on line 3 of custom code: [BC30469]
Reference to a non-shared member requires an object reference.
Upon googling I found you could re...
Hello,
Is it possible to reference a textbox from the embedded code of a ssrs report. I would like to show or hide the textbox based on a condition.
Thanks.
Seth
...
It is a compiler warning and generally frowned upon to have unused variables in your code. Therefore the following will generate a warning because e is unused
try {
throw new InvalidOpreationException();
}
catch(Exception e) {
}
The correct way of doing this is to not give the exception a name unless you're going to make use of it:
...
I have one solution with 3 folders (Forms, Notices, Reports). In the Notice folder I have about 100 projects. The problem is, they are ordered by the creation date; while I would prefer that they were ordered by name.
I have seen that this does change, by sorting alphabetically, if I add a new project within the folder. But, once I clos...
I have an existing report (Crystal Report) in my Visual Studio project that is based off of an SQL Server View. using an OLE DB (ADO) connection.
I've updated the View since the report was created. I've changed some field names and added a field.
How can I updated the fields on the report to point at the new fields in the view?
How can...
Anybody have asp.net mvc 2 running with visual studio 2010?
Is it as easy as referencing the output of the mvc 2 source code?
...
Every time i build, or publish, a web-site, Visual Studio attempts to check out the web.config file so that it can add numerous assemblies that are not required.
In other words:
web.config before:
<configuration>
<system.web>
<compilation>
<assemblies>
</assemblies>
</compilation>
</system.web>
</co...
We have a project in our solution that houses a test application with multiple windows forms. Every time I open up a form in the form editor, Visual Studio goes out to lunch, chewing up an entire processor... until I kill the process.
I tried to port over to a new project, thinking something in one of the forms, or the project file w...
I am looking forward to implement daily build for a upcoming project.
But before doing that, I need to know how to properly version an assembly.
I have the following concern:
Should each assembly have an independant version or should they all share the same version?
Should I use a * version for build and revision?
Is revision relevan...
I'm looking for a way to access Exchange 2003 calendars to add appointments. I'm hoping to use an admin account and impersonate each user to add appointments which i'm pulling from an oracle database. I've seen lots of examples for Exchange 2000 using cdox.dll which are exactly what I'm looking for but not an equivalent for 2003. I have ...
I’m looking for recommendations and best practices for applying signed assemblies in an organization with 30+ developers, 20+ solutions and 60+ projects. We’re using Visual Studio Team System 2008 and TFS.
While creating a key and signing the assembly is a very easy and straight forward procedure, I’m concerned how we manage this the be...
I have a visual studio 2008 solution with multiple c# library projects, a Web Project and a Wix Setup project. The setup project takes about 2 minutes to build.
Currently when I do a build, it will build every project, including the setup project.
I want to be able to build all projects, excluding the wix project when using the debu...
As in the title. Is it possible? When I rightclick on Visual Studio in a Taskbar I have a "Recent" category there i have but 1 .cs file that I can pin.
Now the question is: what to do to pin a .sln solution there?
...
I have a couple of VS 2008 projects (C++) that are linked every time I start a build, even though nothing has changed. i.e. I select "Build Solution", it compiles and links, I select "Build Solution" again, it doesn't compile anything, but links again.
This is quite annoying and I have checked everything that might cause it to link agai...
Visual Studio - Determining Lines No Of Lines of code in a project - is this possible in VS 2008?
...