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
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.