Code::Blocks Forums

User forums => Help => Topic started by: timertick_t on February 01, 2019, 04:10:18 pm

Title: CB doesn't show member functions
Post by: timertick_t on February 01, 2019, 04:10:18 pm
Hi guys,
I have a freshly installed CB IDE 17.12 for C++ with mingw. When I'm doing this
Code
    string phrase = "0123456789";

    cout << phrase << endl;
    cout << phrase. // with the dot now the methods of the class 'string' for the object 'phrase',
    // e.g. phrase.find() should be visible. But they are not.

I don't see the pull-down menu right next to the cursor to select a method from. Any idea how to solve?