Hello there!
I have questions about two things:
1.) How do I create a completely new type of files that can only be opened by my programe? What knowledge do I have to have to create something like this?
2.) I am trying to create a search function in a program for training purposes - viewing from MSDN's page. However, I can't make it work, and I've been trying for two days. When a button is clicked, the text in a textBox will searched depending on the text in my comboBox. When a text is found, it should me selected programmatically.
This is how I did:
String cb = comboBox.Text.ToString();
if (textBox.Text.Contains(cb))
{
textBox.SelectionStart = textBox.Text.IndexOf(cb);
textBox.SelectionLength = textBox.Text.Length;
}