Visit Experts Exchange from your mobile device to search, ask, and monitor your questions. Never lose touch again.

Preview From Your Desktop
 

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

 
Top C++ Solutions: 51 - 75 of 377
 
Most of my projects I compile with the Microsoft compiler. I don't touch the optimization options in the project settings, so it's always with /GL (Enable link-time code generation) and "fast ...
Hi. I'm creating a DLL in C++ like and it have a struct like this: struct example {     int data1;     int data2;     char data3; }; I want to have a function to return a struct a...
Hi EE, how can i add a dll that i have already created to my Dev project?
I have seen many, many post on TSP. I have looked at the wiki, but none of that helps me out at all, so basically I want to program this problem solver, my program will ask for a string for na...
Hi, I need to write a logging class which will write logs into a file. It's for debugging purposes. I've tried several approaches which work well, but there's one thing I'm not sure how to ...
When I run my code it goes into a continous loop somewhere in the while statement.  The logic there is while the stack and queue is not empty to pop one element off of each and compare them, i...
Hi I would like to know, how to make a program to run only if a prefix specified. Example: running program.exe ((C++ CONSOLE APP)) it shows that program is not allowed to start, please r...
Why is it sometimes I see the two following code: What I don't understand is that with C++, why do I sometimes have a pointer as a result of a new instantiation of an object and sometimes...
Hello, i want to convert a DWORD to a byte array, anyone has a idea howto do that?
i have a exe file that compiled with borlad cbuilder5 . How can i get it source?
Have the following message when I run an *.exe file on a machine other than mine. " This application has failed to start because rtl140.bpl was no found. Re-installing the application may f...
Consider a grid. The number of columns and rows can be variable and the grid could be square or rectangular.  Column and row counts are always even numbers.  like 10x4 or 8x8, or 4x6 or 6x2 et...
Hello, In a previous question (http://www.experts-exchange.com/Q_24709872.html) I was given a few solutions, but my requirements are slightly different, and I'm unsure if any of the solutio...
Hi, I have what I think is a very simple question, but since I need a quick definitive answer I'm giving it maximum points. From C++ documentation II understand that when you have a vect...
I can't make my class work. Can someone please help me? I want to open a file and read its content. I thought it would be easy, but I get trouble when I try to run it. No compilation errors th...
hi, i was previously compiling code with g++ and now, i need to compile with mpic++ and now, i am getting this error..but when i compiled with g++ no such error... what could i do. th...
Hi, I am trying to make an application that will write protect devices like CD/DVD, Floppy, Flash Key, External hard disk etc. The devices can be connected through USB and FIREWIRE.  Window...
Hi,     I'm developing my application on Windows Mobile platform.     How do I extract GPS data from EXIF from a jpeg file? I used the sample code from http://www.windowsmobiledn.com/pr...
Please tell me good C++ Graphical Programming tutorials. for DOS Programs
Hello How can I check if a user is member of a group like IFMEMBER.exe does (including nested groups)? Is this possible using the ADSI WinNT provider? Thank you!
I am trying to print the link list created in the Main portion of the code.  I wrote the printAll function and the delete function but when I run the program it doesn't work.  I think it is ou...
Ah hello. I am back playing with templates...joy...and have found the following problem interesting.  Please consider the code below.  I have a specialization of the member function Functio...
I'm using the QWT plotting package in C++ with QT to implement some data plots.  I have a window with several QwtPlots stacked vertically using a QVBoxLayout.  Their x-axes contains the same d...
hey guys, im building a small console app and i seem to be getting some funky behavior with my pointers. im still relatively new at c++ and im a little weak on pointers. my app is a smal...
Hi I want to capture a window and even another program is over it, I want to capture that window's image. Here is code I already have. I get lpRect like this: HWND hwnd = FindWindow...