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: 176 - 200 of 207
 
Hopefully this is an easy one. When I compile the project in msvc6, _wtof doesnt exist, so I wrote it myself as follows: #if ( _MSC_VER < 1400) // provide implementations for all compiler...
hi, the command Command > filename.txt is the way to redirect the output to a file How do i redirect the output to hidden file??
I've got a method that has a parameter of type LPCTSTR and I want to write that to a text file.  I've done next to no C++ development and am used to just using strings, so this is very frustra...
i want the major difference between them
I'm having a problem with initializing the inherited class. I am getting the error message below. What am I doing wrong? error C2065: 'office' : undeclared identifier -- president implement...
Hi all, Is there any way in C++ to check if the Outlook is configured (i.e. has an account) or needs to be configured ? I am making a C++ app. that integrates with Outlook, and when starti...
Just a quick question:  If I was overloading the input operator >> my function would be: (istream& operator >>(istream& ins, point& target) {ins>>target.x>>target.y; return ins;} Woul...
I'm having a hard time demonstrating my program in main.cpp. http://www.experts-exchange.com/Programming/Languages/CPP/Q_25334559.html#a27602199 The files on the project can be found in that...
For some reason, I get a "missing template arguments before '(' token" error. Can anyone help me find a way to fix this error?  The attached snippet is my poly.template file.  Thanks in advan...
We write C++, C, and Assembly for Freescale MCF5485 Microcontroller.  This microcontroller runs Embedded Application software in our target board.  We use GNU Make and GNU build tools to build...
I was thinking function retvalue() has string of "test" allocated in stack but when the function returns, the stack will be out of scope, and int main() pst will have garbage. But it is workin...
For starters, you should be able to compile and execute the source below.   Background info:  Every 20 I have a suite of functions I'd like to execute...For instance the first 20....I'd like t...
I am using the clock_gettime function like so: struct timespec timestampNew; clock_gettime(CLOCK_REALTIME, &timestampNew); This gives me a time in secs and nanosecs. How do I put the...
As the program steps through each montly payment, (I used a 30 year term to test with) the remaining balance gets to zero at around payment 178 and remains at zero through to the last month. I...
How would you achieve this? Write a program that prints the integers from 1 through 1000, one per line. RESTRICTION: Your solution may not use any control structures (if, while, for, ?:, e...
Hello, This is the task I have to do and I am not sure how I should approach this (or even what this is really asking me to do) Can someone give me like an outline of what the program needs t...
the applcation  i want to  run  it  work  with registry and with systems file i want to  run this application  from  remote desktop  in  windows server 2003 but  it didn't work  why ?? and...
Hi, What the trouble is with this code when arguments function (argc , argv ) is used in a UNICODE project. I set in EDI VC6 parameter settings "11.1.1.111 10 the_name"       else if (__...
Hi experts, It has been a few years since I last wrote code in C++.  I was wondering if could help me.  I would like to read the contents of a local text file into a *char and then strip of...
Dear experts, We developed a C++ program using CURL (curl.haxx.se) while doing FTP. The program will work on HP-UX systems. Is there a way to compile and package the program in such a way t...
Hi all. I am beginning a project in which I would like to pull specific lines of information from a log file. More specifically - Posted below - All of the log files on all of the computers ar...
Hi. I'm relatively new to OpenGL (in VC++) and trying to make a scene with a robot which has a shoulder, elbow, wrist and hand to have a robot arm function. I just want this arm to be r...
I am trying to access a folder that is "C:\WINDOWS\system32\wbem\repository" but any time my program tries to access it, it is redirected automatically to "C:\WINDOWS\syswow64\wbem" which does...
this code i used it before and it run  perfect  with  no  error but  when i  used it in my code  i put it  in the middle of the code but it run and  make the xml  file and it stop  wri...
How can I (is it possible to) push back Derived1 and Derived2 into the vector.  See source below