Click here to Skip to main content
15,898,887 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionProblems handling ATL Event from Microsoft Word Pin
kalukaley15-Sep-08 11:18
kalukaley15-Sep-08 11:18 
AnswerRe: Problems handling ATL Event from Microsoft Word Pin
Stuart Dootson15-Sep-08 21:44
professionalStuart Dootson15-Sep-08 21:44 
GeneralRe: Problems handling ATL Event from Microsoft Word Pin
kalukaley20-Sep-08 11:04
kalukaley20-Sep-08 11:04 
QuestionActiveX Control Resizing Pin
preeti sharma15-Sep-08 4:09
preeti sharma15-Sep-08 4:09 
QuestionSE_LMSHARE is failing if MS office 2007 Japanese IME is installed Pin
GnanaprakashJebaraj13-Sep-08 3:23
GnanaprakashJebaraj13-Sep-08 3:23 
QuestionHow to use ComboBox in ListView (for editing ListView) in WTL? Pin
smalti11-Sep-08 23:32
smalti11-Sep-08 23:32 
AnswerRe: How to use ComboBox in ListView (for editing ListView) in WTL? Pin
Amit Luniya25-Sep-08 22:18
Amit Luniya25-Sep-08 22:18 
AnswerRe: How to use ComboBox in ListView (for editing ListView) in WTL? Pin
Member 183477015-Oct-08 3:33
Member 183477015-Oct-08 3:33 
NOTIFY_HANDLER (IDC_LISTVIEW, LVN_BEGINLABELEDIT, OnGridBeginEdit)

LRESULT OnGridBeginEdit(int idCtrl, LPNMHDR pnmh, BOOL& bHandled)
{
RECT rcpos;
// size rcpos to the subitem rect...
HWND hwnd_edit = m_lv.GetEditControl();
CComboBox combo;
combo.Create(m_lv,&rc_pos,_T("drop_list"),CControlWinTraits::GetWndStyle(0) | CBS_DROPDOWNLIST);
combo.AddString(_T("a"));
combo.AddString(_T("b"));
combo.AddString(_T("c"));
string sText="a";
combo.SelectString(-1,stext.c_str());
combo.ShowWindow(SW_SHOW);

run a local messageloop that exits on VK_CANCEL | VK_RETURN | WM_MOUSEDOWN on other windows
// read out the combo
combo.DestroyWindow();

return -1; // prevent the standard edit control
}
QuestionToolBar "affaire" Pin
Ritxi11-Sep-08 23:07
Ritxi11-Sep-08 23:07 
AnswerRe: ToolBar "affaire" Pin
Ritxi14-Sep-08 21:54
Ritxi14-Sep-08 21:54 
QuestionProblem with ATL IE plugin programming Pin
Robert Wang198310-Sep-08 5:19
Robert Wang198310-Sep-08 5:19 
Question[Message Deleted] Pin
arkiboys10-Sep-08 3:22
arkiboys10-Sep-08 3:22 
QuestionRe: PrintUIEntry Pin
led mike10-Sep-08 5:29
led mike10-Sep-08 5:29 
QuestionWindow.close() Close Dialog Box Pin
preeti sharma10-Sep-08 2:22
preeti sharma10-Sep-08 2:22 
QuestionHow to save/load a string in STL to/from a file? Pin
followait7-Sep-08 16:30
followait7-Sep-08 16:30 
AnswerRe: How to save/load a string in STL to/from a file? Pin
Stuart Dootson9-Sep-08 22:10
professionalStuart Dootson9-Sep-08 22:10 
GeneralRe: How to save/load a string in STL to/from a file? Pin
followait9-Sep-08 22:27
followait9-Sep-08 22:27 
GeneralRe: How to save/load a string in STL to/from a file? Pin
Stuart Dootson9-Sep-08 22:41
professionalStuart Dootson9-Sep-08 22:41 
GeneralRe: How to save/load a string in STL to/from a file? Pin
followait9-Sep-08 23:10
followait9-Sep-08 23:10 
GeneralRe: How to save/load a string in STL to/from a file? Pin
Stuart Dootson9-Sep-08 23:43
professionalStuart Dootson9-Sep-08 23:43 
QuestionPorting MFC SDI project to WTL Pin
dc_20006-Sep-08 8:51
dc_20006-Sep-08 8:51 
AnswerRe: Porting MFC SDI project to WTL Pin
Michael Dunn9-Sep-08 13:37
sitebuilderMichael Dunn9-Sep-08 13:37 
QuestionTabs and Accelerators in ATL Modeless Dialogs CAxWindow Pin
preeti sharma5-Sep-08 21:56
preeti sharma5-Sep-08 21:56 
QuestionATL / C++ Event handing Problem Pin
kalukaley3-Sep-08 5:15
kalukaley3-Sep-08 5:15 
AnswerRe: ATL / C++ Event handing Problem Pin
Stuart Dootson4-Sep-08 22:32
professionalStuart Dootson4-Sep-08 22:32 

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.