Click here to Skip to main content
16,011,988 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Driver not capable at Update (same as the previous reply) Pin
ElizabethC11-Mar-03 12:52
ElizabethC11-Mar-03 12:52 
GeneralRe: Driver not capable at Update Pin
ramki kicha11-Mar-03 17:45
sussramki kicha11-Mar-03 17:45 
GeneralRe: Driver not capable at Update Pin
ElizabethC12-Mar-03 12:29
ElizabethC12-Mar-03 12:29 
Generalwebbrowser2 navigate help Pin
Doom11-Mar-03 5:18
Doom11-Mar-03 5:18 
GeneralRe: webbrowser2 navigate help Pin
Big Art11-Mar-03 6:08
Big Art11-Mar-03 6:08 
GeneralRe: webbrowser2 navigate help Pin
Doom11-Mar-03 6:53
Doom11-Mar-03 6:53 
GeneralCListCtrl Pin
JensB11-Mar-03 5:15
JensB11-Mar-03 5:15 
GeneralRe: CListCtrl Pin
Joan M11-Mar-03 5:28
professionalJoan M11-Mar-03 5:28 
A little sample:
//------------------------------------------------
// Obtain the current style and style ex...
DWORD dwExStyle = this->m_cLCtrlParametritzacions.GetExtendedStyle();
DWORD dwStyle = this->m_cLCtrlParametritzacions.GetStyle();
//------------------------------------------------
// Modify the styles as desired
dwStyle |= LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOSORTHEADER;
dwExStyle |= LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES;   <code>this is what you want</code>
//------------------------------------------------
// Apply those styles...
this->m_cLCtrlParametritzacions.ModifyStyle(0,dwStyle);
this->m_cLCtrlParametritzacions.SetExtendedStyle(dwExStyle);  <code>Here is where the modification gets applied</code>
//------------------------------------------------
// Hack the items height using a imagelist whitout icons...
this->m_cilHackItemHeight.Create(1,30,ILC_COLOR,1,1);
this->m_cLCtrlParametritzacions.SetImageList(&m_cilHackItemHeight,LVSIL_SMALL);

Hope this helps...
GeneralRe: CListCtrl Pin
JensB11-Mar-03 20:33
JensB11-Mar-03 20:33 
GeneralRe: CListCtrl Pin
Joan M12-Mar-03 20:29
professionalJoan M12-Mar-03 20:29 
GeneralRe: CListCtrl Pin
JensB13-Mar-03 21:03
JensB13-Mar-03 21:03 
GeneralDatabase Pin
Dennis L11-Mar-03 5:00
Dennis L11-Mar-03 5:00 
GeneralRe: Database Pin
ramki kicha11-Mar-03 17:50
sussramki kicha11-Mar-03 17:50 
GeneralRe: Database Pin
Michael P Butler11-Mar-03 21:54
Michael P Butler11-Mar-03 21:54 
Generalget the last # from a 2 digit sum Pin
InternetMill11-Mar-03 4:35
InternetMill11-Mar-03 4:35 
GeneralRe: get the last # from a 2 digit sum Pin
Chris Losinger11-Mar-03 4:43
professionalChris Losinger11-Mar-03 4:43 
GeneralRe: get the last # from a 2 digit sum Pin
Nitron11-Mar-03 4:47
Nitron11-Mar-03 4:47 
GeneralRe: get the last # from a 2 digit sum Pin
Chris Losinger11-Mar-03 5:06
professionalChris Losinger11-Mar-03 5:06 
GeneralRe: get the last # from a 2 digit sum Pin
Tim Smith11-Mar-03 5:41
Tim Smith11-Mar-03 5:41 
GeneralRe: get the last # from a 2 digit sum Pin
Chris Losinger11-Mar-03 6:58
professionalChris Losinger11-Mar-03 6:58 
GeneralRe: get the last # from a 2 digit sum Pin
Tim Smith11-Mar-03 7:02
Tim Smith11-Mar-03 7:02 
GeneralRe: get the last # from a 2 digit sum Pin
Nitron11-Mar-03 4:45
Nitron11-Mar-03 4:45 
GeneralRe: get the last # from a 2 digit sum Pin
Roger Allen11-Mar-03 5:37
Roger Allen11-Mar-03 5:37 
GeneralRe: get the last # from a 2 digit sum Pin
João Paulo Figueira11-Mar-03 5:41
professionalJoão Paulo Figueira11-Mar-03 5:41 
GeneralRe: get the last # from a 2 digit sum Pin
mijarral11-Mar-03 6:33
mijarral11-Mar-03 6:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.