Click here to Skip to main content
15,860,972 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CCombobox MFC vc++ Pin
David Crow26-Sep-19 5:16
David Crow26-Sep-19 5:16 
QuestionHow to enable accessibility in chrome browser without installing firefox? Pin
Mallesh Kumar25-Sep-19 0:13
Mallesh Kumar25-Sep-19 0:13 
AnswerRe: How to enable accessibility in chrome browser without installing firefox? Pin
Richard MacCutchan25-Sep-19 0:20
mveRichard MacCutchan25-Sep-19 0:20 
AnswerRe: How to enable accessibility in chrome browser without installing firefox? Pin
_Flaviu25-Sep-19 0:40
_Flaviu25-Sep-19 0:40 
GeneralRe: How to enable accessibility in chrome browser without installing firefox? Pin
Mallesh Kumar25-Sep-19 1:03
Mallesh Kumar25-Sep-19 1:03 
GeneralRe: How to enable accessibility in chrome browser without installing firefox? Pin
_Flaviu25-Sep-19 1:10
_Flaviu25-Sep-19 1:10 
GeneralRe: How to enable accessibility in chrome browser without installing firefox? Pin
_Flaviu26-Sep-19 19:39
_Flaviu26-Sep-19 19:39 
QuestionMFC vc++ deleting column in list view control Pin
Member 1457555624-Sep-19 18:15
Member 1457555624-Sep-19 18:15 
In the blow code snippet, the DeleteColumn parameters takes 0 instead of "i" from the for loop. Why do we use 0 there and when I try using "i" there it didn't completely delete the column. I can't understand the process.

C++
int nColumnCount = m_myListCtrl.GetHeaderCtrl()->GetItemCount();

      // Delete all of the columns.
      for (int i=0; i < nColumnCount; i++)
      {
          m_myListCtrl.DeleteColumn(0);// here why do we use 0 instead of "i" and when I use
                                                //"i" it didn't completely delete the column.
      }

AnswerRe: MFC vc++ deleting column in list view control Pin
Victor Nijegorodov24-Sep-19 20:51
Victor Nijegorodov24-Sep-19 20:51 
GeneralRe: MFC vc++ deleting column in list view control Pin
Member 1457555624-Sep-19 21:08
Member 1457555624-Sep-19 21:08 
QuestionX button in the Dialog MFC vc++ Pin
Member 1457555624-Sep-19 4:00
Member 1457555624-Sep-19 4:00 
AnswerRe: X button in the Dialog MFC vc++ Pin
Victor Nijegorodov24-Sep-19 4:18
Victor Nijegorodov24-Sep-19 4:18 
GeneralRe: X button in the Dialog MFC vc++ Pin
Member 1457555624-Sep-19 6:52
Member 1457555624-Sep-19 6:52 
SuggestionRe: X button in the Dialog MFC vc++ Pin
David Crow24-Sep-19 15:39
David Crow24-Sep-19 15:39 
AnswerRe: X button in the Dialog MFC vc++ Pin
Maximilien24-Sep-19 4:19
Maximilien24-Sep-19 4:19 
AnswerRe: X button in the Dialog MFC vc++ Pin
David Crow24-Sep-19 6:06
David Crow24-Sep-19 6:06 
QuestionEdit Control MFC vc++ Pin
Member 1457555623-Sep-19 19:47
Member 1457555623-Sep-19 19:47 
AnswerRe: Edit Control MFC vc++ Pin
Richard MacCutchan23-Sep-19 20:56
mveRichard MacCutchan23-Sep-19 20:56 
AnswerRe: Edit Control MFC vc++ Pin
_Flaviu23-Sep-19 23:13
_Flaviu23-Sep-19 23:13 
GeneralRe: Edit Control MFC vc++ Pin
Member 1457555624-Sep-19 1:04
Member 1457555624-Sep-19 1:04 
GeneralRe: Edit Control MFC vc++ Pin
_Flaviu24-Sep-19 1:23
_Flaviu24-Sep-19 1:23 
GeneralRe: Edit Control MFC vc++ Pin
Member 1457555624-Sep-19 1:36
Member 1457555624-Sep-19 1:36 
GeneralRe: Edit Control MFC vc++ Pin
_Flaviu24-Sep-19 1:57
_Flaviu24-Sep-19 1:57 
GeneralRe: Edit Control MFC vc++ Pin
Member 1457555624-Sep-19 2:01
Member 1457555624-Sep-19 2:01 
GeneralRe: Edit Control MFC vc++ Pin
_Flaviu24-Sep-19 2:18
_Flaviu24-Sep-19 2:18 

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.