Click here to Skip to main content
15,885,876 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CMFCToolBarComboBoxButton dont work on some machines Pin
_Flaviu9-Apr-17 21:53
_Flaviu9-Apr-17 21:53 
QuestionSave the content from List Control in text file vc++ Pin
lolici22-Mar-17 4:16
lolici22-Mar-17 4:16 
SuggestionRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 4:48
David Crow22-Mar-17 4:48 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici22-Mar-17 5:23
lolici22-Mar-17 5:23 
GeneralRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 5:26
David Crow22-Mar-17 5:26 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici22-Mar-17 5:35
lolici22-Mar-17 5:35 
GeneralRe: Save the content from List Control in text file vc++ Pin
David Crow22-Mar-17 5:37
David Crow22-Mar-17 5:37 
GeneralRe: Save the content from List Control in text file vc++ Pin
Victor Nijegorodov22-Mar-17 9:58
Victor Nijegorodov22-Mar-17 9:58 
lolici wrote:
I wrote this:
void CDataDialog::OnBnClickedOk()
{
    // TODO: Add your control notification handler code here
    //CDialog::EndDialog(0);
    CStdioFile file("over1.txt", CFile::modeCreate);

<pre>
<span class="code-keyword">int</span> nCount = m_List.GetItemCount();</pre></blockquote>

What is m_List? Where and how is it defiled/initialized?

lolici wrote:
CString CDataDialog::GetItemText(
HWND hWnd, int nItem, int nSubItem) const
{
LVITEM lvi;
memset(&lvi, 0, sizeof(LVITEM));
lvi.iSubItem = nSubItem;
CString str;
int nLen = 128;
int nRes;
do
{
nLen *= 2;
lvi.cchTextMax = nLen;
lvi.pszText = str.GetBufferSetLength(nLen);
nRes = (int)::SendMessage(hWnd,
LVM_GETITEMTEXT, (WPARAM)nItem,
(LPARAM)&lvi);
} while (nRes == nLen - 1);
str.ReleaseBuffer();
return str;
}

Why do you iplement your own function rather than use CListCtrl::GetItemText (MFC) method?

GeneralRe: Save the content from List Control in text file vc++ Pin
lolici23-Mar-17 2:36
lolici23-Mar-17 2:36 
GeneralRe: Save the content from List Control in text file vc++ Pin
Victor Nijegorodov23-Mar-17 7:20
Victor Nijegorodov23-Mar-17 7:20 
GeneralRe: Save the content from List Control in text file vc++ Pin
lolici23-Mar-17 8:14
lolici23-Mar-17 8:14 
GeneralRe: Save the content from List Control in text file vc++ Pin
Victor Nijegorodov23-Mar-17 12:29
Victor Nijegorodov23-Mar-17 12:29 
QuestionA complex macro definition Pin
samzcs20-Mar-17 10:01
samzcs20-Mar-17 10:01 
AnswerRe: A complex macro definition Pin
Jochen Arndt20-Mar-17 22:37
professionalJochen Arndt20-Mar-17 22:37 
GeneralRe: A complex macro definition Pin
samzcs21-Mar-17 2:22
samzcs21-Mar-17 2:22 
GeneralRe: A complex macro definition Pin
Jochen Arndt21-Mar-17 2:32
professionalJochen Arndt21-Mar-17 2:32 
GeneralRe: A complex macro definition Pin
samzcs21-Mar-17 2:36
samzcs21-Mar-17 2:36 
Questiondev c Pin
Alvi ZaDa20-Mar-17 7:18
Alvi ZaDa20-Mar-17 7:18 
RantRe: dev c Pin
Richard Deeming20-Mar-17 8:47
mveRichard Deeming20-Mar-17 8:47 
AnswerRe: dev c Pin
Victor Nijegorodov20-Mar-17 9:58
Victor Nijegorodov20-Mar-17 9:58 
AnswerRe: dev c Pin
Patrice T20-Mar-17 11:45
mvePatrice T20-Mar-17 11:45 
QuestionChange from Cstring to double in listview vc++ Pin
lolici20-Mar-17 1:31
lolici20-Mar-17 1:31 
AnswerRe: Change from Cstring to double in listview vc++ Pin
Jochen Arndt20-Mar-17 2:02
professionalJochen Arndt20-Mar-17 2:02 
GeneralRe: Change from Cstring to double in listview vc++ Pin
lolici20-Mar-17 2:56
lolici20-Mar-17 2:56 
GeneralRe: Change from Cstring to double in listview vc++ Pin
Jochen Arndt20-Mar-17 3:00
professionalJochen Arndt20-Mar-17 3:00 

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.