Click here to Skip to main content
15,896,359 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: cannot change rgrc0 with wm_nccalcsize Pin
Richard MacCutchan28-Sep-19 4:37
mveRichard MacCutchan28-Sep-19 4:37 
QuestionCCombobox MFC vc++ Pin
Member 1457555625-Sep-19 1:06
Member 1457555625-Sep-19 1:06 
AnswerRe: CCombobox MFC vc++ Pin
Richard MacCutchan25-Sep-19 1:38
mveRichard MacCutchan25-Sep-19 1:38 
AnswerRe: CCombobox MFC vc++ Pin
_Flaviu25-Sep-19 1:55
_Flaviu25-Sep-19 1:55 
AnswerRe: CCombobox MFC vc++ Pin
David Crow25-Sep-19 3:24
David Crow25-Sep-19 3:24 
GeneralRe: CCombobox MFC vc++ Pin
Gerry Schmitz25-Sep-19 19:43
mveGerry Schmitz25-Sep-19 19:43 
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 
I am trying to access of Google Chrome's web-page to read it and perform some actions for that I have to enable accessibility for chrome below is my sample code but it is not working for chrome.

IAccessible *pCAcc
..
...
IServiceProvider *pServProv = NULL;
pCAcc->QueryInterface(IID_IServiceProvider, (void**)&pServProv);
ISimpleDOMNode *pNode = NULL;

if (pServProv)
{
const GUID refguid = {0x0c539790, 0x12e4, 0x11cf, 0xb6, 0x61,
0x00, 0xaa, 0x00, 0x4c, 0xd6, 0xd8};

HRESULT hresult = pServProv->QueryService(refguid, IID_ISimpleDOMNode,(void**)&pNode);

//This QueryService call is failing for chrome browser. BUT but if install "FireFox
//browser " in my system this
// QueryService is working for chrome and firefox perfectly.
if (SUCCEEDED(hresult) && pNode != NULL)
{
//some code

}
}

What I have tried:

if install "FireFox browser " in my system this QueryService is working for chrome and firefox perfectly.
MY Question is :Is there a way to get it to work "chrome browser" without having firefox installed in my computer?
Can anyone explain what are that component or module or dlls are installed with FF browser.
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 
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 

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.