Click here to Skip to main content
15,909,898 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: List Box & Rich Edit box Pin
Hamid_RT16-Feb-07 1:27
Hamid_RT16-Feb-07 1:27 
GeneralRe: List Box & Rich Edit box Pin
Suresh H16-Feb-07 1:32
Suresh H16-Feb-07 1:32 
GeneralRe: List Box & Rich Edit box Pin
Hamid_RT16-Feb-07 1:45
Hamid_RT16-Feb-07 1:45 
AnswerRe: List Box & Rich Edit box Pin
prasad_som16-Feb-07 1:30
prasad_som16-Feb-07 1:30 
GeneralRe: List Box & Rich Edit box Pin
Suresh H16-Feb-07 1:34
Suresh H16-Feb-07 1:34 
GeneralRe: List Box & Rich Edit box Pin
Hamid_RT16-Feb-07 1:46
Hamid_RT16-Feb-07 1:46 
GeneralRe: List Box & Rich Edit box Pin
Suresh H16-Feb-07 1:26
Suresh H16-Feb-07 1:26 
AnswerRe: List Box & Rich Edit box Pin
prasad_som16-Feb-07 2:15
prasad_som16-Feb-07 2:15 
Suresh H wrote:
List box contains a list of file names , when we select any item in the list box that file contains should get added to rich edit box.


You can handle list box double click in following way,
case WM_COMMAND:
switch(LOWORD(wParam))
case IDC_LIST1:
if (HIWORD(wParam) == LBN_DBLCLK) 
{
//double clicked 
}
break;



GeneralRe: List Box & Rich Edit box Pin
Suresh H18-Feb-07 19:12
Suresh H18-Feb-07 19:12 
GeneralRe: List Box & Rich Edit box Pin
prasad_som18-Feb-07 19:14
prasad_som18-Feb-07 19:14 
GeneralRe: List Box & Rich Edit box Pin
Suresh H18-Feb-07 19:52
Suresh H18-Feb-07 19:52 
AnswerRe: List Box & Rich Edit box Pin
prasad_som18-Feb-07 20:09
prasad_som18-Feb-07 20:09 
GeneralRe: List Box & Rich Edit box Pin
Suresh H18-Feb-07 20:20
Suresh H18-Feb-07 20:20 
GeneralRe: List Box & Rich Edit box Pin
prasad_som18-Feb-07 20:32
prasad_som18-Feb-07 20:32 
GeneralRe: List Box & Rich Edit box Pin
Suresh H18-Feb-07 20:50
Suresh H18-Feb-07 20:50 
AnswerRe: List Box & Rich Edit box Pin
prasad_som18-Feb-07 22:00
prasad_som18-Feb-07 22:00 
GeneralRe: List Box & Rich Edit box Pin
Suresh H18-Feb-07 22:48
Suresh H18-Feb-07 22:48 
AnswerRe: List Box & Rich Edit box Pin
prasad_som18-Feb-07 22:52
prasad_som18-Feb-07 22:52 
AnswerRe: List Box & Rich Edit box Pin
David Crow16-Feb-07 2:52
David Crow16-Feb-07 2:52 
QuestionWindows Menus and the WM_MENUCOMMAND message Pin
Martin081515-Feb-07 22:41
professionalMartin081515-Feb-07 22:41 
QuestionRe: Windows Menus and the WM_MENUCOMMAND message Pin
prasad_som16-Feb-07 1:51
prasad_som16-Feb-07 1:51 
AnswerRe: Windows Menus and the WM_MENUCOMMAND message Pin
Martin081516-Feb-07 2:22
professionalMartin081516-Feb-07 2:22 
AnswerRe: Windows Menus and the WM_MENUCOMMAND message Pin
prasad_som16-Feb-07 3:08
prasad_som16-Feb-07 3:08 
QuestionRe: Windows Menus and the WM_MENUCOMMAND message Pin
Martin081516-Feb-07 3:56
professionalMartin081516-Feb-07 3:56 
AnswerRe: Windows Menus and the WM_MENUCOMMAND message Pin
prasad_som16-Feb-07 5:00
prasad_som16-Feb-07 5:00 

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.