I am currently developing a small RTF editor in Visual Studio 2008 in C#
I have compleeted almost all of it accept the find/find next buttons on the second form
Form1 contains a rich text box
form2 contains a textbox for the text to search and two buttons - Find and Find Next
When you click find, the text you enter into the textbox on form2 will be highlighted in form1
I have spent hours and hours trying to figure this out and cannot come to a conclusion
Is anyone able to give me a hand here? Thanks in advance
ive managed to get hold of a friend for some help and this is now what i have for my find button, im not sure if this is the best way to do it.
I know there is a richtextbox.find method but i dont have a clue how to use that ` public partial class frmFind : Form { frmRTFEditor frmRTFEditor;
public frmFind()
{
InitializeComponent();
}
public frmFind(frmRTFEditor form)
{
InitializeComponent();
frmRTFEditor = form;
this.TopMost = true;
}
private void cmdFind_Click(object sender, EventArgs e)
{
lblMatch.Visible = false;
try
{
if (txtSearch.Text == "")
{
lblMatch.Visible = true;
}
else
{
int StartPosition;
StringComparison SearchType;
SearchType = StringComparison.OrdinalIgnoreCase;
StartPosition = frmRTFEditor.rtbDoc.Text.IndexOf(txtSearch.Text, SearchType);
if (StartPosition < 0)
{
lblMatch.Visible = true;
}
else
{
frmRTFEditor.rtbDoc.Select(StartPosition, txtSearch.Text.Length);
frmRTFEditor.rtbDoc.ScrollToCaret();
frmRTFEditor.Focus();
cmdFindNext.Enabled = true;
}
}
}
catch (Exception)
{
lblMatch.Visible = true;
cmdFindNext.Enabled = false;
}
}`