Dear All,
I want to make one interface i want to pick some .txt file from folder in combobox, that show me .txt file in combox or whatever and when any .txt file i click just open in reachtextbox and show me print option also.. please help me about this...
Loading
Anil KumarPosted Feb 28, 2015, 7:03 AM
1) load all files names from folder. Let say
2) Use selected index change event of combobox. let say
and load the text file content in rich text box. like
richTextBox1.Text = File.ReadAllText(opentext.FileName);
3) for print, you can take help from google
To help others, please mark the answer as accepted if it solves the purpose
Feroz KhanPosted Mar 22, 2015, 7:31 AM