Forum: VB.NET Jul 13th, 2009 |
| Replies: 2 Views: 369 I used the windows media player instead, and now it does what I need it to do |
Forum: VB.NET Jul 9th, 2009 |
| Replies: 2 Views: 369 I used the multimedia control, and it worked great. But when installing my project, it did not work on all computers. (When trying to run it on some computers, it said, there was a problem, and it... |
Forum: VB.NET Jul 8th, 2009 |
| Replies: 4 Views: 5,571 I don't know if anyone looks at an old thread, but I have a question for this. I used the multimedia control, and it worked great. But when installing my project, it did not work on all computers. ... |
Forum: VB.NET Jul 6th, 2009 |
| Replies: 1 Views: 311 I have some music files that are being played, in certain cases in my project. Where should I store those files? I created a folder "Musik" under my project and put it in there, the problem is, how... |
Forum: VB.NET Jul 2nd, 2009 |
| Replies: 3 Views: 715 That's for text files, how about music files? |
Forum: VB.NET Jul 1st, 2009 |
| Replies: 3 Views: 715 How do I set a filter for just music files? |
Forum: VB.NET Jul 1st, 2009 |
| Replies: 4 Views: 806 Sorry, here with code tags
Let me change my question. Since I am new to vb.net, but worked in asp.net, I thought I have to upload the file. But really what I have to do, is save it to my... |
Forum: VB.NET Jul 1st, 2009 |
| Replies: 4 Views: 806 Let me change my question. Since I am new to vb.net, but worked in asp.net, I thought I have to upload the file. But really what I have to do, is save it to my project. So what I really needed was... |
Forum: VB.NET Jun 30th, 2009 |
| Replies: 4 Views: 806 In my code I want to upload a file to my project(named Musiker), under the folder music. Here is what I did so far, it's not working.
'to get the path where to upload it, I did the following
... |
Forum: VB.NET Jun 18th, 2009 |
| Replies: 9 Views: 930 THANK YOU!!!!!!! That did it!!!!!!!
One more question, when is this line needed?
myRequest.Proxy = WebRequest.DefaultWebProxy |
Forum: VB.NET Jun 18th, 2009 |
| Replies: 9 Views: 930 Another thing, that seemed strange, was that I couldn't use .readtoend, somehow it only gave me an empty string. |
Forum: VB.NET Jun 18th, 2009 |
| Replies: 9 Views: 930 As I said, the first line is not empty, instead of giving me the first line, it gives me an empty string and the next line it gives me, is the second line. I do not get the first line. In view... |
Forum: VB.NET Jun 17th, 2009 |
| Replies: 9 Views: 930 I removed the line .proxy, but it didn't make a difference. And no, the first line is not empty, it has data, which just get skipped over. I am so confused. Maybe I should add, that this is a... |
Forum: VB.NET Jun 16th, 2009 |
| Replies: 9 Views: 930 I have the following code for reading an online file, somehow the first line returns an empty string, what can be the reason for this?
Dim myRequest As WebRequest = webRequest.Create(myurl)
... |