Are you using visual basic or C++? Well I was working on a very detailed reply with code but it was deleted by mistaked so I'm making this short and simple. The program isn't going to know what words start with A to bring up in the list if you don't tell it what to bring up.
If the user enters A, use a function to call out a certain list of words that begin with a.
Pseudo code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
include <iostream>
usingnamespace std;
void Awords()
{
cout<<"words beginning with A go here";
}
int main()
{
user enters a;
Awords(); // calls Awords function, printing list of words that begin with a
etc.