Ir para conteúdo
Fórum Script Brasil

Pesquisar na Comunidade

Mostrando resultados para as tags ''Código do vb 6 para o vb 2010''.

  • Pesquisar por Tags

    Digite tags separadas por vírgulas
  • Pesquisar por Autor

Tipo de Conteúdo


Fóruns

  • Programação & Desenvolvimento
    • ASP
    • PHP
    • .NET
    • Java
    • C, C++
    • Delphi, Kylix
    • Lógica de Programação
    • Mobile
    • Visual Basic
    • Outras Linguagens de Programação
  • WEB
    • HTML, XHTML, CSS
    • Ajax, JavaScript, XML, DOM
    • Editores
  • Arte & Design
    • Corel Draw
    • Fireworks
    • Flash & ActionScript
    • Photoshop
    • Outros Programas de Arte e Design
  • Sistemas Operacionais
    • Microsoft Windows
    • GNU/Linux
    • Outros Sistemas Operacionais
  • Softwares, Hardwares e Redes
    • Microsoft Office
    • Softwares Livres
    • Outros Softwares
    • Hardware
    • Redes
  • Banco de Dados
    • Access
    • MySQL
    • PostgreSQL
    • SQL Server
    • Demais Bancos
  • Segurança e Malwares
    • Segurança
    • Remoção De Malwares
  • Empregos
    • Vagas Efetivas
    • Vagas para Estágios
    • Oportunidades para Freelances
  • Negócios & Oportunidades
    • Classificados & Serviços
    • Eventos
  • Geral
    • Avaliações de Trabalhos
    • Links
    • Outros Assuntos
    • Entretenimento
  • Script Brasil
    • Novidades e Anúncios Script Brasil
    • Mercado Livre / Mercado Sócios
    • Sugestões e Críticas
    • Apresentações

Encontrar resultados em...

Encontrar resultados que...


Data de Criação

  • Início

    FIM


Data de Atualização

  • Início

    FIM


Filtrar pelo número de...

Data de Registro

  • Início

    FIM


Grupo


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Encontrado 1 registro

  1. Public Class CadFuncionario Dim VeriFI As Boolean Dim Tabfun As New ADODB.Recordset Private Sub CadFuncionario_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load 'On Error Resume Next CONEXAO = New ADODB.Connection CONEXAO.Open("DSN=os", , "jacare") Call AtualizaFuncionario() If Tabfun.RecordCount > 0 Then Call BuscaFuncionario(Tabfun.Fields("CodFuncio").Value) End If End Sub Private Sub AtualizaFuncionario() Tabfun = New ADODB.Recordset Tabfun.ActiveConnection = CONEXAO Tabfun.Source = "select * from TBFucionario" Tabfun.CursorType = CursorTypeEnum.adOpenKeyset Tabfun.LockType = LockTypeEnum.adLockOptimistic Tabfun.Open() End Sub Private Sub BuscaFuncionario(ByVal cod As Long) 'On Error Resume Next Dim Tabfun As ADODB.Recordset Tabfun = New ADODB.Recordset Tabfun.ActiveConnection = CONEXAO Tabfun.Source = "select * from TBFucionario where CodFuncio=" & cod Tabfun.CursorType = CursorTypeEnum.adOpenKeyset Tabfun.LockType = LockTypeEnum.adLockOptimistic Tabfun.Open() If Tabfun.RecordCount > 0 Then FuCodigo.Text = Format(Tabfun.Fields("CodFuncio").Value, "000#") ' FuNome.Text = IIf(IsNull(Tabfun.Fields("Funcionario")), "", Tabfun.Fields("Funcionario")) ' CPF.Text = IIf(IsNull(Tabfun.Fields("CPF")), "", Tabfun.Fields("CPF")) ' RG.Text = IIf(IsNull(Tabfun.Fields("rg")), "", Tabfun.Fields("rg")) ' DataNasc.Text = IIf(IsNull(Tabfun.Fields("DataNasc")), "", Tabfun.Fields("DataNasc")) ' DataNasc.Text = Format(DataNasc.Text, "dd/mm/yyyy") ' Endereco.Text = IIf(IsNull(Tabfun.Fields("Endereco")), "", Tabfun.Fields("Endereco")) ' Numero.Text = IIf(IsNull(Tabfun.Fields("Numero")), "", Tabfun.Fields("Numero")) ' Bairro.Text = IIf(IsNull(Tabfun.Fields("Bairro")), "", Tabfun.Fields("Bairro")) ' Referencia.Text = IIf(IsNull(Tabfun.Fields("Referencia")), "", Tabfun.Fields("Referencia")) 'Cidade.Text = IIf(IsNull(Tabfun.Fields("Cidade")), "", Tabfun.Fields("Cidade")) ' UF.Text = IIf(IsNull(Tabfun.Fields("UF")), "", Tabfun.Fields("UF")) ' Telefone.Text = IIf(IsNull(Tabfun.Fields("Telefone")), "", Tabfun.Fields("Telefone")) ' Celular.Text = IIf(IsNull(Tabfun.Fields("Celular")), "", Tabfun.Fields("Celular")) ' Email.Text = IIf(IsNull(Tabfun.Fields("Email")), "", Tabfun.Fields("Email")) ' sexo.Text = IIf(IsNull(Tabfun.Fields("Sexo")), "", Tabfun.Fields("Sexo")) ' estadocivil.Text = IIf(IsNull(Tabfun.Fields("EstadoCivil")), "", Tabfun.Fields("EstadoCivil")) ' CEP.Text = IIf(IsNull(Tabfun.Fields("CEP")), "", Tabfun.Fields("CEP")) ' Login.Text = IIf(IsNull(Tabfun.Fields("Login")), "", Tabfun.Fields("Login")) ' SenhaEntrada.Text = IIf(IsNull(Tabfun.Fields("Senha")), "", Tabfun.Fields("Senha")) ' Acesso.Caption = IIf(IsNull(Tabfun.Fields("login")), "", Tabfun.Fields("login")) Else ' Funcionario.Text = "" ' CPF.Text = "" ' Endereco.Text = "" ' Bairro.Text = "" ''Cidade.Text = "" ' CEP.Text = "" ' RG.Text = "" ' DataNasc.Text = "" ' Referencia.Text = "" ' Celular.Text = "" ' Telefone.Text = "" ' Numero.Text = "" ' Email.Text = "" ' UF.Text = "" ' sexo.Text = "" ' estadocivil.Text = "" ' Login.Text = "" 'SenhaEntrada.Text = "" 'F() 'rame3.Visible = False ' Frame2.Top = 4080 ' CadFucionario.Height = 5340 Tabfun.Close() Tabfun = Nothing End If End Sub End Class
×
×
  • Criar Novo...