Click here to Skip to main content
15,880,364 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
AnswerRe: MFC vc++ deleting column in list view control Pin
Victor Nijegorodov24-Sep-19 20:51
Victor Nijegorodov24-Sep-19 20:51 
After you have deleted the column 0 the next column (the former column 1) becomes the column 0.
Another way to delete all the columns:
C++
for (int i = nColumnCount - 1; i >= 0; i--)
{
    m_myListCtrl.DeleteColumn(i);
}

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 
GeneralRe: Edit Control MFC vc++ Pin
Member 1457555624-Sep-19 2:51
Member 1457555624-Sep-19 2:51 

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.