04. februar 2004 - 11:35Der er
8 kommentarer og 1 løsning
åbne internet browser i cpp
hvordan for man sit program til at åbne en internet browser har den i et menu system så hvis man klikker på en knap skal den åbne den men det hjælper ikke at skrive " system("C:\\programmer\\internet explorer\\iexplore");
CTest3Dlg::CTest3Dlg(CWnd* pParent /*=NULL*/) : CDialog(CTest3Dlg::IDD, pParent) { //{{AFX_DATA_INIT(CTest3Dlg) // NOTE: the ClassWizard will add member initialization here //}}AFX_DATA_INIT m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME); }
void CTest3Dlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CTest3Dlg) // NOTE: the ClassWizard will add DDX and DDV calls here //}}AFX_DATA_MAP }
SetIcon(m_hIcon, TRUE); // Set big icon SetIcon(m_hIcon, FALSE); // Set small icon
// TODO: Add extra initialization here
return TRUE; // return TRUE unless you set the focus to a control }
// If you add a minimize button to your dialog, you will need the code below // to draw the icon. For MFC applications using the document/view model, // this is automatically done for you by the framework.
void CTest3Dlg::OnPaint() { if (IsIconic()) { CPaintDC dc(this); // device context for painting
// Center icon in client rectangle int cxIcon = GetSystemMetrics(SM_CXICON); int cyIcon = GetSystemMetrics(SM_CYICON); CRect rect; GetClientRect(&rect); 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(); } }
Jeg tror at problemet med system("C:\\programmer\\internet explorer\\iexplore") er at der er mellemrum i filnavnet, så tror den at programmet hedder C:\programmer\internet og at explorer\iexplore er en parameter.
Problemet kan løses ved at putte "" omkring programnavnet:
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.