Code::Blocks Forums

User forums => Help => Topic started by: leonhainu on April 18, 2007, 04:37:25 pm

Title: How can i get function call list in Code::Blocks
Post by: leonhainu on April 18, 2007, 04:37:25 pm
Dear community friends:
     Sorry for my pool English first,i'm a Rookie for c::b..and i've solved some of the problems myself by following the instruction articles(wiki:User Documentation) such as Installing Code::Blocks..
     But there is still some troubles i can't figure out...seems like lack of the specific archive.

How can i get function call list like MS VC6
  e.g.
Code
class Animal
{
    public:
        Animal(int height,int weight);
        void eat();
        void sleep();
};
int main()
{
    Animal m_cat;
    Animal m_pdog;
    m_cat.eat();  <-----How can i get class function list after input "."or"->"
    m_pdog->sleep(); 
}

Just like the screen picture shown in the Home Page:
(http://www.codeblocks.org/img/screenshots/scr1_tiny.jpg)

thanks for any of your hints....
Title: Re: How can i get function call list in Code::Blocks
Post by: philippedawans on April 18, 2007, 06:09:27 pm
you want to have help on a function like in visual c++. If that is your problem, it's mine too. Tell me when you will find

Here is a conversation I had Maybe it will help you
Title: Re: How can i get function call list in Code::Blocks
Post by: philippedawans on April 18, 2007, 06:15:02 pm
http://forums.codeblocks.org/index.php?topic=5186.new#new
Title: Re: How can i get function call list in Code::Blocks
Post by: raph on April 18, 2007, 06:23:16 pm
Are you using RC2?
If so, please use a current nightly build.
Title: Re: How can i get function call list in Code::Blocks
Post by: leonhainu on April 18, 2007, 08:31:04 pm
Are you using RC2?
If so, please use a current nightly build.

philippedawans
raph
thank u any way..My current version of c::b is the 4.17 nightly build ...
but still cann't get what i want...

oops..i feel it's too tired to enjoy using the new IDE..what else can convice me that C::B is better than MS VC 6??
Title: Re: How can i get function call list in Code::Blocks
Post by: raph on April 18, 2007, 08:52:08 pm
Did you create a project?

Works out of the box, here:
(http://img254.imageshack.us/img254/4589/screenpg2.jpg)

oops..i feel it's too tired to enjoy using the new IDE..what else can convice me that C::B is better than MS VC 6??
Nobody will hold you back choosing your favorite ide  :wink:
Title: Re: How can i get function call list in Code::Blocks
Post by: leonhainu on April 19, 2007, 03:07:44 pm
raph,thanks a lot.. i get what i want after build a projet..damn!
i'm sorry for what i've said.may be i have to do more practices before say that !