Click here to Skip to main content
15,903,175 members

Comments by Member 13341316 (Top 21 by date)

Member 13341316 28-Mar-18 15:37pm View    
i dont really understand those links, and the codes in those links are not vb.net codes. please help me out
Member 13341316 21-Feb-18 9:35am View    
what do you suggest i should do, i have no clue on what to do again
Member 13341316 21-Feb-18 8:35am View    
this was the path i used before but still will not play after compilation


Imports System.IO


Public Class Csv
Dim ResourceFilePath As String


Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
SelectPageList.Show()
Me.Close()

End Sub

Private Sub AxWindowsMediaPlayer1_Enter(sender As Object, e As EventArgs) Handles AxWindowsMediaPlayer1.Enter
' Determine the Resource File Path
If System.Diagnostics.Debugger.IsAttached() Then
'Debugging mode
ResourceFilePath = System.IO.Path.GetFullPath(Application.StartupPath & "\..\..\resources\")
Else
'Published mode
ResourceFilePath = Application.StartupPath & "\resources\"
End If

' Specify the mp3 file
AxWindowsMediaPlayer1.URL = ResourceFilePath & "\csv.avi"
' Media Player automatically plays file by default

End Sub

Private Sub Csv_Load(sender As Object, e As EventArgs) Handles MyBase.Load

End Sub
End Class
Member 13341316 22-Sep-17 5:11am View    
Thank you so much God bless you
Member 13341316 21-Sep-17 10:18am View    
but am still getting the same error
Error 1 Expression is not an array or a method, and cannot have an argument list. C:\Users\teejayfpi\Desktop\Dr ajii\WindowsApplication2\Admissionrecord.vb 100 31 WindowsApplication2