Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trouble with MDI Web Browser!!

Status
Not open for further replies.

bnhshallow

Programmer
Dec 14, 2001
12
US
Im Trying to make an MDI Web browser, but this bit of code is giving me a problem. Can anyone Help Me?
Thx

void CMainFrame::OnNewAddress()
{
CString sAddress;
m_wndDlgBar.GetDlgItem(IDC_EDIT1)->GetWindowText(sAddress);
((CWebBrowseView*)GetActiveView())->Navigate(sAddress);

}


The errors are:
: error C2065: 'CWebBrowseView' : undeclared identifier
: error C2059: syntax error : ')'

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top