Click here to Skip to main content
15,911,132 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionClient /Server architchture Pin
zahid_ash26-May-06 0:08
zahid_ash26-May-06 0:08 
AnswerRe: Client /Server architchture Pin
Renjith Ramachandran26-May-06 1:54
Renjith Ramachandran26-May-06 1:54 
AnswerRe: Client /Server architchture Pin
valikac26-May-06 6:36
valikac26-May-06 6:36 
Questionhow to convert CString to const WCHAR * Pin
NoName II25-May-06 23:59
NoName II25-May-06 23:59 
AnswerRe: how to convert CString to const WCHAR * Pin
VinayCool26-May-06 0:24
VinayCool26-May-06 0:24 
AnswerRe: how to convert CString to const WCHAR * Pin
Nibu babu thomas26-May-06 0:25
Nibu babu thomas26-May-06 0:25 
AnswerRe: how to convert CString to const WCHAR * Pin
Hamid_RT26-May-06 0:30
Hamid_RT26-May-06 0:30 
AnswerRe: how to convert CString to const WCHAR * Pin
ThatsAlok26-May-06 1:07
ThatsAlok26-May-06 1:07 
QuestionQuestions on CFileFind and CreateDirectory Pin
David L.S.25-May-06 23:57
David L.S.25-May-06 23:57 
AnswerRe: Questions on CFileFind and CreateDirectory Pin
ThatsAlok26-May-06 0:34
ThatsAlok26-May-06 0:34 
QuestionRe: Questions on CFileFind and CreateDirectory Pin
David Crow26-May-06 2:49
David Crow26-May-06 2:49 
AnswerRe: Questions on CFileFind and CreateDirectory [modified] Pin
David L.S.26-May-06 15:45
David L.S.26-May-06 15:45 
QuestionDialogbars event mapping Pin
ilgale25-May-06 23:54
ilgale25-May-06 23:54 
GeneralRe: Dialogbars event mapping Pin
Dennis Gourjii26-May-06 3:00
Dennis Gourjii26-May-06 3:00 
QuestionInitiate windows authentication Pin
Peter Weyzen25-May-06 23:30
Peter Weyzen25-May-06 23:30 
AnswerRe: Initiate windows authentication Pin
_anil_25-May-06 23:59
_anil_25-May-06 23:59 
AnswerRe: Initiate windows authentication Pin
David Crow26-May-06 2:54
David Crow26-May-06 2:54 
QuestionRe: Initiate windows authentication [modified] Pin
Peter Weyzen26-May-06 8:13
Peter Weyzen26-May-06 8:13 
AnswerRe: Initiate windows authentication [modified] Pin
David Crow26-May-06 8:21
David Crow26-May-06 8:21 
JokeRe: Initiate windows authentication [modified] Pin
Peter Weyzen26-May-06 10:41
Peter Weyzen26-May-06 10:41 
Questiondebug .lib attaching to process? Pin
mav@octaval25-May-06 22:12
mav@octaval25-May-06 22:12 
AnswerRe: debug .lib attaching to process? Pin
Milton Karimbekallil26-May-06 4:46
Milton Karimbekallil26-May-06 4:46 
Questiontooltips on edit controls Pin
big_denny_20025-May-06 22:08
big_denny_20025-May-06 22:08 
AnswerRe: tooltips on edit controls Pin
Hamid_RT25-May-06 22:23
Hamid_RT25-May-06 22:23 
i use this way for button listbox and now edit and it work
<code>
	m_tooltip.Create(this);
	SetToolTip(_T("Hello"));
void CAnswerView::SetToolTip(LPTSTR ToolTip)
{
    TOOLINFO ti;
    ti.cbSize   = sizeof(TOOLINFO);
    ti.lpszText = ToolTip;
    ti.hinst    = AfxGetInstanceHandle();
    ti.hwnd     = m_Edit2.m_hWnd;
		
ti.uFlags   = TTF_SUBCLASS | TTF_IDISHWND;
ti.uId      = (UINT) m_Edit2.m_hWnd;
 m_tooltip.SendMessage(TTM_ADDTOOL, 0, (LPARAM) &ti);
}




whitesky


GeneralRe: tooltips on edit controls Pin
big_denny_20025-May-06 22:44
big_denny_20025-May-06 22:44 

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.