@Lasith
Your problems:
You only once call the returning function of the index, and in the designer. (In fact, when ui->name text changes, the function should be called every time.)
@Lasith said in Getting QStringList text to line edit based on a string inserted on another line edit:
QString index;
Name=ui->name->text();
for(int i=0;i<names.size();i++)
{
if(names[i]==Name){
index=i;
}
You want the string but in your cycle the 'i' of the integer. Why do not you pay attention to this(index = i)? Try compile the app? If yes, the compiler would inform you about it.
From your profile it seems that you are using Qt too several months. But it does not seem to be at all.
Do not try to conquer the peak, learn to walk first.