New answers tagged visual-studio-2010
1
This is because some assemblies are not loaded correctly.
Possible things that you can do if your project is a WPF is described here
It's a bug in Entity FrameWork with Visual Studio and is described in depth in this SO question
anyway clean your project and rebuild it again might fix the problem.
0
Here is an example property sheet that worked for me in VS2010:
mysheet.props
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
...
0
After further investigation, I realize that, even though the files were shown as removed/added in TortoiseHg Workbench, they in fact were renamed correctly.
If you click a file with a "+" next to it in the Workbench, if that file was in fact a rename, the header for the code window will show something like this:
Project/Folder/RenamedFile.cs (renamed ...
1
If you have any property in the FlowViewModel for the value of the text area to bind to, you can use it.
If you have any property with the name S1, the value of the text area will be automatically bound.
Because, in ASP.Net MVC, there are no server side controls that you can refer to. Everything is model bound automatically.
Else, you can either ...
0
I would do it like this (straightforward):
Dim strings() As String = {"a","b","c","d","e"}
Dim stringsToCheck() As String = {"a","a","b","c","c","c","d","e","e"}
Dim results(strings.length) as Integer
For Each strToCheck as String in stringsToCheck
For Each str As String in strings
If strToCheck.Equals(str) Then
...
1
Set AutoGeneratedColumns property to false before assigning ItemsSource to datagridview
4
This is because the constructor has only one parameter and it's not marked explicit, so the compiler automatically turns:
Y obj1 = 2;
Into:
Y obj1(2);
To prevent this behaviour, use:
explicit Y(int ) {
cout << "Y(int)\n";
}
(and compilation will fail in your case).
3
This is called copy initialization. Y(int ) is a conversion constructor. that is
single-parameter constructor that is declared without the function
specifier explicit
the compiler is allowed to elide the extra copy and use your conversion constructor. Which means
Y obj1 = 2; // Line 1
is equivalent to
Y obj1(2); // Line 1
10
Why?
Because under certain conditions (specified by paragraph 12.8/31 of the C++11 Standard) calls to the copy constructor or move constructor can be elided even though those special functions (or the destructor) have side effects:
This elision of copy/move
operations, called copy elision, is permitted in the following circumstances (which may be ...
0
Here is all steps to add debugger in Qt 4.8.3 I It worked for me.
http://qtitkvtkhelp.blogspot.in/2012/11/qt-installation-prerequisite-1.html
HTH
2
C++ has a built in string class, std::string, why don't you use it?
Your assignment semantics are broken. You need an assignment operator and a copy constructor that copy the memory held by str.
In C++ it's essential to have consistent copy-constructor, assignment and destructor. This is the Rule of three DeadMG referred to. You should read the related ...
4
Firstly, just use std::string. Secondly, Rule of Three violation. Thirdly, you delete a local variable in 1's main, which is wrong.
0
Should this statement not have a column reference?
Code:
rTable.Cells(rTable.Cells.Count).Value
0
Well, the option that requires the least changes to your markup is to add the multiple property to your select. Then, change the action method to accept a params int[] ids, iterate through them, and you should be good-to-go. At worst, you might have to change your parameter to a string and do a Split() on ,, but I don't recall that being how the model binder ...
0
You could import the xml right into your datatable, using the ReadXML method of the table.
0
Your variable myQuery contains the query expression, not the result. In LINQ, you have to run the query after configuring it.
There are many ways to run.
For Each over the data
Call the .ToARrya(), .ToList() or ToDictionary() methods.
textbox1.Text = myQuery.ToArray();
Looks like you are working with XML, so you many need to use some Linq To XML ...
0
Check-out my answer here: Lost the content of ASPX page on computer restart before Saving the file
NEXT TIME YOU WILL BE SAVED ... :D
1
I would like to change this so that the .sln file and the .vcxproj
files are in the same directory, essentially getting rid of this
extra "Project" directory.
Uncheck "Create directory for solution" checkbox in "New Project" dialog.
Copying all of the .vxcproj files into the same directory as the .sln
file doesn't work as it will still attempt to find ...
0
As a corollary to what Robbert said, have you tried declaring the tweet.tweetID.ToString() as its own variable? If nothing else, you can look at it in debug and confirm that it's passing the correct information to the SPList object.
foreach(var tweet in Tweets)
{
string tweetID = tweet.tweetID.ToString();
SPQuery query = new Query();
query.Query ...
0
I would use the String.Join method. If you want these as delimited with ,, for example, do something like this (my apologies if VB.NET syntax is bad, not practiced):
Dim movieList = String.Join( _
", ", _
From movie In BookXDocument.<movie> Select movie...<genres>.Value)
Dim languageList = String.Join( _
", ", _
From movie In ...
0
I was having the same issue with a brand new ASP.NET project in Visual Studio 2012.
When trying to open Project --> ASP.NET Configuration from Visual Studio, it was saying: An error was encountered. Please return to the previous page and try again.
The path to my application was: E:\\_Dev\C#\Site
I changed the Path to: E:\\_Dev\Web\Site and guess what? It ...
0
You can take a look at this address.
It shows you how to enable it.
http://www.ademiller.com/blogs/tech/2010/10/visual-studio-2010-adding-intellisense-support-for-cuda-c/
0
Since the Timer is within the UpdatePanel the Timer will re-instantiate itself when the UpdatePanel is refreshed and therefore continue to and more javascript.
What you should do is put your Timer outside the UpdatePanel and link it with Triggers.
The following will creates a Timer that will update a Panel after it calls GetStatus from the code-behind.
...
0
Here is a hack to to try making Brace Completer work with all Express editions (I can't test if it works).
Change the extension of the package from vsix to zip.
Locate the file extension.vsixmanifest and open it in a text editor.
There is a list of supported versions. Add a new one called Express_All (for each version of VS you want).
...
0
While developing C++ code, Visual Studio 2010 started crashing frequently and at random times after I enabled the Task List.
As an alternative to using the Task List, I am now simply using the Find in Files tool (Ctrl+Shift+F) and searching for the string TODO as an alternative.
1
Here is my solution. Visual Studio 2010 references: time(), gmtime_s()
#include <iomanip>
#include <sstream>
#include <time.h>
/**
* Get the current time as a W3C UTC time string.
*
* @return A time string; the empty string if something goes wrong.
*/
std::string GetUTCTimeString(void)
{
time_t seconds_since_the_epoch;
struct ...
1
It's hard to say with the provided information and I don't understand exactly what you are doing but a few things seems wrong there.
The you lost me part
Let's look at this first :
Dim rectangle As Integer
rectangle = Val(TextBox1.Text)
TextBox1.Text = Convert.ToString(rectangle)
Form2.RectangleShape1.Width = Val(TextBox1.Text)
So you declare an ...
0
If I knew more about your table structure and XML document I can try and give you a better example
Depending on how many rows you are inserting I would add the data in chunks to help not lock up the database. Typically I pass 25,000 chunks at a time. If your rows are more than 25000 then for loop through it only doing 25000 at a time.
On the SQL Side ...
0
Not sure how you create proxies for your services.
Steps below are for Visual Studio "Add Service Reference" feature using.
Move your contracts to dedicated project. Store only contacts without implementation there.
Add references to Contracts projects for Service and Client projects.
Implement service in Service using contracts from Contracts and run ...
0
Though Old post, sharing my experience :D
I faced the same problem with a file today and overcame it successfully. :D
Felt freaking heavenly after getting my file back ... :D \m/ :D
Here is the solution. Actually, there can be two types of solution of recovering corrupted files I found.
Scenario: Your file is corrupted (ie. null or space everywhere in ...
0
aspx file content replaced by whitespace characters, Is there anyway to recover aspx files? [closed]
I faced the same problem with a file today and overcame it successfully. :D
Felt freaking heavenly after getting my file back ... :D \m/ :D
Here is the solution. Actually, there can be two types of solution of recovering corrupted files I found.
Scenario: Your file is corrupted (ie. null or space everywhere in the file while the size is ok)
...
0
I faced the same problem with a file today and overcame it successfully. :D
Felt freaking heavenly after getting my file back ... :D \m/ :D
Here is the solution. Actually, there can be two types of solution of recovering corrupted files I found.
Scenario: Your file is corrupted (ie. null or space everywhere in the file while the size is ok)
...
0
The reference assemblies are empty placeholder assemblies installed with visual studio that are used during compilation.
Try repairing visual studio.
0
If you are looking to debug your application with something other then Visual Studio, you have a few options. The first is Fiddler2 (http://fiddler2.com/) which allows you to view all traffic between the client browser and the host server. Another option is to start logging everything. This is especially useful for applications where you need to keep an ...
0
Close the form design view before compiling the project.
If that did not work (which worked for me but not for you as you've mentioned in your comment) then I think it's something about your custom control like trying to connect to a server and validating it's licensing. Check your internet traffic with something like Wireshark. I hope that helps.
0
Fixed. The problem was with Visual Studio not being able to update internally generated datasets for tables/charts/ etc. To update them, go to the report. When the report is active, The "Report" menu will show up in the menu bar. Go to View->Report Data. This opens up a side pane with datasets that are being used internally. right-click on the dataset you ...
0
In general, if you're using Visual Basic, you'll always need to, at a minimum, guarantee the target computer has the proper .NET Framework installed.
If that's the case, then you can just deploy your .exe from your Console or WIndows Application project, and it will work, provided you don't use any references or types outside of the standard framework ...
0
Are you using the visual studio experimental instance for debugging? You can enable this in the Project properties (right click your project and choose properties). Go to the 'Debug' tab and add the following line to 'Command line arguments': /rootsuffix Exp
More information about the experimental instance can be found on msdn.
0
I know this question is a bit old, but...
You can start a new project as a WPF project, then right-click it in the solution explorer and change "Start As" to console application. Your WPF app will still run exactly the same, but a console window will appear where you can use things like Console.WriteLine() calls.
You could then accept a command-line ...
0
already answered here:
http://sivanandareddyg.blogspot.com/2012/06/creating-uninstall-shortcut-for-your.html
How to include Uninstall MyProgram.exe in visual studio while creating package in c#
http://www.c-sharpcorner.com/uploadfile/nipuntomar/making-a-uninstall-shortcut-with-visual-studio-setup-project/
0
The easiest way...
I map a key chord to the command
Unfortunately, this only works when a project node is selected, probably because solution folders aren't actually folders and therefore it cannot be guaranteed that they actually match a folder in the file system.
0
This works for me.
Using VS2010, I have several projects on the go and all of them needs to #include a few .h files from a common project where I sort of keep them there as shared .h files. If I use something like #define ACTION in the project I am working with, it won't be recognized in any of the shared project files when using #ifdef ACTION while ...
0
I think the only reason that Microsoft provides an intrinsic version of 32-bit SSE2 exp() is the standard calling conventions. The 32-bit calling conventions require the operand to be pushed on the main stack, and the result to be returned in the top register of the FPU stack. If you have SSE2 code generation enabled, then the return value is likely to be ...
0
Try to use another config file (not the one from your project) and RESTART Visual Studio:
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.executionengine.x86.exe.config
(32-bit)
or
C:\Program Files (x86)\Microsoft Visual Studio ...
5
Neither of them is faster or lighter than the other. At least in any measurable way. (maybe cv::Mat has 4 bytes more than an IplImage, which won't hurt compared to the 12.000.000 bytes you need to store an image data into it)
Neither of them offer faster computations, nor more tools to process it.
All they offer is a pointer to some data, and some extra ...
0
I had a similar issue where i used a configtransform in a web project. Even though i set my configtransform to not remove the compilation debug=true, and enabled define DEBUG constant, i was not able to make it generate the debug symbols when in a certain compilation mode.
It turned out that there is some properties defining whether to generate debug ...
1
I do use the AttachTo Visual Studio Extension. It provides shortcuts under the tool menu:
And attaching the debugger takes half a second. A really great tool :)
0
You should install Microsoft Console Debugger (that is part "Debugging Tools for Windows" in wdk/sdk, just make sure you check it when install or can be found as a standalone install in the link above)
0
In VS2010 you can do this - http://www.c-sharpcorner.com/UploadFile/vendettamit/auto-attach-debugger-to-any-process-in-visual-studio/ , in 2012 unfortunately macros have been removed.
Haven´t tried this for years but I think this should still work too (but for IISExpress):
...
2
I don't think that's available by default.
You could use reattach : http://visualstudiogallery.msdn.microsoft.com/8cccc206-b9de-42ef-8f5a-160ad0f017ae for easing the process to attach every time.
Top 50 recent answers are included





