fatal error LNK1103: debugging information corrupt; recompile module
We are having a problem between MS Visual C++ 2008 and MS Visual C++ 2005. Recently we started building our library with 2008. If we take this library and try to create a debug build of our API using...
View ArticleOpenGL: VBO and a broken Graphics Card
I have recently tried the use of VBO. I just copy pasted the code from this site(This site prevents me from posting a URL) It compiles fine and seems running well. However, I noticed on the taskmanager...
View ArticleConsole application task doesn't close
When I run a program (code is below) on Visual studio express, it executes fine (a window opens with the output and closes), but then VS freezes and I have to terminate it using the task manager, then...
View Articletips from vivion
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Expenses { class Expense { private string[] categories = { "Travel",...
View Articletips from jk
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BookList { class Book { public string Author { get; set; } public string...
View Articlelibmysql.lib missing and Visual C++ 2008 Express
Hi Mate,I spent a lot of time to search for solution for the following problem.I just install VC++ 2008, then try to connect to MySQL Server 5.6. I can build the application successfully. But when I...
View ArticleQuery about list control selection and actions
Hi,I have to create a list control in my dialog based application and I did that. Now I want to make the list control as, "I will select a row (list) then that will be highlighted and I will right...
View Articleerror C2679: binary '=' : no operator found which takes a right-hand operand...
HiI am migrating my application from vc++ 0.6 to vc++ 2013I am sending th epart of code and highlighting the error line===========================CODE=========================// Get the recordset for...
View Articleerror C2440: 'initializing' : cannot convert from 'ATL::CComPtr' to '_com_ptr_t'
HiiiI am migrating my application from vc++ 0.6 to vc++ 2013, iam facing the following error in one of the cpp fileThe part of the code is given below and i have highlited the error line...
View ArticleUnable to receive data through serial port
Hi All, Currently I try to write a serial port communication in VC++ to transfer data from PC and robot via XBee transmitter. But after I wrote some commands to poll data from robot, I can not receive...
View ArticleSerial communication not working. ReadFile() has a problem.
Hi All,Currently I try to use serial communication (XBee) to communicate between the PC and the robot via vc++. I have done the same thing via MATLAB. So there is no problem for the hardware. After I...
View ArticleFile Upload(Web Based Internet Explorer) need Code
Hi I want to select a file using fileupload through code (with out human invervention). when i run the code fileupload control should automatically pick the file from specific path. advance thanks.hi
View ArticleI believe this to be a bug in VS2013
According to 12.3.1/2 this should compile in VS2013struct A { A() = default; explicit A(A const&) {} }; int main() { A a; A b = static_cast<A>(1); A c = A(1); }
View ArticleWhat is " ^% "
Hey kids, what is the meaning of this "^%" [hat and percentage] symbol for the .net? It is very hard to bing this symble, not even in here I could find any reference to it. Where can I find info about...
View ArticleMFC 2010 connect with SQL sever 2008
Hi all I am a developer about Visual C++ 2010. I develop many applications which are used MFC 2010 library I want connect MFC2010 and SQL sever 2008 but I don't find any the way to implement this...
View ArticleIcmpSendEcho2 broken in Windows 2008 Server?
Testing some existing code with Windows 2008 Server. IcmpSendEcho2 seems to crash on Windows 2008 Server.I tried the code sample from the SDK and I saw the same issue (see code below). The exact sample...
View ArticleAccelerator table in dialog box
I'm programming with the Win32 API, not MFC.I need to use an accelerator table within a modal dialog. Is there any way of doing this ?
View ArticleBinary Search in Multi Dimensional Vector
HI Folks, Is there any option to apply binary_search algorithm for multidimesional (2D) Vector ?
View ArticleNeed help making a simple log
Hello,I am new to both C++ and the visual C++ environment. I am trying to create a log in which there is a drop down box with defined dates in it, when one of the dates is selected a text box is filled...
View ArticleDirectShow webcam recording
I need to use DirectShow (C++) for recording a webcam and saving the data to a file. I really don't know how DirectShow works, and this is a "stage" (working experience), and at school we didn't study...
View Article