Hallo will hier nen Kleinen Source code von mir Veröffentlichen ^^
Ich nutze es als Musik Streamer ^^
Have fun ;)
Screenshot:
[Only registered and activated users can see links. Click Here To Register...]
PHP Code:
Public Class Form1
Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Dim di As New System.IO.DirectoryInfo("\\fritz.box\BKA-Funkwagen2\Storage-00")
For Each fi As System.IO.FileInfo In di.GetFiles("*.*", System.IO.SearchOption.AllDirectories)
ComboBox1.Items.Add(fi.FullName)
Next
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Process.Start(ComboBox1.Text)
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
ComboBox1.Refresh()
End Sub
Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
End Sub
End Class
Have fun ;)
Screenshot:
[Only registered and activated users can see links. Click Here To Register...]