Click here to Skip to main content
15,881,281 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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

QuestionRe: AGAIN MY LIST CONTROL : Hy all ! Pin
Hamid_RT6-Aug-06 21:54
Hamid_RT6-Aug-06 21:54 
QuestionRe: AGAIN MY LIST CONTROL : Hy all ! Pin
Bravoone_20066-Aug-06 22:17
Bravoone_20066-Aug-06 22:17 
AnswerRe: AGAIN MY LIST CONTROL : Hy all ! Pin
Hamid_RT6-Aug-06 22:51
Hamid_RT6-Aug-06 22:51 
QuestionBase64 Pin
urid6-Aug-06 20:51
urid6-Aug-06 20:51 
AnswerRe: Base64 Pin
David Crow7-Aug-06 3:21
David Crow7-Aug-06 3:21 
Question[Message Deleted] Pin
georgekjolly6-Aug-06 19:51
georgekjolly6-Aug-06 19:51 
AnswerRe: Changing Text color on a particular Raw in a CListCtrl Pin
Hamid_RT6-Aug-06 20:01
Hamid_RT6-Aug-06 20:01 
AnswerRe: Changing Text color on a particular Raw in a CListCtrl Pin
Michael Dunn6-Aug-06 20:05
sitebuilderMichael Dunn6-Aug-06 20:05 
Questionvoid CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug [modified] Pin
Cristian Amarie6-Aug-06 19:49
Cristian Amarie6-Aug-06 19:49 
AnswerRe: void CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug Pin
Michael Dunn6-Aug-06 19:59
sitebuilderMichael Dunn6-Aug-06 19:59 
GeneralRe: void CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug Pin
Cristian Amarie6-Aug-06 20:05
Cristian Amarie6-Aug-06 20:05 
AnswerRe: void CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug Pin
Hamid_RT6-Aug-06 20:04
Hamid_RT6-Aug-06 20:04 
GeneralRe: void CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug Pin
Cristian Amarie6-Aug-06 20:06
Cristian Amarie6-Aug-06 20:06 
AnswerRe: void CWnd::CenterWindow(CWnd* pAlternateOwner) small (?) bug Pin
David Crow7-Aug-06 3:27
David Crow7-Aug-06 3:27 
QuestionHow can I dissable the Combo box from Toolbar? [modified] Pin
Sameer_Thakur6-Aug-06 19:37
Sameer_Thakur6-Aug-06 19:37 
AnswerRe: How can I dissable the Combo box from Toolbar? Pin
Hamid_RT6-Aug-06 19:49
Hamid_RT6-Aug-06 19:49 
GeneralRe: How can I dissable the Combo box from Toolbar? Pin
Sameer_Thakur6-Aug-06 20:08
Sameer_Thakur6-Aug-06 20:08 

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.