Forum Navigation
You need to log in to create posts and topics.

Re: TavleView Spell checker problems

Posted by: bernfbe <bernfbe@...>

Eugen wrote:

> There is a problem when I use the spell checker. As you can see in the screenshot below, no item menu is checked, when I click the right button of the mouse.

Confirmed, and needs further investigation. Meanwhile, a workaround is to remove the scrolling textview from the nib and build it programmatically.

// ---------------
_scrollView1 = 10
_TextView1 = 11

VOID LOCAL FN BuilWindow
'~'1
NibWindow 1, @"Window"
scrollview _scrollView1, (20,20,269,106)
textview _TextView1,, _scrollView1
TextSetString( _TextView1, @"This is a simple text" )
END FN
'~'1

Fn BuilWindow

HandleEvents
// ---------------

Thanks,

Bernie