Web page download without images
-
Hi There, I need to download web pages from a website but don't want the images on that page. Please let me know how we can download only contents of web page without any image. Thanks!
-
Hi There, I need to download web pages from a website but don't want the images on that page. Please let me know how we can download only contents of web page without any image. Thanks!
Did you see IHTMLElement?
Of one Essence is the human race thus has Creation put the base One Limb impacted is sufficient For all Others to feel the Mace (Saadi )
-
Did you see IHTMLElement?
Of one Essence is the human race thus has Creation put the base One Limb impacted is sufficient For all Others to feel the Mace (Saadi )
Hi, I'm a newbie in VC++. I have to implement this into VC++, so please suggest.
-
Hi, I'm a newbie in VC++. I have to implement this into VC++, so please suggest.
Open a particular Directory
void CMultipleEOFDlg::OnBrowse()
{
CFileDialog dlg(TRUE);
CString sPath = "c:\\program files\\my folder\\1.c";
int nPos = sPath.Find("\\");
nPos = sPath.Find("\\",nPos + 1);
sPath = sPath.Left(nPos + 1);
dlg.m_ofn.lpstrInitialDir=sPath;
dlg.DoModal();
}void CMultipleEOFDlg::OnBrowse()
{
// TODO: Add your control notification handler code here
char strFilter[] = { "Text Files (*.txt)|*.bcr|All Files (*.*)|*.*||" };CFileDialog FileDlg(TRUE, "\*.txt", NULL, 0, strFilter); if( FileDlg.DoModal() == IDOK ) { m\_strFilePath = FileDlg.GetPathName(); } AfxMessageBox(m\_strFilePath); UpdateData(FALSE);
}