Can any one tell me whats wrong with my code:
void CTestFtpDlg::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
CInternetSession * pInet;
if(pInet!=NULL)
{
pInet->Close();
delete pInet;
}
}
I always receive error when press Button1.
Thanks.
void CTestFtpDlg::OnBnClickedButton1()
{
// TODO: Add your control notification handler code here
CInternetSession * pInet;
if(pInet!=NULL)
{
pInet->Close();
delete pInet;
}
}
I always receive error when press Button1.
Thanks.