Sub Abre_Formulario()
Marcacao.Show
End Sub
Private Sub botaoexcluir_Click()
Unload Marcacao_Consultas
End Sub
Private Sub box_doc_matricula_Change()
End Sub
Private Sub box_matricula_Change()
End Sub
Private Sub box_nome_Change()
End Sub
Private Sub box_paciente_Change()
End Sub
Private Sub ComboBox1_Change()
End Sub
Private Sub CommandButton1_Click()
If box_doc_matricula.Text = "" Then
MsgBox "CAMPO Nº DO DOC./MATRICULA OBRIGATÓRIO", vbExclamation, "AVISO"
box_doc_matricula.SetFocus
Exit Sub
End If
If box_orgaoemissor.Text = "" Then
MsgBox "CAMPO ORGÃO EMISSOR OBRIGATÓRIO", vbExclamation, "AVISO"
box_orgaoemissor.SetFocus
Exit Sub
End If
If lista_tipo.Text = "" Then
MsgBox "CAMPO TIPO OBRIGATÓRIO", vbExclamation, "AVISO"
lista_tipo.SetFocus
Exit Sub
End If
If box_nome.Text = "" Then
MsgBox "CAMPO NOME OBRIGATÓRIO", vbExclamation, "AVISO"
box_nome.SetFocus
Exit Sub
End If
If lista_destino.Text = "" Then
MsgBox "CAMPO SETOR DE DESTINO OBRIGATÓRIO", vbExclamation, "AVISO"
lista_destino.SetFocus
Exit Sub
End If
If lista_Máscara.Text = "" Then
MsgBox "CAMPO TIPO OBRIGATÓRIO", vbExclamation, "AVISO"
lista_Máscara.SetFocus
Exit Sub
End If
Dim linha As Long
linha = 2
While Planilha1.Range("B" & linha).Value <> ""
linha = linha + 1
Wend
Planilha1.Unprotect "123"
Planilha1.Cells(linha, 2) = recep
Planilha1.Cells(linha, 5) = box_doc_matricula.Value
Planilha1.Cells(linha, 6) = box_orgaoemissor.Value
Planilha1.Cells(linha, 7) = lista_tipo.Value
Planilha1.Cells(linha, 8) = box_nome.Value
Planilha1.Cells(linha, 9) = lista_destino.Value
Planilha1.Cells(linha, 10) = box_paciente.Value
Planilha1.Cells(linha, 11) = box_matricula.Value
Planilha1.Cells(linha, 12) = lista_Máscara.Value
Planilha1.Protect "123"
Unload Marcacao
End Sub
Private Sub CommandButton1_Enter()
End Sub
Private Sub Label1_Click()
End Sub
Private Sub Label12_Click()
End Sub
Private Sub Label5_Click()
End Sub
Private Sub Label9_Click()
End Sub
Private Sub lista_destino_Change()
End Sub
Private Sub Lista_Máscara_Change()
End Sub
Private Sub lista_tipo_Change()
End Sub
Sub abrirmarcacao_consultas()
TextBox_Usuario.Show
End Sub
Sub TextBox1_Change()
TextBox_Usuario.Show
End Sub
Private Sub Recepcionista_Change()
End Sub
Private Sub TextBoxUsuario_Change()
End Sub
Private Sub UserForm_Initialize()
TextBoxUsuario = Planilha3.Range("E1").Text
ult_linha = Sheets("Tipo").Range("A2").End(xlDown).Row
lista_tipo.RowSource = "Tipo!A2:A" & ult_linha
ult_linha = Sheets("Destino").Range("A2").End(xlDown).Row
lista_destino.RowSource = "Destino!A2:A" & ult_linha
ult_linha = Sheets("Máscara").Range("A2").End(xlDown).Row
lista_Máscara.RowSource = "Máscara!A2:A" & ult_linha
End Sub
Este post foi modificado 4 anos atrás por
Anderson Em 90% dos casos em que não se anexa o arquivo, ocorrem mal-entendidos, gerando perda de tempo de ambos os lados.
Postado : 23/08/2020 10:11 am