My list view is in report view. How do i make it so when someone selects an item, it shows the blue bar go all the way across?
you need to send a message in wm_create right after you create your listview.
invoke SendMessage,YourListViewHandle,LVM_SETEXTENDEDLISTVIEWSTYLE,0,LVS_EX_FULLROWSELECT OR LVS_EX_ONECLICKACTIVATE
Thanks, worked perfect