So 'sollte' es gehen, wenn nicht post mal bitte die Fehlermeldungen.Quote:
wo soll da jetzt was rein?PHP Code:using .... //die ganzen Standard dinger halt :D
using System.Runtime.InteropServices;
namespace T_B.NET_Testprogram
{
public partial class Form1 : Form
{
[DllImport("shell32.dll", EntryPoint = "ShellExecute")]
public static extern long ShellExecute(int hwnd, string cmd, string file, string param1, string param2, int swmode);
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
ShellExecute (0, "open", "http://www.google.de", "", "", 5);
}
}
}