In your Data_Validate1 you could do the following:
If TextBox1.Text <> "" And TextBox2.Text <> "" Then
'Success!
Else
'Anti-Success!
MsgBox("The Temperature field must be between 122-168.", _
vbExclamation + vbOKOnly, _
"Temperature")
If TextBox2.Text = "" Then TextBox2.Focus()
If TextBox1.Text = "" Then TextBox1.Focus()
End If
Keep in mind that you are telling the user that they have to enter specific values, but you are not checking for that. So if they entered "X" and "Y" in the text boxes, it would be happy.
Edit: You may need to change .Focus() to .SetFocus if you are really using VBA, I was using VB.NET