void CMakeMountPointDlg::OnChangeVolume()
{
	CString strVol;
	m_Vol.GetWindowText(strVol);
	if (strVol.GetLength() > 63) {
		MessageBeep((UINT)-1);
		m_Vol.SetWindowText(m_strVol);
	} else
		m_strVol = strVol;

	CheckEnableOk();
}
void CMakeMountPointDlg::OnChangeDir()
{
	m_Dir.GetWindowText(m_strDir);

	CheckEnableOk();
}
void CAddSubmtDlg::OnChangePathName() 
{
	CheckEnableOk();
}
void CMakeMountPointDlg::OnChangeCell()
{
	m_Cell.GetWindowText(m_strCell);

	CheckEnableOk();
}
void CAddSubmtDlg::OnChangeShareName() 
{
	CheckEnableOk();
}