Hi, ich verstehe es einfach nicht. Hier der einfache Code.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication16
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog myOpenFileDialog = new OpenFileDialog();
// optional filter to restrict file types
myOpenFileDialog.Filter = "CSV Files|*.csv";
if (myOpenFileDialog.ShowDialog() == DialogResult.OK)
{
string selectedFileName = myOpenFileDialog.FileName;
// do whatever you like with the selected filename
}
}
}
}
hatte openfiledialog in einem Projekt integrieren wollen und brachte den gleichen Fehler, heute nun neu aufgesetzt und...
das Gleiche. Was ist das los ?
Hat jemand eine Idee ?
Danke Uwe
blackboxv