You cant refer to a textbox on another form just by its name like you are doing:
TxtFind.Text ......
You need to use the Form object you created:
frm.TxtFind.Text....
Also, dont use quotes around the object name like you did with the Replace method, same thing applies as what I said above.
Also I dont see you showing the form in any way. Try what Bucky said above, frm.ShowDialog(), before checking any values.