Hallo
ich möchte in C++ (windows forms anwendung) programmieren das der button einen link oder einen programm öffnet ich verstehe den fehler nicht.
#include <Windows.h>
#include <fstream>
#pragma once
namespace Hilfe {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Zusammenfassung für Form1
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: Konstruktorcode hier hinzufügen.
//
}
protected:
/// <summary>
/// Verwendete Ressourcen bereinigen.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
protected:
private:
/// <summary>
/// Erforderliche Designervariable.
/// </summary>
System::ComponentModel::Container ^components;
#pragma region Windows Form Designer generated code
/// <summary>
/// Erforderliche Methode für die Designerunterstützung.
/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
/// </summary>
void InitializeComponent(void)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// button1
//
this->button1->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 15.75F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(0)));
this->button1->Location = System::Drawing::Point(253, 105);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(163, 47);
this->button1->TabIndex = 0;
this->button1->Text = L"FIREFOX!";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->BackColor = System::Drawing::Color::DarkViolet;
this->ClientSize = System::Drawing::Size(664, 262);
this->Controls->Add(this->button1);
this->ForeColor = System::Drawing::Color::Red;
this->Name = L"Form1";
this->Text = L"Emre";
this->Load += gcnew System::EventHandler(this, &Form1::Form1_Load);
this->ResumeLayout(false);
}
#pragma endregion
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
Shell("C:\Programme (x86)/Mozilla Firefox/firefox.exe");
}
private: System::Void Form1_Load(System::Object^ sender, System::EventArgs^ e) {
}
};
}
danke im vorraus
mafiaboy1997 (40) |