implementation of unsigned long long division
Which file can I find the implementation of unsigned long long division (ulonglong divided by ulong) in? (MS VC++ 2010) ...
Which file can I find the implementation of unsigned long long division (ulonglong divided by ulong) in? (MS VC++ 2010) ...
I'll be debugging a site in Visual Studio 2010 and editing an *.aspx or *.ascx file, and without warning, it will lock up so that I can't edit it. There's no message or anything, I just can't type or make any changes. The only way to start editing again is to stop debugging, close the editing window, and then find whatever file I was w...
I'm looking for sample solution(s) that demonstrate various kinds of unit tests in C# using best practices. Also I require the examples to use the Visual Studio test tools. I know that there are a number of books and web sources on unit testing, but they don’t use the Visual Studio tools for writing their unit tests. I don’t want really...
Can anyone tell me why the assembly information would be missing for a project in VS 2010? There is an 'AssemblyInfo.vb' filed located in the 'My Project' folder with values provided for the title, product, etc and GUID. However if I open the 'Assembly Information...' dialog in the 'Application' tab of the properties for the project al...
I'm working on a SQL Server Reporting Service report, that will eventually be in my WPF app. There are certain sections of the report which should only be shown, if certain conditions are met. How do I make sections appear or be hidden/collapsed in the Report Viewer? (I'm working in VS 2010.) ...
Is there a way to debug Visual Studio or Blend so I can figure out where XAML designer load errors come from in my code? The stack traces are often useless. Thanks... ...
Here is my scenario. I like my color scheme. I have a dark blue background with light grey text. I have the Plain Text option in VS 2010 in Tools | Options | Environment | Fonts and Colors set to be a dark grey for the foreground and dark blue for the background: But I need to fix this major problem/annoyance which is when I highli...
I have read this question and this page linked to in the question, as well as dozens of other articles about debugging asp classic with VS but it's still not clicking for me. I am using VS 2010. The files I want to debug live on a remote server. I have installed the Remote Debugger on the server. I opened the website and attached to the...
I am trying to use SMO in visual studio 2010 express. Every time I start a new project I have to hunt for the SMO DLLs via Solutions Explorer | Add Reference by browsing for them. How can I get them to show up as one of the options listed by default in the .NET tab? Better yet, how can I adjust the default console application to inclu...
I have searched for two weeks, every night, exhaustively reading forum threads and trying all suggested solutions no matter how outlandish. Just as is the case with the many many forum threads about this same issue, the site works fine on my development machine. It deploys with no errors. It works from the production server and reads ...
In the Code Snippet Manager I chose "Language: Visual C#" and added a folder containing one .snippet file I created. Then, when editing a .cs file, I try to insert a snippet using ctrl+k ctrl+x but my newly added folder does not show in the list. I'm I missing something? Do you have to specifically tell IntelliSense which snippets you ...
I've come across a strange behaviour in Visual Studio 2010. When using embedded resources (files which are added to my C# project and for which the Build Action property is set to Embedded Resource), the files are included in the output assembly as binary data. Listing the resources is straightforward: class Program { static void M...
Im using VS2010, C# 4.0, NHibernate and NUnit in a project Im working on.. In doing database tests I've come across a wierd problem.. When I run my tests, nunit-agent.exe crashes for no apparent reason.. I've since then discovered that when i debug my tests, I get the following exception in the TestFixtureSetup method: TypeInitializa...
Hi, How do I repeat column header (captions) in RDLC reports? It says here http://msdn.microsoft.com/EN-US/library/735D1EE7-3C89-46D8-A346-504DB10F33E1.aspx#TableNoGroups: To repeat or freeze column headings for the tablix member, select the static row that is labeled (Static). The properties pane displays the properties for the sel...
As the title says, I am using a full version of VS2010 Ultimate and everytime I try to do a schema comparison VS crashes. The debug error is: Unhandled exception at 0x75549617 in devenv.exe: 0xE0434352: 0xe0434352. Anyone had this issue and can you help? thanks ...
how to setting-up visual studio 2010 to set as auto-increment version of project on each build? this feature isn't exist on vs2010? ...
Dear Community, I am working on a small program which aims to modify my main, top-level application binary file post-build. In order to fully automate the process, I need to obtain a valid path to the binary, e. g. ../debug/application.exe or ../release/application.exe. My problem is, that I need to get the binary path independently o...
I have a c# project using version 4.0 of the .net framework, and running on VS 2010. I have created a tree view populated with some extended tree nodes. I want the user to be able to copy, cut, and paste these nodes to the clipboard via a context menu or keyboard shortcuts (and not just drag-drop). The code runs fine when copying, but w...
Hi guys, I was making a program that rounds up numbers with various decimal places, so as an example 2001.3666 would end up as 2001.37, I managed to make this work by adding 0.005 then times 100 and converted to a int and then divided again by 100. Everything worked fine, no issues there, was having some fun making some loops too and ...
We upgraded our .net 3.5 projects (c#) to .net 4.0. When you look at the project file there are two tags that I'm trying to make sense out of: <RequiredTargetFramework>3.5</RequiredTargetFramework> <TargetFrameworkVersion>4.0</TargetFrameworkVersion> Why are there two seemingly similar tags with different values? ...