Replacing dll and editor folder does not solve the problem. It seems that there is a bug. After playing with it for while I found out that if I changed the dock property to None (had it as Fill) then the control was being "partially" displayed. So my workaround is to set the dock to fill in the ready event. private void pinEditWinFormControl1_Ready(object sender) { pinEditWinFormControl1.File = _documentPath; pinEditWinFormControl1.Dock = DockStyle.Fill; doc = pinEditWinFormControl1.Document as IHTMLDocument2; } I am now trying to set up the spell function. I have entered the key for it but I still get the "thanks you for using pinEditSpell evaluation!"
Is there anywhere where you explain what .Spell() .SpellClear() and .SpellRun() actually do? Having same samples will be a plus! What I want to do is...start with spell checker off. If the users presses the spell button then bad written words would be highlighted, and as the user types now words will be "immediately" (based on SpellDelay) highlighted too. If the user wants to turn it off then all highlighting will disappear.
So I was calling pinEditWinFormControl1.Spell(); and pinEditWinFormControl1.SpellClear(); respectevely but the outcome was not as expected.
Thanks