G
Guest
I am trying to get the Handwriting support working in my image. (This is
with Office 2003 installed) We do not use the standard shell so I cannot use
the language bar directly.
On a regular PC I can do the following:
hr = langBarItemMgr.CoCreateInstance(CLSID_TF_LangBarItemMgr);
DWORD numItems = 0;
hr = langBarItemMgr->GetItemNum(&numItems);
TF_LANGBARITEMINFO *pInfo = new TF_LANGBARITEMINFO[numItems];
DWORD *pdwStatus = new DWORD[numItems];
ITfLangBarItem **ppItem = new ITfLangBarItem *[numItems];
langBarItemMgr->GetItems(numItems,ppItem,pInfo,pdwStatus,NULL);
for (int i = 0; i < numItems; i++)
{
TRACE(_T("Item %d: %S\n"),i,pInfo.szDescription);
}
On my xpe image I cannot get the handwriting component.
I will see the Handwriting item in this list. I can see that the
Handwriting services are installed as an input service in the regional
settings control applet.
Oddly, the box that says Turn off advanced text services remains checked no
matter how many times I try to uncheck it.
Any ideas?
with Office 2003 installed) We do not use the standard shell so I cannot use
the language bar directly.
On a regular PC I can do the following:
hr = langBarItemMgr.CoCreateInstance(CLSID_TF_LangBarItemMgr);
DWORD numItems = 0;
hr = langBarItemMgr->GetItemNum(&numItems);
TF_LANGBARITEMINFO *pInfo = new TF_LANGBARITEMINFO[numItems];
DWORD *pdwStatus = new DWORD[numItems];
ITfLangBarItem **ppItem = new ITfLangBarItem *[numItems];
langBarItemMgr->GetItems(numItems,ppItem,pInfo,pdwStatus,NULL);
for (int i = 0; i < numItems; i++)
{
TRACE(_T("Item %d: %S\n"),i,pInfo.szDescription);
}
On my xpe image I cannot get the handwriting component.
I will see the Handwriting item in this list. I can see that the
Handwriting services are installed as an input service in the regional
settings control applet.
Oddly, the box that says Turn off advanced text services remains checked no
matter how many times I try to uncheck it.
Any ideas?