Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.45 KB | None | 0 0
  1. Public Class Form1
  2.  
  3.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  4.         With OpenFileDialog1
  5.             .Filter = _
  6.                 "Joymax Pack File (*.pk2)|*.pk2"
  7.             .FilterIndex = 1
  8.             .InitialDirectory = "C:\"
  9.             .FileName()
  10.             .Title = "Please select your Media.pk2"
  11.             .ShowDialog()
  12.         End With
  13.     End Sub
  14.  
  15. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement