Click here to Skip to main content
15,889,527 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionc++ download and execute with stadistics Pin
adan-rivera17-Mar-10 7:55
adan-rivera17-Mar-10 7:55 
QuestionRe: c++ download and execute with stadistics Pin
David Crow17-Mar-10 10:05
David Crow17-Mar-10 10:05 
AnswerRe: c++ download and execute with stadistics Pin
adan-rivera17-Mar-10 12:11
adan-rivera17-Mar-10 12:11 
GeneralRe: c++ download and execute with stadistics Pin
adan-rivera17-Mar-10 12:14
adan-rivera17-Mar-10 12:14 
AnswerRe: c++ download and execute with stadistics Pin
Iain Clarke, Warrior Programmer18-Mar-10 10:47
Iain Clarke, Warrior Programmer18-Mar-10 10:47 
QuestionCan't find any examples using the Microsoft WEBDAV API Pin
Pit M.17-Mar-10 6:00
Pit M.17-Mar-10 6:00 
AnswerRe: Can't find any examples using the Microsoft WEBDAV API Pin
ShadowUz23-Jan-11 15:51
ShadowUz23-Jan-11 15:51 
QuestionHow can I put CListCtrlEx into CListView ? Pin
mesajflaviu17-Mar-10 5:33
mesajflaviu17-Mar-10 5:33 
Hy . I used ListCtrlEx class into DialogBased and goes perfectly ( by the way , a transform this version of project into VC6 project , if anyone needed , just mail me , I will be very glad to shared ) , and I try to use into SDI project , obvious , CView based on CListView :

void CTestList3View::OnInitialUpdate()
{
	CListView::OnInitialUpdate();
	CListCtrlEx& List1 = (CListCtrlEx&)GetListCtrl();;
	List1.SetExtendedStyle(LVS_EX_FULLROWSELECT | LVS_EX_GRIDLINES | LVS_EX_HEADERDRAGDROP | LVS_EX_INFOTIP);

	List1.InsertColumn(0, "Integer", LVCFMT_LEFT, 90);
	List1.InsertColumn(1, "Date Time", LVCFMT_LEFT, 90);
	List1.InsertColumn(2, "String", LVCFMT_LEFT, 60);
	List1.InsertColumn(3, "Color Select", LVCFMT_LEFT, 90);
	List1.InsertColumn(4, "Read Only Column", LVCFMT_LEFT, 50);
/* from here , crashed on !!! */
	CString str;
	str.Format("%d", rand());
	List1.InsertItem(0, str);
	List1.SetItemText(0, 1, "15/03/2010");
	List1.SetItemText(0, 2, "test");
	List1.SetItemText(0, 3, "blue");
	List1.SetItemText(0, 4, "read only");
}

What I'm wrong ? How can I use this CListCtrlEx class in CListView ?
AnswerRe: How can I put CListCtrlEx into CListView ? Pin
Eugen Podsypalnikov17-Mar-10 5:58
Eugen Podsypalnikov17-Mar-10 5:58 
GeneralRe: How can I put CListCtrlEx into CListView ? Pin
mesajflaviu17-Mar-10 6:48
mesajflaviu17-Mar-10 6:48 
GeneralRe: How can I put CListCtrlEx into CListView ? Pin
Eugen Podsypalnikov17-Mar-10 9:16
Eugen Podsypalnikov17-Mar-10 9:16 
QuestionRe: How can I put CListCtrlEx into CListView ? Pin
David Crow17-Mar-10 10:06
David Crow17-Mar-10 10:06 
AnswerRe: How can I put CListCtrlEx into CListView ? [modified] Pin
Rolf Kristensen17-Mar-10 12:10
Rolf Kristensen17-Mar-10 12:10 
GeneralRe: How can I put CListCtrlEx into CListView ? Pin
mesajflaviu17-Mar-10 21:04
mesajflaviu17-Mar-10 21:04 
GeneralRe: How can I put CListCtrlEx into CListView ? Pin
mesajflaviu17-Mar-10 21:10
mesajflaviu17-Mar-10 21:10 
QuestionRe: How can I put CListCtrlEx into CListView ? Pin
David Crow18-Mar-10 8:52
David Crow18-Mar-10 8:52 
AnswerRe: How can I put CListCtrlEx into CListView ? Pin
mesajflaviu20-Mar-10 8:09
mesajflaviu20-Mar-10 8:09 
Questionapplication configuration is incorrect Pin
john563217-Mar-10 3:06
john563217-Mar-10 3:06 
AnswerRe: application configuration is incorrect Pin
CPallini17-Mar-10 3:14
mveCPallini17-Mar-10 3:14 
GeneralRe: application configuration is incorrect Pin
john563217-Mar-10 3:27
john563217-Mar-10 3:27 
GeneralRe: application configuration is incorrect Pin
CPallini17-Mar-10 3:39
mveCPallini17-Mar-10 3:39 
AnswerRe: application configuration is incorrect Pin
Cedric Moonen17-Mar-10 3:14
Cedric Moonen17-Mar-10 3:14 
GeneralRe: application configuration is incorrect Pin
xiayingang17-Mar-10 4:43
xiayingang17-Mar-10 4:43 
GeneralRe: application configuration is incorrect Pin
Cedric Moonen17-Mar-10 4:59
Cedric Moonen17-Mar-10 4:59 
GeneralRe: application configuration is incorrect Pin
CPallini17-Mar-10 6:45
mveCPallini17-Mar-10 6:45 

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.