I'm sorry I've been posting so much, I'm still learning. :) My question how do you fill a combo using a varible. for example I want to fill my combo box in Visual C++ with something like this.
char *names[2];
names[0] = "Joe";
names[1] = "Billy";
names[2] = "Bob";
Please note this is an example, I realize that I could just fill it myself w/ this example.
Thanx again,
Atrus