Skip to main content

AccessTr.neT


Textboxta Yazili Olan Linki, Command Button İle Form İcinde Görünteleme

Textboxta Yazili Olan Linki, Command Button İle Form İcinde Görünteleme

#2
Kod:
Private Sub Command1_Click()
On Error GoTo Err_Command1_Click
    Dim stAppName As String
    Dim stPathFileName As String

    'Define path and file name of PDF document, keep .pdf extention
    stPathFileName = Me!txtPathFile
    stAppName = "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe " & stPathFileName
    Call Shell(stAppName, 1)

Exit_Command1_Click:
    Exit Sub
Err_Command1_Click:
    MsgBox Err.Description
    Resume Exit_Command1_Click

End Sub


Kod:
Private Sub List14_AfterUpdate()

Dim strpath As String

strpath = Me.List14.Column(2)
Me.WebBrowser5.Navigate (strpath)
End Sub

@benbendedeilem
Son Düzenleme: 27/04/2020, 17:33, Düzenleyen: accessman.
Cevapla

Bir hesap oluşturun veya yorum yapmak için giriş yapın

Yorum yapmak için üye olmanız gerekiyor

ya da

Bu Konudaki Yorumlar
RE: Textboxta Yazili Olan Linki, Command Button İle Form İcinde Görünteleme - Yazar: accessman - 27/04/2020, 17:29
Task