Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. AttilaTheHunn

    Swedish letters in richTextBox

    I'm using Stream reader: DialogResult resultOpenFile = OpenFile.ShowDialog(); if (resultOpenFile == DialogResult.OK) { StreamReader of = new StreamReader(OpenFile.FileName); // Startar inläsning utav ful. textBox.Text = of.ReadToEnd(); of.Close(); // Avslutar inläsningen...
  2. AttilaTheHunn

    Swedish letters in richTextBox

    I'm working with a notepad in C#, and when you write in the textbox the lettters appear (å, ä, ö). But if you open a .txt-file my program can't read å, ä, ö.

Part and Inventory Search

Back
Top