Mylton Dom 22 Dez 2013, 3:04 pm
Assis tentei adaptar sua dica criando outro campo p anexar as imagens.
Fiz essa adaptação nessas imagens
Private Sub btnLocalizar_Click()
Dim strCaminho As String, strPastaInicial As String
strPastaInicial = "C:\Meus Documentos"
strCaminho = Buscar(Me.hwnd, "Inserir foto", strPastaInicial, _
"Arquivos gráficos (*.bmp; *.gif; *.jpg)" & vbNullChar & "*.bmp; *.gif; *.jpg")
If Len(strCaminho) > 0 Then
Me.LocalFoto = strCaminho
Me.FOTO.Picture = Me.LocalFoto
Me.FOTO.Visible = True
End If
End Sub
Private Sub btnLocalizar1_Click()
Dim strCaminho As String, strPastaInicial As String
strPastaInicial = "C:\Meus Documentos"
strCaminho = Buscar(Me.hwnd, "Inserir foto1", strPastaInicial, _
"Arquivos gráficos (*.bmp; *.gif; *.jpg)" & vbNullChar & "*.bmp; *.gif; *.jpg")
If Len(strCaminho) > 0 Then
Me.LocalFoto1 = strCaminho
Me.FOTO1.Picture = Me.LocalFoto1
Me.FOTO1.Visible = True
End If
End Sub
Private Sub Comando43_Click()
DoCmd.Close
End Sub
Private Sub Comando45_Click()
LocalFoto = Null
FOTO.Visible = False
SEMFOTO.Visible = True
End Sub
Private Sub Comando59_Click()
LocalFoto1 = Null
FOTO1.Visible = False
SEMFOTO.Visible = True
End Sub
Contudo ao fechar o form vejo na tabela que só um caminho da imagem foi registrado. Dando erro no localfoto1.
Poderia comentar o pq?
Obrigado