Our application is:
Hardware configuration is a dual Xeon server running Windows 7/64bit. Each Xeon has it's own 12gb RAM in a [NUMA][1] configuration with a bridge connecting two memory regions together.
All software is written using VS2008 in c++ and compiled as 64 bit applications.
A Generation app creates a large shared memory...
I have a dataset. I added a column "Tags". I need to run a function to update the value, for each row one at a time, for the "Tags" column. Here's what I've tried so far, tell me what I'm missing.
public System.Data.DataSet PopulateDataGrid(int nViewMode)
{
System.Data.DataSet ds = _data.GetGridView(nViewMode)
ds.Tables[0].Column...
Hey all, i am new at the ViewState and i am looking to see what values are stored within it. I know how to loop through an array to check for a value but i do not know how to go about doing that for a ViewState("test") property.
Let's say i have added "bob, tom, Jim" to a ViewState called ViewState("test"). I would like to be able to se...
HttpWebRequest web;
try
{
web = (HttpWebRequest)HttpWebRequest.Create("website.name");
WebResponse Response = web.GetResponse();
Stream WebStream = Response.GetResponseStream();
StreamReader Reader = new StreamReader(WebStream);
string data = Reader.ReadToEnd();...
I just installed VS2010 via the web installer on a Win7 machine that already had 2008. Everytime I open a 2010 sln file it launches 2008 and errors saying the solution was created with a newer version. I can do an "Open With..." and choose 2010 or the 2010 version selector, but the option to "Always Open With" is grayed out. I went in...
I have inherited two VB.Net web projects, on one ("goodproj"), the debugger works, allowing me to step through the code. On the other ("badproj"), it doesn't.
On badproj, when I hit F5 or the green arrow to debug, the website builds without error, fires up the development web server and launches the browser showing the website. BUT... ...
I'm working on a large, inherited C++ (really, mostly C) project developed and maintained under Visual Studio 2008. Technically, in Visual Studio terms, it is a "solution" consisting of eight "projects", and therein appears to be the rub.
As I'm sure most of you know, Visual Studio grays out the code that it believes to be #ifdef'd out....
When the user browses to the source location (because PDBs are from a non-local build), where is that mapping stored?
If it's in the .suo, is there any way to programmatically add a mapping? (as the sln is generated in this case any way)
...
I just installed visual studio 2008 on windows xp, I got this error when windows boots up. It's pretty annoying. Can some one help me get rid of it? I sort of know it has something to do with the path?
...
Do you know of any tutorial that could help me make a custom button in vb.net. Because visual studio 2008 doesn't allow you to create buttons in circle or triangular shapes. I've tried searching and found this one but, I cannot make use of it because there are lots of errors. http://www.codeproject.com/KB/buttons/CButton.aspx
...
Hi, I used below code and tried to debug in Visual studio 2008 by pressing F10.
//test.cpp
#include<iostream>
using namespace std;
int main(void)
{
#line 100 "test.cpp"
cout<<"Inside main()"<<endl;
return 0;
}
Below is the debugger screen shot.
#line 100 tells compiler to go to line 100 to get its next line.
As 100th line do...
I am surprised not to find it in 2010, I would be very sad if it has disappeared as it is very useful to train and practice at the same time so where to activate it?
...
Hi,
I have some simple code using Point Gray's FlyCapture libraries:
#include <iostream>
#include "FlyCapture2.h"
using namespace std;
int main(){
cout << "Hello World!";
FlyCapture2::BusManager m;
return 0;
}
The above code gives these link error at compile time:
1>------ Build started: Project: CJMVideo, Configuratio...
When I try to debug the solution I got this message that said that debugin cud not start in the web server, debugin remote components are not registered or arent been executen in the web server. Make sure you are executen the correct version of the msvsmon in the remote machine.
What can I do?
...
Does anyone know how to add an com (active x) control to an asp form? I have ticked the object in the "tools->chose toolbox items" list but it never actually appears in the toolbox.
I have tested with a standard C# win forms application and then the com object appears in the toolbox. When i try to use the com object in an asp.net applic...
I've got a VS2008 C++ solution containing one project which is a Win32 console application. I have developed a few classes that I want to re-use in another project. Apart from copying the source files into new projects, what's the correct way to turn my classes into some sort of reusable component?
Should I be using a standard DLL, or a...
Whatever i changed in the page in visual studio it is showing same page during it is working or restarting until i clean the project manually.
What should i do to show changes without cleaning the project?
wrt_preview_main.html file isn't reloading automatically. It always contains old code of my index.html.
...
In the application settings screen for the express edition, the Configuration combo box is disabled, so I can't change things like the assembly name and description depending on the configuration.
The first question is, is this box enabled in the full version?
Secondly, to get around this, I edited the AssemblyInfo file manually and us...
VS2008 project. Created local database (SSCE). Created dataset with tableadapter. Dragged dataset and tableadapter to the form so I can reference it in code.
New records successfully add to the dataset but will not commit back to the database. Gives no error or clue why it won't work.
TableAdapter insert statement was created autom...
I am having trouble with cvPyrMeansShiftFiltering() function in OpenCV. Any call to it results in an "Assertion failed" message.
The following code fails on the line that calls cvPryMeanShiftFiltering:
#include "cv.h"
#include "highgui.h"
#include "cxcore.h"
#include <iostream>
using namespace std;
int main()
{
string imageFile =...