I looked at the Additional Dependencies and I notice that all my libs are debug libs (with d extension), but still my application is crashed if I use the line code
QItemSelectionModel *pSlectionModel = pTableWidget->selectionModel();
In release mode the application not crashing, so I used the _DEBUG macro to distinguish the two cases.
YOu can't mix debug and release library. They're not compatible. They each have their version of the runtime.
In addition the vcproj file is very well done and if you want to switch from debug to release (and vice versa) just use the appropriate combobox on the toolbar and everything should be fine.
Bookmarks