when have a Method using Xbase++ Syntax like this
- Code: Select all Expand view
- METHOD XbpPBar:SetMaximum( nMaximum )
i can use
- Code: Select all Expand view
- #xcommand METHOD <!ClassName!>:<MethodName> => METHOD <MethodName> CLASS <ClassName>
now when have this Code how to enhance it to harbour Syntax
- Code: Select all Expand view
CLASS XbpPBar FROM XbpIWindow, DataRef
PROTECTED:
VAR nMaximum
...
EXPORTED:
ASSIGN METHOD SetMaximum() VAR Maximum
ACCESS METHOD GetMaximum() VAR Maximum
...
ENDCLASS
METHOD XbpPBar:SetMaximum( nMaximum )
...
who can help me to translate it
p.s. this Progressbar also have ITaskbarList3 Interface to display Animation in Taskbar-Icon
http://www.hmgforum.com/download/file.php?id=9165