Thank you! I changed it, changed my pathname, and got it to build without any warning messages....... but nothing shows up.

Qt Code:
  1. QString qindex = itoa(index, buffer, 10);
  2. QString filename("img/");
  3. filename += qindex;
  4. filename += ".png";
  5.  
  6. if (!qimg.load(filename))
  7. qWarning("Failed to load target image");
  8. if (qimg.isNull())
  9. qWarning("Failed to load target image");
  10.  
  11. img_board[j][i] = new QLabel;
  12. img_board[j][i]->setPixmap(qimg);
  13.  
  14. if (img_board[j][i] == NULL)
  15. qWarning("Failed to load target image");
To copy to clipboard, switch view to plain text mode 

...where, in the .h file, I define...

Qt Code:
  1. vector<vector<QLabel*> > img_board;
To copy to clipboard, switch view to plain text mode 

Compile message is

Starting C:\Qt\qt\examples\widgets\tetrix-build-desktop\debug\tetrix.exe...
BLANK WINDOW APPEARS
I close it...
C:\Qt\qt\examples\widgets\tetrix-build-desktop\debug\tetrix.exe exited with code 0