Es que el valor de
txtquinquenio al estar vacío no lo puede sumar.
Debes de validar ambos textbox's para que no tengas problemas.
Código:
if (string.IsNullOrEmpty(this.textBox2.Text))
{
this.textBox2.Text = "0";
}
if (string.IsNullOrEmpty(this.textBox1.Text))
{
this.textBox1.Text = "0";
}
Algo así ó podrías darle por defecto el valor 0 y así no tendrías problemas.
Espero te ayude