代码之家  ›  专栏  ›  技术社区  ›  Zied.M

vb.net我不能选择pdf文件

  •  1
  • Zied.M  · 技术社区  · 7 年前

    在vb.net中,我创建了一个简单的方法,在其中我选择并查看(pdf和图像文件),我使用了fileopendialog 这是我的密码

    Private Sub btn_parcour_Click(sender As Object, e As EventArgs) Handles btn_parcour.Click
        fichier.Filter = "PDF Files |* .pdf "
        If fichier.ShowDialog = DialogResult.OK Then
            fichier_txt.Text = fichier.FileName
        End If
    End Sub
    

    这是一个屏幕

    enter image description here

    1 回复  |  直到 7 年前
        1
  •  1
  •   Nkosi    7 年前

    'Remove all the extra spaces
    fichier.Filter = "PDF Files|*.pdf"
    

    例如,如果执行pdf和所有其他文件

    'Note no stray spaces where they are not needed
    fichier.Filter = "PDF Files|*.pdf|All files(*.*)|*.*"