f1024 - 2007-02-02

Hi!
To begin with, I would like to stress that I'm the very beginner user of Dev C++ 4.9.9.2 and I did look for the answer for my question in my friend Google - to no avail.

Let's assume that I have written that code:

/////////////////////////////

include <vector>

using namespace std;
vector<int> v;

int main()
{
v.push_back(
return 0;
}
/////////////////////////////
When I write in code: " v.push_back( " the editor shows me all available ways of using function push_back(). I really like it. In Borland C++ Builder 6.0 if I wrote: " v. ", it would show me all possible functions, properties etc of object "v". Unfortunately, when I tried the same trick in Dev C++, it didn't show anything:(.
Is there any possibility to enable that option?

Thank you very much in advance.