0

私は現在、ComboBox(Outlook アドインから) に入力された URL を txt ファイルに書き込もうとしていますが、初心者なので、その方法がよくわかりません。

とにかくあなたを助けることができるコードスニペットを持っていないので、この問題で使用できる一般的なアプローチをお願いすることで、単純に保つと思います. 皆様のご協力に感謝いたします。

4

2 に答える 2

0

これはあなたが探しているものですか?

string path=@"C:\Hello.txt";
TextWriter tsw = new StreamWriter(path,true);

    //Writing selected item of combobox to the file.
    tsw.WriteLine(comboBox1.Items[this.comboBox1.SelectedIndex].ToString());


    //Close the file.
    tsw.Close();
于 2013-04-10T12:21:21.203 に答える
0

これを試して:

コンボ アイテムを に追加し、List次を使用してそれらをファイルに書き込みます。File

List<string> lst = new List<string>();
foreach (var text in comboBox1.Items)
{
     lst.Add((string)text);
}
File.WriteAllLines(@"c:\file.txt", lst.ToArray());

使用するTextWriter

 using (TextWriter TW = new StreamWriter(@"c:\file.txt", true))
            {
                foreach (var text in comboBox1.Items)
                {
                    TW.WriteLine();
                }
            }
于 2013-04-10T12:24:26.587 に答える