Reputation: 1501
i am trying to develop a window form chat application using c# with asp.net 3.5 framework.
in that form i want to insert emoticons as we found in yahoo, hotmail etc messenger.
can anyone tell me how i can implement that thing as it is done in messenger.
please help me.
Upvotes: 1
Views: 6597
Reputation: 1
Emoticons in asp.net using simple javascript http://csharpdemos.blogspot.in/2012/10/insert-smiley-images-automatically-in.html And in windows forms http://csharpdemos.blogspot.in/2012/10/how-to-insert-smiley-images-in.html
Upvotes: -2
Reputation: 1501
After a very hard working i got solution
http://www.codeproject.com/KB/edit/csexrichtextbox.aspx
you can share it with other so that they can make applications as i need it.
thanks for your supports.
Upvotes: 2
Reputation: 4806
If you want selectable text with inserted emoticon images, I think you have 3 relatively simple options:
Upvotes: 1
Reputation: 46
I think you can use combination of ASCII characters. You can try with ALT + numeric value to get some smileys. For e.g. combination of ':', '-' and ')' will give you :-). Ascii for ')' is ALT + 41. similarly you can try different options.
Upvotes: 0