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

C / C++ / MFC

 
AnswerRe: drawing an item in Mousemove of an owner drawn listbox Pin
Programm3r6-Aug-06 22:53
Programm3r6-Aug-06 22:53 
GeneralRe: drawing an item in Mousemove of an owner drawn listbox Pin
Vikash Dubey6-Aug-06 23:40
Vikash Dubey6-Aug-06 23:40 
QuestionHow to get Edit Style of Edit box Pin
huynhnb6-Aug-06 22:03
huynhnb6-Aug-06 22:03 
QuestionRe: How to get Edit Style of Edit box Pin
Programm3r6-Aug-06 22:48
Programm3r6-Aug-06 22:48 
AnswerRe: How to get Edit Style of Edit box Pin
David Crow7-Aug-06 3:14
David Crow7-Aug-06 3:14 
GeneralRe: How to get Edit Style of Edit box Pin
huynhnb7-Aug-06 14:12
huynhnb7-Aug-06 14:12 
QuestionRe: How to get Edit Style of Edit box Pin
David Crow8-Aug-06 3:12
David Crow8-Aug-06 3:12 
QuestionI NEEEED HEEELLLPPP !!!!!!!!! [modified] Pin
Bravoone_20066-Aug-06 21:56
Bravoone_20066-Aug-06 21:56 
QuestionRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
Programm3r6-Aug-06 22:43
Programm3r6-Aug-06 22:43 
AnswerRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
Bravoone_20066-Aug-06 22:59
Bravoone_20066-Aug-06 22:59 
GeneralRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
Programm3r6-Aug-06 23:05
Programm3r6-Aug-06 23:05 
GeneralRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
PlayByTheRules7-Aug-06 1:41
PlayByTheRules7-Aug-06 1:41 
AnswerRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
PlayByTheRules7-Aug-06 1:40
PlayByTheRules7-Aug-06 1:40 
AnswerRe: I NEEEED HEEELLLPPP !!!!!!!!! Pin
David Crow7-Aug-06 2:56
David Crow7-Aug-06 2:56 
QuestionPrinting Documents using VC++ Pin
Suren6-Aug-06 21:34
Suren6-Aug-06 21:34 
AnswerRe: Printing Documents using VC++ Pin
georgekjolly7-Aug-06 20:19
georgekjolly7-Aug-06 20:19 
Questionhy all ! Pin
Bravoone_20066-Aug-06 21:18
Bravoone_20066-Aug-06 21:18 
AnswerRe: hy all ! Pin
_AnsHUMAN_ 6-Aug-06 22:03
_AnsHUMAN_ 6-Aug-06 22:03 
QuestionRe: hy all ! [modified] Pin
Bravoone_20066-Aug-06 22:22
Bravoone_20066-Aug-06 22:22 
AnswerRe: hy all ! Pin
PlayByTheRules7-Aug-06 1:39
PlayByTheRules7-Aug-06 1:39 
QuestionRe: hy all ! Pin
David Crow7-Aug-06 3:18
David Crow7-Aug-06 3:18 
QuestionBlockQuote Pin
Sarvan AL6-Aug-06 21:02
Sarvan AL6-Aug-06 21:02 
AnswerRe: BlockQuote Pin
_AnsHUMAN_ 6-Aug-06 22:01
_AnsHUMAN_ 6-Aug-06 22:01 
GeneralRe: BlockQuote___Thanks Pin
Sarvan AL7-Aug-06 19:50
Sarvan AL7-Aug-06 19:50 
QuestionAGAIN MY LIST CONTROL : Hy all ! Pin
Bravoone_20066-Aug-06 21:01
Bravoone_20066-Aug-06 21:01 
Hy all !
Again i have a serious problem with my list control !
This code works , but now i want to do something new and I don t have any ideea how to do it !
If is someoane to help me with my code !

void CMyList::OnOK()
{

UpdateData();
m_list.RedrawItems(0,m_list2.GetItemCount());


CString sRelatia2;



sRelatia = _T("NAME");
m_relatia.GetWindowText(sRelatia);
LVFINDINFO stInfo1 = {0};
stInfo.flags = LVFI_PARTIAL;
stInfo.psz = sRelatia;
int nItem = m_list2.FindItem( &stInfo );

if( nItem != -1 )
{
sSecondColumnText = m_list2.GetItemText( nItem, 1 );
// set the text to the second edit box
m_explicatia.SetWindowText(sSecondColumnText);
}

}


This code find me the item in the second column !
Now i have 2 edit boxes to search in the list control !
And all i want is to find them in list control but :

My list control:
------------------------------------------------
| NAME | City | Country |
________________________________________________
|George |London | England |
|George |NewYork | USA |
------------------------------------------------

I have 3 edit boxes
1) m_name
2)m_City
3)m_rezult
all 3 are CEdit;

first i want to find if in the m_name matches with "NAME" next m_name with "City" and if is find it the "name" and the "City" from both 2 edit boxes i need the country in the m_rezult !
i want to search this :
George (m_name) -> London (m_City) and if exist on the same line :
m_rezult ---> England !!!!!!!!!!!!!!!

and :
George (m_name) -> NewYork (m_City) and if exist on the same line :
i need the rezult :
m_rezult ---> USA !!!!!!!!!!!!!!!









Bravoone

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.