Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.     Private Sub btn_datei_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_datei.Click
  2.         'Dim ofd As New OpenFileDialog
  3.  
  4.         ofd_01.Title = "Datei zum Entpacken öffnen..."
  5.  
  6.         If ofd_01.ShowDialog() = DialogResult.OK Then
  7.             txt_OpenFileDialog.Text() = ofd_01.FileName
  8.         Else : txt_OpenFileDialog.Text() = "Keine Datei ausgewählt"
  9.         End If
  10.  
  11.     End Sub