News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

code completion

Started by wally, April 11, 2009, 12:45:03 PM

Previous topic - Next topic

wally


is there a way to get the methods and properties of an
object during coding, similar as code completion does ?

regs wally

   

ollydbg

Quote from: wally on April 11, 2009, 12:45:03 PM

is there a way to get the methods and properties of an
object during coding, similar as code completion does ?

regs wally

   

Which do you mean by "Get the methods and properties of an object".
Can you give more detail?
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

wally


similar to VB or Gambas ...
e.g. gauge->SetValue()
SetValue is an method of gauge object, right ?