Click here to Skip to main content
16,008,299 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionReport gen.. Pin
SamRST23-Sep-07 4:40
SamRST23-Sep-07 4:40 
Questiondatagridview [modified] Pin
gt223-Sep-07 4:20
gt223-Sep-07 4:20 
AnswerRe: datagridview Pin
Paul Conrad23-Sep-07 4:33
professionalPaul Conrad23-Sep-07 4:33 
GeneralRe: datagridview Pin
SamRST23-Sep-07 4:41
SamRST23-Sep-07 4:41 
GeneralRe: datagridview Pin
Paul Conrad23-Sep-07 4:57
professionalPaul Conrad23-Sep-07 4:57 
GeneralRe: datagridview Pin
SamRST23-Sep-07 5:01
SamRST23-Sep-07 5:01 
Questionprintdialog control in vb.net2005 Pin
nilam1123-Sep-07 3:08
nilam1123-Sep-07 3:08 
QuestionHow to pass ftp path to VLC media player remotely Pin
juli Paris22-Sep-07 22:49
juli Paris22-Sep-07 22:49 
I want to share some media files over LAN. I generated a list box which shows the list of files on my computer. I planned that when the user click on any filename mean when the listbox1 selectedindexchanged client computer automatically start VLC media player and start playing that file without asking any manual assistance from client.

I successfully generated file list on listbox1 which provide full path to the file when click on it mean ftp://server/media/filename.mp3

I use this code to activate the VLC media player

Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
Dim furl As String = "ftp://speedexbb/media/" & ListBox1.SelectedItem.ToString

With Process1
.StartInfo.FileName = My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.ProgramFiles, "videolan\vlc\vlc.exe")
.StartInfo.Arguments = furl
.Start()
End With

End Sub

Please help that is there anything wrong. as the VLC made error that unable to open file. how can i get ride of this.

I will be gratefull for kind support


miss Juliana

AnswerRe: How to pass ftp path to VLC media player remotely Pin
Dave Kreskowiak23-Sep-07 7:10
mveDave Kreskowiak23-Sep-07 7:10 
Questioncrystal report..need help Pin
SamRST22-Sep-07 20:23
SamRST22-Sep-07 20:23 
Answercrystal report..need help Pin
SamRST23-Sep-07 4:33
SamRST23-Sep-07 4:33 
QuestionAdd a text label to an image Pin
tomsteven22-Sep-07 14:54
tomsteven22-Sep-07 14:54 
AnswerRe: Add a text label to an image Pin
Guffa22-Sep-07 15:30
Guffa22-Sep-07 15:30 
GeneralRe: Add a text label to an image Pin
tomsteven22-Sep-07 15:44
tomsteven22-Sep-07 15:44 
AnswerRe: Add a text label to an image Pin
Christian Graus23-Sep-07 0:13
protectorChristian Graus23-Sep-07 0:13 
GeneralRe: Add a text label to an image Pin
tomsteven23-Sep-07 4:18
tomsteven23-Sep-07 4:18 
GeneralRe: Add a text label to an image Pin
Luc Pattyn23-Sep-07 4:30
sitebuilderLuc Pattyn23-Sep-07 4:30 
GeneralRe: Add a text label to an image Pin
tomsteven23-Sep-07 5:12
tomsteven23-Sep-07 5:12 
GeneralRe: Add a text label to an image Pin
Luc Pattyn23-Sep-07 6:50
sitebuilderLuc Pattyn23-Sep-07 6:50 
QuestionHow to Hide IP while connecting to different web sites ? Pin
Rizwan Bashir22-Sep-07 10:13
Rizwan Bashir22-Sep-07 10:13 
AnswerRe: How to Hide IP while connecting to different web sites ? Pin
GuyThiebaut22-Sep-07 10:50
professionalGuyThiebaut22-Sep-07 10:50 
QuestionDirectX AudioVideoPlayback: LoaderLock Pin
codemunkeh22-Sep-07 5:30
codemunkeh22-Sep-07 5:30 
Questiondatabinding Pin
ejaz_pk21-Sep-07 21:28
ejaz_pk21-Sep-07 21:28 
AnswerRe: databinding Pin
pmarfleet22-Sep-07 0:51
pmarfleet22-Sep-07 0:51 
GeneralRe: databinding Pin
ejaz_pk23-Sep-07 9:56
ejaz_pk23-Sep-07 9:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.