Advertisement

Experts Exchange is proud to recognize the top Experts of 2008. Alter egos aside, these Experts are technological superheroes!

 

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

 
Time Tested MS Visual C++ Solutions: 26 - 50 of 342
null
Hi experts, Heres the scenario: I'm doing a communications module which will be used by other users to send string messages and object files (i.e. images jpg). Im using UDP mode to support th...
My application starts with Form1. And i add a button on Form1, so when i click on it, it will Go to Form2 and Close Form1. I want the form1 to be close and use no resources from my comp...
My notebook keeps gigiving me this error message: ----------------------------------------------------------------- Microsoft Visual C++ Runtime Library Runtime error! Program: c:\program ...
I need to send a filename through a textBox, to an  ifstream object, replacing the line: // ifstream input_data("score_data.txt");  ifstream input_data(textBox1->Text->ToCharArray(0,10)); ...
Hello, I tried to compile a MFC program and get the following errors: c:\Program Files\Microsoft Visual Studio 9.0\VC\atlmfc\include\../src/mfc/AfxImpl.h(625) : error C2059: syntax error...
Building a service .exe using Visual Studio 2005 ver 8.0.50727.762. When I try to use MFC static, always get the linker error as in the title. Exactly the same build configuration works fine i...
Hi Expert. How convert WCHAR to TCHAR? Thank.
I am running a programme in VC++ IDE 2005 Express,Microsoft;I get the follwing message..how can I enable the CLR option? I read the MSDN threads but do not really get it... The error is fa...
Here is the code, why it don't work? And what should i do to make it to work :/ For console it worked perfectly :/ using sentence.c_str i tried also sentence.c_str() but same error :/ : ...
Hi, I have the following C++ code snippet that always give me the error. The type A in Assembly ........... is not marked as serializable. when I try to run it.  My class already has ...
Hi, I have a MFC windows application orginally programmed in vc++ 6.0.I build the application in Microsoft Visual Studio .NET 2003 and able to deploy in windows xp embedded PC without insta...
I have a dll that is compiled with win32 and clr functions.  I have a function that passes the following char variable, const char* varible1, const char* var3 I want to convert all of thes...
I have been working on these particular sorts for a few days and I have been trying to debug four errors 3 of which are the same. I have been googled these errors and cannot figure out where I...
Im new to c++ and i need some help. Im trying to convert system string to TCHAR but i having trobble doing it String *pw = this->txtpw->Text; TCHAR szPassword[32] = pw; How to do thi...
I tested a class I'd written with an MFC wrapper, and then took steps to convert the class to DLL.  Knowing the DLL needed to export to Delphi, I avoided using MFC and tried for Win32, but I l...
I am getting the following error message, when I run multiple reports at the same time: 'Error in File UNKNOWN.RPT: Access to report file denied. Another program may be using it'. Front end ...
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 all, I am attempting to use Visual Studio 2005 remote debugging to launch and debug an application that we manually transfer over to another system.  We use windows XP Target Designer to...
Hi, I have a user that keeps getting the following error, when she logs off or logs on the computer.   Microsoft Visual C++ Runtime Library Runtime Error! Program: C:\Program Files\HP\Pr...
Hi, Im writing a win32 application with VC6++. I need to add thread functionality into it. Can anyone give me sample code for multithreading with win32 non MFC project? Thanks
Anyone know how to convert a System::String to a std::string?  I have a windows console application that has some functionallity I would like to use without having to change the eniter code.  ...
experts, does anybody have a solution to convert a timestamp in C (time_t datatype) into a .NET compatible datatype? After that, this type should be useable for inserting it into a Stored Pr...
I'm getting the compilation errors listed below in my application. obviously, they have something to do with repeated definition of windows networking data types. The application uses both A...
I want to place all my bitmaps in a resource dll which I've already made and loaded into my program. Now the problem is, I have an existing Bitmap class which can get a bitmap from a file or ...
Hello a couple of questions on VC++.NET strings I have a managed class and I want to create a private string member, TCHAR szMyString; coming from VC++, my preferred ctring type is TCHA...