Author Topic: code completion  (Read 3674 times)

oakyang

  • Guest
code completion
« on: September 12, 2007, 11:29:32 am »
There's a little problem in code completion.
If I start a word with a parentheses the completion will refused to work unless I add a blank.
For example, OnHelp(wxCom...  this will not work. But OnHelp( wxCom..   works fine.

Offline incorrect user

  • Multiple posting newcomer
  • *
  • Posts: 24
Re: code completion
« Reply #1 on: September 13, 2007, 12:27:28 pm »
People!! Help me please!
If i type some program like:

//-------------------------

struct sss {int xxx,yyy;} aaa;

int main()
   {

      aaa.
//         ^ (the cursos is here)
        return 0;
     
   }

//-------------------------

and press <Ctrl>+<Space> i want code completion to work and show me
some list like +----+
                  | xxx |
                  | yyy|
                  +----+
but  it does show me nothing and i'm very dissapointed!
Mabey somebody knows what problem is???
Thanx in advance!
Take quality as a rule!

Offline Der Meister

  • Regular
  • ***
  • Posts: 307
Re: code completion
« Reply #2 on: September 13, 2007, 12:38:30 pm »
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

Offline incorrect user

  • Multiple posting newcomer
  • *
  • Posts: 24
Re: code completion
« Reply #3 on: September 13, 2007, 01:21:14 pm »
Thanx a lot!!!

I have tested it and define 2 cases when code completion works correctly:


[attachment deleted by admin]
Take quality as a rule!

Offline incorrect user

  • Multiple posting newcomer
  • *
  • Posts: 24
Re: code completion
« Reply #4 on: September 13, 2007, 01:23:54 pm »
 :(One more time...

[attachment deleted by admin]
Take quality as a rule!

Offline incorrect user

  • Multiple posting newcomer
  • *
  • Posts: 24
Re: code completion
« Reply #5 on: September 13, 2007, 01:25:10 pm »
Ok! ;) Der Meister, thank U very much!
Take quality as a rule!