http://www.perlmonks.org?node_id=989899


in reply to Re^3: Win32::GUI questions
in thread Win32::GUI questions

I meant these:

Details of the hook function are at http://msdn2.microsoft.com/en-us/library/ms646931.aspx

Details of the ListView set view are at http://msdn2.microsoft.com/en-us/library/ms671377.aspx
I think you should be able to in the hook function:

HWND hListView; case WM_INITDIALOG:<br/> hListView=GetDlgItem(hDlg,LISTVIEW_ID); ListView_SetView(hListView,LV_VIEW_DETAILS); return ;

You could find the value of LISTVIEW_ID, by opening a file open dialog box and spy on on using spy++ to get the id of the control.

from here: <href>http://social.msdn.microsoft.com/Forums/en/windowsuidevelopment/thread/4b35d064-9007-4e5f-9b78-f888374f78d2</href>

Can you guide, how to apply this in Perl?

Many TIA

Helen