#command Syntax
Posted: Fri Oct 18, 2019 6:20 am
hi,
when have a Method using Xbase++ Syntax like this
i can use
to change it to harbour Style
now when have this Code how to enhance it to harbour Syntax
who can help me to translate it 
p.s. this Progressbar also have ITaskbarList3 Interface to display Animation in Taskbar-Icon
when have a Method using Xbase++ Syntax like this
Code: Select all
METHOD XbpPBar:SetMaximum( nMaximum )Code: Select all
#xcommand METHOD <!ClassName!>:<MethodName> => METHOD <MethodName> CLASS <ClassName>now when have this Code how to enhance it to harbour Syntax
Code: Select all
CLASS XbpPBar FROM XbpIWindow, DataRef
PROTECTED:
VAR nMaximum
...
EXPORTED:
ASSIGN METHOD SetMaximum() VAR Maximum
ACCESS METHOD GetMaximum() VAR Maximum
...
ENDCLASS
METHOD XbpPBar:SetMaximum( nMaximum )
...
p.s. this Progressbar also have ITaskbarList3 Interface to display Animation in Taskbar-Icon