Advertisement

Experts have come up with some helpful tips for getting a solution to your problem fast.

 

Welcome! If you have any general questions about Experts Exchange, feel free to ask me.

 
Top MS Visual C++ Solutions: 1 - 25 of 59
 
I passed values for below function:-   HANDLE PortSIP_initialize(SIPCallbackEvent * callbackEvent,                                 int maxLines,                                 const char * userName,                                 const char * authName,                ...
Hello,    In other environments, the linker emits a .map file, where the linker lists the size of each function, in your C++ program.   How do developers see the linker output, in Visual St...
Hi, My primary question is, given the attached error message, and assuming that there is no debug info in the exe throwing it, and nothing written to the event log, where can I start trying...
Hello, I am trying to compile C code with Visual C++ Express. When it comes to Linking, It gives error LNK2019: unresolved external symbol _index error. Index is a C string function....
Hello, I am migrating an application from VC++ 6.0 To VS 2005 .NET. It's an unmamaged, native C++ with MFC code. The Application.exe works fine in my machine in both debug and release ve...
hi i  developped a visual c++ windows form application to send and recerive data from serial port, i used for that purpose an activex done by eltima: www.eltima.com i finished the applicati...
I am getting the following error each time I open IE. (See Attached Screen Shot). Any help is appreciated.
Greetings: I have an application with one tab.  On this tab I have placed a DataGrid View.  I also have an SQL database with one table and one stored procedure that will return the results ...
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 ...
Greetings: I have some old (VS 6.0) dialog boxes that use the browse button [ . . . ]  to find and open files. How is this done in VS 2005?  I don't see this button anywhere on the ToolB...
Hello All I've been running a Console App in C++ for years now. It would be really great if I could open new windows to output messages in, even if they were super simple like the consol...
I have a C application, compiled in VC++ 6.0 for Windows 98/2000/XP/Vista. When the user chooses to exit the application, the program typically confirms that they really want to exit. I woul...
Hello everyone I have a small program that use the System.Net namespace in Visual Studio. And it working fine after i compile it in Release mode on my computer. However, i can't run it on a...
hi expert how i convert following c heade to pascal. i convert but not work. please convert it into pascal . i dont understand typedef union and into struct how work and how convert to sim...
Hi, How can I select the default folder in my "Browse For Folder" dialog box (SHBrowseForFolder) ? I have only found the way to set the default ROOT of my list by initializing the pidlRo...
. .* :: ?: # ## the above c++ operators i know, cannot be overloaded. I am looking for an explanation behind this reasoning.
Ive a C++ program running under windows XP which is getting a new message periodically from a database and encrypt it (using Rijndael Algorithm) before sending it via TCP/IP socket. My probl...
I have been programming with VB.net, but am now assigned to migrate a program written in Visual C++ 2005 that uses a lot of database calls. The program currently retrieves data from a VAX serv...
I have a Win32 DLL project which builds perfectly on my VS2005(pro) machine running XP32(pro). On a newer machine with VS2008(standard)  running XP64 the same code fails to link with the follo...
I want to create or download software that will let users draw simple shapes( circles and rectangles) and text and be able to resize then interactively in my VC++ 6 or 2008 versions of MFC.
I want to get information about windows user log on.... I know that the function GetUserName I get Windows User Name, but I´d like to get User Id and Session(for example: Console). Do know ...
How to move cursor to the point what have coordinate assigned before .
Dont get it - trying to put a charstring into a TCHAR: ..... char thisstring[1024]; .. ... len = strlen(thisstring);  *value = new TCHAR[len + 1];  mbstowcs(*value, thisstring ,len); ....
Hi Experts, I've opened a VS2003 project and converted it to VS2008.  I'm getting the error above - no idea how to fix this.  I'm pretty sure it's supposed to be MFC90 for VS2008....   C...
I had error C2065: 'CString' : undeclared identifier when building win32 console app EXE. I need to use CString variable in the future. how to get it valid? Thanks.