2011/6/24 tobias :
> hi,
>
>> PUBLIC SUB _new(hSubject AS Editor)
>>
>> hEditor = hSubject
>> object.attach(hSubject, me, "heditor")
>>
>> END
>>
>
> thanks a lot. i just read this, too, but didn't notice that it could be
> significant.
> anyway, thanks,
> tobi
>
> -
hi,
> PUBLIC SUB _new(hSubject AS Editor)
>
> hEditor = hSubject
> object.attach(hSubject, me, "heditor")
>
> END
>
thanks a lot. i just read this, too, but didn't notice that it could be
significant.
anyway, thanks,
tobi
--
PUBLIC SUB _new(hSubject AS Editor)
hEditor = hSubject
object.attach(hSubject, me, "heditor")
END
2011/6/24 tobias :
> hi everyone,
>
> i want to get the Editor_Highlight event of an Editor on a form in a
> separate class, too. i have in the following in that class:
>
> PRIVATE hEditor AS Ed
hi everyone,
i want to get the Editor_Highlight event of an Editor on a form in a
separate class, too. i have in the following in that class:
PRIVATE hEditor AS Editor
PUBLIC SUB _new(hSubject AS Editor)
hEditor = hSubject
END
PUBLIC SUB hEditor_Highlight()
PRINT Highlight.Text
END