VS2003调试问题,代码直接跳过,没执行?
try{
			m_Edit.GetWindowText(CellText);
			SetItemText(m_Row,m_Col,CellText);
			if (Name!=CellText&&CellText!="")
			{
				if (Name!="")
				{
					pdlg->ExcuteSQL(ID,CellText,0x01);
				}
				else
				{
					pdlg->ExcuteSQL(ID,CellText,0x00);
				}
			}
			else  
			{
				if(strcmp(Name,CellText))//代码不执行,直接跳过
				{
					int w;
					w=strcmp(Name,CellText);//代码不执行
					pdlg->ExcuteSQL(ID,CellText,0x02);
				}
			}
		}
		catch(...)
		{
			m_Edit.DestroyWindow();
		}
	}
	m_Edit.DestroyWindow();
	bEditing=false;
VS2003调试问题,代码直接跳过,没执行?好像也没有异常,什么问题啊
------解决方案--------------------
rebuild all再试试