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

Can you explain how to apply those examples in Perl?

What examples?

Try ddg://win32::GUI OFNHookProc, ddg://win32::GUI HOOK

Replies are listed 'Best First'.
Re^4: Win32::GUI questions
by HelenCr (Monk) on Aug 27, 2012 at 02:32 UTC

    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