高手帮下忙啊~

时间:2021-12-25 19:08:54
做一个对话框,单击右键,弹出菜单,菜单实现添加,删除,修改。
添加和删除功能我实现了,但是修改某一行的值,代码该如何写啊?谢谢大家了

11 个解决方案

#1


修改什么?某一行是什么的某一行?

#2


问题不清楚,最好贴些代码出来。

#3


问题描述应该要清楚一点,你上面说的大家都不太明白

#4


引用 3 楼 wltg2001 的回复:
问题描述应该要清楚一点,你上面说的大家都不太明白

添加某一项的代码为:
void CMylistctrlDlg::OnAddrow() 
{
// TODO: Add your command handler code here
CADDDLG dlg;
int nret=dlg.DoModal ();
if(nret==IDOK)
{
CString str;
UpdateData(FALSE);
  str.Format (_T("%s"),dlg.m_id) ;
m_list.InsertItem(m_index,str);
str.Format (_T("%s"),dlg.m_time ) ;
    m_list.SetItemText(m_index,1,str);
str.Format (_T("%s"),dlg.m_chan ) ;
m_list.SetItemText(m_index,2,str);
  m_index=m_index+1;    
}
   
    m_list.EnsureVisible(m_index,FALSE);  //总显示最后一行
}
删除某一项的代码为:
void CMylistctrlDlg::OnDelrow() 
{
// TODO: Add your command handler code here
POSITION   spos=NULL;
    while(spos = m_list.GetFirstSelectedItemPosition())  //从后往前删
{
         int nSelItem = -1;
          nSelItem = m_list.GetNextSelectedItem(spos);
          if(nSelItem >= 0 && nSelItem<m_list.GetItemCount())
        {
            m_list.DeleteItem (nSelItem);
}
}
      
m_index=m_list.GetItemCount();

}
我现在问的是修改某一项的代码如何写?不胜感激。

#5


CString csItemText;
csItemText = m_list.GetItemText(m_index, 1);
//...修改eg
csItemText += _T("Alter....")
m_list.SetItemText(m_index, 1, csItemText);

#6


void CStudent_daipanDlg::OnModify() //修改
{
int nNum=GetDlgItemInt(IDC_nNum);
CListCtrl*pList=(CListCtrl*)GetDlgItem(IDC_LIST);
int nSel=pList->GetSelectionMark();
if(nSel<0)
{
AfxMessageBox("请先输入要修改后的内容,再点击要修改的学号!");
return ;
}
pList->DeleteItem(nSel);
CString szName,str;
GetDlgItemText(IDC_nName,szName);
GetDlgItemText(IDC_nSore,str);
float fMath=(float)atof(str);
CListCtrl*pList1=(CListCtrl*)GetDlgItem(IDC_LIST);
str.Format("%d",nNum);
pList->InsertItem(nSel,str);
pList->SetItemText(nSel,1,szName);
GetDlgItemText(IDC_nSore,str);
pList->SetItemText(nSel,2,str);
}

#7


http://www.vckbase.com/document/viewdoc/?id=1274

#8


spos = m_list.GetFirstSelectedItemPosition();
  int nSelItem = -1;
  nSelItem = m_list.GetNextSelectedItem(spos);
//找到要修改的行
  if(nSelItem >= 0 && nSelItem<m_list.GetItemCount())
  {
      m_list.SetItemText(nSelItem,0,str);//改该行第0项
      m_list.SetItemText(nSelItem,1,str);//改该行第1项
      m_list.SetItemText(nSelItem,2,str);//改该行第2项

  }

#9


该回复于2011-11-28 16:24:32被版主删除

#10


觉得8楼讲的有道理

#11


看你的代码应该是点击菜单的“修改”,还会弹出一个对话框,然后在弹出的对话框上修改吧?
8楼的代码应该可以实现修改的。

#1


修改什么?某一行是什么的某一行?

#2


问题不清楚,最好贴些代码出来。

#3


问题描述应该要清楚一点,你上面说的大家都不太明白

#4


引用 3 楼 wltg2001 的回复:
问题描述应该要清楚一点,你上面说的大家都不太明白

添加某一项的代码为:
void CMylistctrlDlg::OnAddrow() 
{
// TODO: Add your command handler code here
CADDDLG dlg;
int nret=dlg.DoModal ();
if(nret==IDOK)
{
CString str;
UpdateData(FALSE);
  str.Format (_T("%s"),dlg.m_id) ;
m_list.InsertItem(m_index,str);
str.Format (_T("%s"),dlg.m_time ) ;
    m_list.SetItemText(m_index,1,str);
str.Format (_T("%s"),dlg.m_chan ) ;
m_list.SetItemText(m_index,2,str);
  m_index=m_index+1;    
}
   
    m_list.EnsureVisible(m_index,FALSE);  //总显示最后一行
}
删除某一项的代码为:
void CMylistctrlDlg::OnDelrow() 
{
// TODO: Add your command handler code here
POSITION   spos=NULL;
    while(spos = m_list.GetFirstSelectedItemPosition())  //从后往前删
{
         int nSelItem = -1;
          nSelItem = m_list.GetNextSelectedItem(spos);
          if(nSelItem >= 0 && nSelItem<m_list.GetItemCount())
        {
            m_list.DeleteItem (nSelItem);
}
}
      
m_index=m_list.GetItemCount();

}
我现在问的是修改某一项的代码如何写?不胜感激。

#5


CString csItemText;
csItemText = m_list.GetItemText(m_index, 1);
//...修改eg
csItemText += _T("Alter....")
m_list.SetItemText(m_index, 1, csItemText);

#6


void CStudent_daipanDlg::OnModify() //修改
{
int nNum=GetDlgItemInt(IDC_nNum);
CListCtrl*pList=(CListCtrl*)GetDlgItem(IDC_LIST);
int nSel=pList->GetSelectionMark();
if(nSel<0)
{
AfxMessageBox("请先输入要修改后的内容,再点击要修改的学号!");
return ;
}
pList->DeleteItem(nSel);
CString szName,str;
GetDlgItemText(IDC_nName,szName);
GetDlgItemText(IDC_nSore,str);
float fMath=(float)atof(str);
CListCtrl*pList1=(CListCtrl*)GetDlgItem(IDC_LIST);
str.Format("%d",nNum);
pList->InsertItem(nSel,str);
pList->SetItemText(nSel,1,szName);
GetDlgItemText(IDC_nSore,str);
pList->SetItemText(nSel,2,str);
}

#7


http://www.vckbase.com/document/viewdoc/?id=1274

#8


spos = m_list.GetFirstSelectedItemPosition();
  int nSelItem = -1;
  nSelItem = m_list.GetNextSelectedItem(spos);
//找到要修改的行
  if(nSelItem >= 0 && nSelItem<m_list.GetItemCount())
  {
      m_list.SetItemText(nSelItem,0,str);//改该行第0项
      m_list.SetItemText(nSelItem,1,str);//改该行第1项
      m_list.SetItemText(nSelItem,2,str);//改该行第2项

  }

#9


该回复于2011-11-28 16:24:32被版主删除

#10


觉得8楼讲的有道理

#11


看你的代码应该是点击菜单的“修改”,还会弹出一个对话框,然后在弹出的对话框上修改吧?
8楼的代码应该可以实现修改的。