Hello.
I have a TextBox1 and a Button1 in form1, where clicking on Button1 reads the .txt file.
If OpenFileDialog1.ShowDialog Then
TextBox1.Text = My.Computer.FileSystem.ReadAllText(OpenFileDialog1.FileName)
End If
Now what I would like the program to do is that, every time a file is opened, it will also show me as a recent document in the task bar (JumpList).
Is it possible to do this operation?
My operating system is Windows 7.
Thank you.