a project very same as Microsoft Word word correction system

  • Thread starter Thread starter fAnSKyer
  • Start date Start date
F

fAnSKyer

very same as Microsoft Word word correction, or like Gmail's word
correction, if you choose a word, it gives you several candidate and if
none is okay, user can type one. I want develop it in C#2005

Now the problem is, How to do it? How to represent each word, just like
button? [but button is very ugly -_-b] I think it may require Draw
something? using panel? Can anybody give me an idea? or any examples
Thanks a lot
 
Thanks a lot, it works, but my project focus on correct, I wonder if I
can treat every single word as a link or buttonlink or button so that
when user click on it, it will invoke another process [draw? ] ask the
user to type a new one or choose a candidate.

Thanks :P


Simon said:
You do know that you can run MSWord in the background and get it to do this
for you.
http://www.codeproject.com/csharp/spellcheckdemo.asp



fAnSKyer said:
very same as Microsoft Word word correction, or like Gmail's word
correction, if you choose a word, it gives you several candidate and if
none is okay, user can type one. I want develop it in C#2005

Now the problem is, How to do it? How to represent each word, just like
button? [but button is very ugly -_-b] I think it may require Draw
something? using panel? Can anybody give me an idea? or any examples
Thanks a lot
 
I'm not 100% sure what you mean.
I'm assuming the text is in a rich text box or something? If so, to show the
user which word i'm talking about i'd use the .Select method of the
richtextbox to selected the word and then display the alterantive candidate
words in a listbox or such like.
Is that any help?


fAnSKyer said:
Thanks a lot, it works, but my project focus on correct, I wonder if I
can treat every single word as a link or buttonlink or button so that
when user click on it, it will invoke another process [draw? ] ask the
user to type a new one or choose a candidate.

Thanks :P


Simon said:
You do know that you can run MSWord in the background and get it to do this
for you.
http://www.codeproject.com/csharp/spellcheckdemo.asp



fAnSKyer said:
very same as Microsoft Word word correction, or like Gmail's word
correction, if you choose a word, it gives you several candidate and if
none is okay, user can type one. I want develop it in C#2005

Now the problem is, How to do it? How to represent each word, just like
button? [but button is very ugly -_-b] I think it may require Draw
something? using panel? Can anybody give me an idea? or any examples
Thanks a lot
 
This helps a lot, Thanks, What I mean is User can use mouse click on a
text, and then a menu appeared, have a lot of alternative candidate in
it, the user click one of it and the text changed.

Richtextbox, I just tried, Select method can not implemented by a mouse
order? [or can? ] and how to know left click on a single word? Do you
know? or You can suggest some source that have the answer? I am newbie
: )

Thanks a lot



Simon said:
I'm not 100% sure what you mean.
I'm assuming the text is in a rich text box or something? If so, to show the
user which word i'm talking about i'd use the .Select method of the
richtextbox to selected the word and then display the alterantive candidate
words in a listbox or such like.
Is that any help?


fAnSKyer said:
Thanks a lot, it works, but my project focus on correct, I wonder if I
can treat every single word as a link or buttonlink or button so that
when user click on it, it will invoke another process [draw? ] ask the
user to type a new one or choose a candidate.

Thanks :P


Simon said:
You do know that you can run MSWord in the background and get it to do this
for you.
http://www.codeproject.com/csharp/spellcheckdemo.asp



very same as Microsoft Word word correction, or like Gmail's word
correction, if you choose a word, it gives you several candidate and if
none is okay, user can type one. I want develop it in C#2005

Now the problem is, How to do it? How to represent each word, just like
button? [but button is very ugly -_-b] I think it may require Draw
something? using panel? Can anybody give me an idea? or any examples
Thanks a lot
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top