Skip to content

Instantly share code, notes, and snippets.

@dmp3kl
dmp3kl / form4.cs
Created September 3, 2019 18:43
txt_documentoKeypress
private void txt_documento_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == 13)
{
string var = txt_documento.Text.ToString();
if (var != "" || var !=" ")
{
AbrirConexion();