C++ Builder problem (Edit-box) !!
One very minor point. Pouya''s code is nt correct C++, because he is using his for loop counter outside of the loop. While this is valid in MSVC, it is NOT correct C++. The C++ spec says that a veriable declared in a for loop, has the same scope as the loop, so you would need to declare the variable ''t'' outside of the for loop.
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement