I think it's that I do log in instead of having remember me checked. This time it seems like there was a post update during the time from login, showing the thank...
After the upgrade I now get all new posts marked as "The threads below have not been updated since your last visit but still contain unread posts.". Even brand new threads are marked as that.
Maybe we should ask for a "What C++ teachers should teach and why" forum (and of course the other langauges as well)? After all, we all do represent the industry and we do know what we want people...
I can't say that a particular brand is the best choice for any purpose. Compiling and linking is CPU and disc I/O demanding and since disc I/O is a bottleneck I would prefer a laptop with a SSD drive...
Redundant info but _inp & _outp isn't supported in an OS of today. The older OS supported access to the hardware but newer OS does not so as Arjay say the access needs a device driver.
Frankly guys, how is the OP to benefit from the last posts? I feel that many threads ends up in a a lot of posts that blame the teachers of teaching the wrong stuff and giving the wrong type of...
You say that you "know" that the stored pointers all are pointers to objects that inherits MyBaseClass but for debug purposes you could use dynamic_cast when returning the pointer. At least in debug...
Right-click on your solution (in the solution explorer), select add new project and make that project be an exe project (console or form). From the new project call/use what's public in your class...
From one Swedish guy to another. Since you use MSVC (judging from what forum you post in) you already have one of the best debuggers installed so don't forget to use it. I can guarantee that you will...
Do you mean that you want the loop to start with the last line in the file and then run for each line backwards? If so I don't know of any way of doing that. After all linefeed is just a character in...
Have you tried rearranging the variables (shuffle the variables around m_bFlag)? With a bit of luck it might produce something that's easier to detect like a access violation. It's been a long time...