Click here to Skip to main content
15,893,486 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All.

Facing the Problem of spell check implementation in Windows forms.

In the application if we entering any character in textbox and click the spell check button , the form will come front of the application. but if we moving to some other application (eg. Outlook, Word, ) then spell check goes back. the appliaction frozes. and till otherwise close the spell check we can't able to open the application..

Could one of the them help me to solve the issue.. Thanks in advance.
Posted
Updated 27-Jan-15 23:55pm
Comments
ZurdoDev 28-Jan-15 7:47am    
Need a lot more info on what you're doing.

1 solution

Did you try setting the "TopMost" property to true for the spell check form? Also try binding a handler to the LostFocus event of your form, and in the handler call
C#
myForm.BringToFront()
Using threading may be another solution.
 
Share this answer
 
Comments
Member 11408311 29-Jan-15 3:58am    
Thanks for your response.

Basically we designed with toolstripbutton. So for this we dont have bringTofront() method...

Could you please provide the logic to apply for threading for spell check..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900