Do not use on any
shared computer
July 24, 2008 07:21pm pdt

Experts Exchange is proud to recognize the top quarterly Experts of 2008. These Experts have risen to the top, so CONGRATULATIONS!

 

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

 
Time Tested MS Visual C++ Solutions: 101 - 125 of 342
null
Hi everyone Got a problem with understanding how this works. I am trying to read in the data values of a P5 GAME glove, And i want to create a Windows form to display the data that i have retr...
Is that possible?
Hi, I am having a problem of killing the excel process when I am automating through visual c++ .net.  I'm not sure if it matters but I am using microsoft office 2003.   The main function t...
I am converting a VC++ 6.0 app to VC++.net (2005) and I am having problems finding a solve to converting time to long. In VC6 I used to following:       long ltime;      time( &ltime ); What do I n...
I've got a test program (see code below) that sends and receives 1400 bytes using UDP.  The first time through the while loop, the timeout will occur, causing the buffer to be sent.  During th...
Hi, I have a sutiation, where I need to update RasPhone.pbk file present under c:\documents and settings\all users\application data\microsoft\network\connections\pbk;  Here is my sample RasPho...
See Attached error message.  Its a clean machine.  Latest XP patches.  I got this error message very far along in the installation process.  I selected V C++ only. ( that's the only thing i'm ...
hi all,   i am having a hard time understanding all this stuff. i mean, i have gotten help in doing it, but i don't really understand what is going on...   for instance:   What is WAIT_...
Take a look at this code: What i want is, to declare one time string and to set it value, so i don't need to write it's value lots of times for each button and so on...
I have recently started messing with C++ DLLs in C# but it seems that I am restricted to the kind of usage I have. I am able to export functions in a DLL that have C++ linkage but C# cannot fi...
Hi all, I'm trying to "wrap" my unmanaged DirectShow video player class so I can use it in a WinForm.  I'm am approching this by creating a COM object in VS .NET 2003.  I need to add a prop...
Hi there, Does anyone know how to create an asynchronous thread in (not managed) Visual C++ 2005 ? In another question, (http://www.experts-exchange.com/Microsoft/Development/.NET/Visual...
Good day folks, I have a client running a Dell workstation with Windows XP S2 installed. It's a home computer. Recently she has been getting the following error message . TITLE BAR OF WINDOW M...
Hi I have a project that was written in VC++ 6.0 and compiles fine in that, but if I try to compile it under Visual Studio .NET, everything breaks. I managed to fix some of it by fiddling w...
hi All, Does any one know any tool to convert the makefile to .dsp? Thanks Milind
I'm doing a window forms program with vc++. I have a menu that opens a file. But, when I click on the open menu, it does not show the openfiledialog box. My first queestion is that why i...
Hi Experts, Our application needs to load a file into a std::ifstream object. The filename contains Slovenian characters - i.e. Latin Small Letter Z with Caron. (U+017E). Assume that I have...
I'm trying to open and read a file line by line and save each line to the array. //this part is just openfiledialog and get the filename OpenFileDialog^ fDialog = gcnew OpenFileDialog;  f...
Hi, I am a newbie to visual c++ environment although i do programming in c++. I am trying to read a filename from a file open dialog box and then  trying to read its contents so that they ca...
Hi, I have made this simple code to read the lines from a file into a vector of strings. void ReadLines(ifstream* pFile, vector<string>& lines) {         int i = 0;     pFile->clear();...
I'm trying to convert a .eml file into a .msg file. I have a bit of code (in VB .NET) that reads the .eml file from disk and creates a CDO.Message object, and I have a code snippet (C++, from ...
Hello, I want to be able to print out certain integer and float values to a textbox with some text before the values so that the user knows whats being printed. I need to print the values in ...
When I compile a solution in Visual Studio .NET 2003, I see error: "error PRJ0003 : Error spawning 'cl.exe'" Any ideas on what could be wrong? Thanks.
Strange issue.  I cannot view the designer for a specific form.  In the past I have seen this occur when certain design time references have not been added.  In this case I'm not sure and I ca...
I'm trying to find a simple way to list files in a given directory.  I need an array that contains these file names.