What do you think about Windows 7? Write a review or a how-to about Microsoft's newest product and earn unlimited points!

 

Having problems asking a question? Have a general question about Experts Exchange? Let us know!

 
Time Tested MS Visual C++ Solutions: 1 - 25 of 568
 
Hello! I got a DataGridView, one column is set to checkbox. I want to grab event when those checkbox are being clicked on. Currently I'm trying to do it via CellContentClick, but I have no ...
Hi, I have created a C++ project - a Class Library. The class is very basic and has just one method:      public __gc class IMLibrary      {           void TestMethod();      }; I'm including the head...
Hi All, Error     1     The command "C:\Documents and Settings\sudhakar\Desktop\Prithvi\Prithvi\HAT.DriveThruDetector\\..\..\..\..\PostBuild.bat C:\Documents and Settings\sudhakar\Desktop\Prith...
I am trying to port an MSVC++ 6.0  to Visual Studio 2005.  My project accesses header files (.h) from another library.  How do I specify the include path for that project?  In MSVC++ I would u...
I have an MFC app (Visual Studio 2005). It runs perfectly on a Win 2000 test PC. On a Win XP test PC I get an error referring to "side-by-side configuration information" Basically the ap...
How do i run a (dos) command from a peice of c++ code in Visual c++? I am trying to run this command "pdftk A=test2.pdf cat A4 A7 output test.pdf" which works well from the command prompt,...
I'm still getting  this error when I build my C++ program in Microsoft Visual Studio 2005  - Project : error PRJ0003 : Error spawning 'cmd.exe'  I have taken the steps in "Error spawning 'comd...
Hello, When executing the following code I get this error: Run-Time Check Failure #2 - Stack around the variable 'b' was corrupted. Can someone tell me why as it's really annoying and p...
Hi! I want get the path to the executable. In mfc this is done with GetProcessImageFileName or GetModuleFileNameEx, but this is not possible using a 'standard' c++.. Argv[0] only returns...
I passed values for below function:-   HANDLE PortSIP_initialize(SIPCallbackEvent * callbackEvent,                                 int maxLines,                                 const char * userName,                                 const char * authName,                ...
Hi i am using Intel's computer vision library (opencv), and it has an image structure called IplImage, which has this definition: typedef struct _IplImage { int nSize; /* size of iplImage ...
Hi All,  Can anyone tell me how to resolve the following linking error: nafxcwd.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argv nafxcwd.lib(appcore.obj) : error LNK20...
I've written the following code using Visual C++, Console Based application for Win32. The code gives "Compiler Error C2065  'identifier' : undeclared identifier". What could be the reson ...
Hi,      I am a new bee to Visual C++, I have some problem. This is my main program ---------------------------------------------------------------------------------------- #include "s...
How do you get a list of all the currently running processes on a computer? I am writing an app that gets the list, and compares it to a pre-made list of processes (list of strings).  If th...
In a mixed C++ DLL that uses MFC (called from VB.NET) I have the narrowed down the problem to two lines of code:       SimpleClass * sim = new SimpleClass;       delete sim; when steppi...
Hi How can i get a program to read the number of lines in a text file, I already have a program which read a text file and displays it to the screen but in addition to that i want it to also ...
Hi i have just started on the basics of C++ and have already hit a snag with Visual C++ Command line compiler i recieve this error LINK : fatal error LNK1104: cannot open file 'kernel32....
Hi I was wondering what was the difference between between wchar_t and char data type in C++/CLI mode The only two clue I have is that wchar_t stands for wide-character witch I am not sure ...
Hello I have problems on installing a service using InstallUtil.exe. Currently, Im studying on how services work so what i have done is i created a project using Visual C++.NET and i choose...
How can I convert a string that holds a value like "_ü" to wstring? std::string str("_ü"); wstring wstr (str.begin(), str.end()); does not work.
Hi, I encountered the 'Debug Assertion Failed!' when trying to build a project with Microsoft Visual C++ 6.0. It happens when I use std::string and try to print the string out.  It says:...
Im using visual studio 2008 and am working with windows form application . I can write data to a particular cell using Microsoft:Office::Interop::Excel: Worksheet->Cells->Item[x,y]=DataIwantTo...
I love photodraw v2, but is there anything similar, but better on the market?
Hello, i need some help with handling wstrings correctly. --- PART 1 --- How could i convert things to wstring ? int a = 10; wstring mystr = (L"foo"); mystr.append(ITOW(a)); Does som...