What library are you using for text coloring (I'm assuming this is console programming)? That's going to make an impact on how you're going to change the highlighting color.
Are you using any special #include 's? Anything other than, I don't know, stdio, iostream, etc?
Because if you're not, then you're stuck with the console and it's beautiful black-and-white display. And when you say "textcolor and textbackground," do you mean the things in the Properties page of your compiler? Because that's probably just the color of the code you write, not the color of the stuff you print on the screen while the program is running.
cout<<"\n\t\t\t Republic of The Philippines\n";
cout<<"\t\t\t AMA Computer Learning Center\n";
cout<<"\t\t\t\t Cabanatuan City\n\n\n";
textbackground(5);
cout<<"\t\t\t\t[A] - Programmer\n\n";
cout<<"\t\t\t\t[M] - Multiplication Table\n\n";
cout<<"\t\t\t\t[X] - Exit\n\n\n\n\n";
cout<<"\t\t\t\tEnter Your Choice: ";
cin>>choice;
switch(choice)
{
case 'A': case 'a':
{
clrscr();
cout<<"\n\t\t\t\tProgrammer /3\n\n\n";
cout<<"\t\tName: Novie F. Mangalinao\n\n";
cout<<"\t\tAge: 18 yrs. old\n\n";
cout<<"\t\tBirthday: March 18, 1992\n\n";
cout<<"\t\tAddress: 61 San Pedro Sta. Rosa, Nueva Ecija\n\n";
cout<<"\t\tSchool: AMA Computer Learning Center\n\n";
cout<<"\n\t\tMotto: Better to be Hated for who I am,";
cout<<"\n\t\t\t than Loved for who I am not""";
cout<<"\n\n\n\n\n\t\t\tPress [X] to Exit..";
break;
}
case 'M': case 'm':
{
clrscr();
int n,o;
cout<<"\n\t\t\t\tMULTIPLCATION TABLE\n\n";
delay(300);
for(n=1;n<=10;n++)
{
for(o=1;o<=10;o++)
cout<<n*o<<"\t";
delay(500);
cout<<endl;
}
break;
}
case 'X': case 'x':
{
clrscr();
cout<<"\n\n\n\t Press the following to exit from the Command Prompt:";
cout<<"\n\n\n\n\n\t\t\t\t1.) Press ANY KEY";
cout<<"\n\n\t\t\t\t2.) Press ALT + X";
cout<<"\n\n\t\t\t\t3.) Type the word EXIT";
break;
}
default:
cout<<"\n\n\t\t\t\tNone of the Choices!";
You need to set the background color to something other than black. Use the TextAttributes variable or the SetBkColor() function (I think, look it up in your documentation).