Курсовая работа: Удаление комментариев из текста программ

int x = (rect.Width() - cxIcon + 1) / 2;

int y = (rect.Height() - cyIcon + 1) / 2;

// Draw the icon

dc.DrawIcon(x, y, m_hIcon);

}

else

{

CDialog::OnPaint();

}

}

// The system calls this to obtain the cursor to display while the user drags

// the minimized window.

HCURSOR CKursDlg::OnQueryDragIcon()

{

return (HCURSOR) m_hIcon;

}

void CKursDlg::OnBtnsource()

{

CFileDialog dlg(TRUE, NULL, NULL, 0,

"C++ and C files (*.cpp; *.c; *.h; *.hpp)|*.cpp;*.c;*.h;*.hpp|Pascal files (*.pas)|*.pas|Basic files (*.bas)|*.bas|Assembler files (*.asm)|*.asm|All files|*.*||", this);

CString lang;

CSelectLangDlg select;

if(dlg.DoModal() == IDOK)

{

m_name = dlg.GetPathName();

SetDlgItemText(IDC_SOURCE, m_name);

int point_pos = m_name.ReverseFind('.');

if(point_pos == -1)

{

К-во Просмотров: 322
Бесплатно скачать Курсовая работа: Удаление комментариев из текста программ