You are to create a Windows application that contains a single form. The form will have three controls, a textbox, a button displaying the text “Parse” and a suitable UI control, preferably scrollable, used to display the results. After entering the text and clicking the Parse button, the program should output the number of times each letter in the alphabet occurs in the textbox. Case sensitivity is not required.
For example, if the user enters “baaad” as the text and hits the Parse Button, the result control should display:
There are 3 A's
There are 1 B's
There are 0 C's
There are 1 D's
There are 0 E's
There are 0 F's
etc...
This my my homework assignment.. Lol First let me say that im Lost!!!!!
I think i figured out how to get the correct count out of the text ive entered in the first textbox... But i dont know how to get it to correctly display "There are 3 A's" etc... in the result control...
Thank You in Advance