Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- bool checktb = false;//Usar pra verificar os campos dps.
- bool checkcb = false;//usar pra verificar os combobox dps.
- if (tbFormExercicioFormDescricao.TextLength > 0 && tbFormExercicioFormExercicio.TextLength > 0)
- checktb = true;//Valores da textbox maiores que ""
- string cbformEquip = cbFormExercicioFormEquipamento.SelectedText;
- string cbformDesc = cbFormExercicioFormTipo.SelectedText;;
- if (cbformEquip.Length > 0 && cbformDesc.Length > 0)
- checkcb = true;//Valores da combobox maiores que ""
- if (checktb == true && checkcb == true)
- {
- //codigo
- }
- else
- {
- MessageBox.Show("Por favor, Preencha os campos obrigatórios.");
- }
Advertisement
Add Comment
Please, Sign In to add comment