Search Results

Showing results 1 to 40 of 189
Search took 0.01 seconds.
Search: Posts Made By: plusplus
Forum: VB.NET Jul 13th, 2009
Replies: 2
Views: 351
Posted By plusplus
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: 351
Posted By plusplus
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,339
Posted By plusplus
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: 291
Posted By plusplus
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: 656
Posted By plusplus
That's for text files, how about music files?
Forum: VB.NET Jul 1st, 2009
Replies: 3
Views: 656
Posted By plusplus
How do I set a filter for just music files?
Forum: VB.NET Jul 1st, 2009
Replies: 4
Views: 740
Posted By plusplus
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: 740
Posted By plusplus
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: 740
Posted By plusplus
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: 922
Posted By plusplus
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: 922
Posted By plusplus
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: 922
Posted By plusplus
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: 922
Posted By plusplus
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: 922
Posted By plusplus
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)
...
Forum: ASP.NET Oct 6th, 2008
Replies: 0
Views: 626
Posted By plusplus
I have been searching for a solution for this, but all the things I've found do not apply to my problem, so I am giving all the details, and please someone help me
I am using access database
I am...
Forum: ASP.NET Jun 30th, 2008
Replies: 8
Views: 2,033
Posted By plusplus
Here is what I have so far, the bold line gives me an error, besides does this code look right?

Dim myid As Long
Dim sqlstring As String
Dim cn As New...
Forum: ASP.NET Jun 27th, 2008
Replies: 8
Views: 2,033
Posted By plusplus
I'll try it out and get back if I need some more help.
Forum: ASP.NET Jun 27th, 2008
Replies: 8
Views: 2,033
Posted By plusplus
I'll take a look at it, but maybe you know a place with vb code not c?
Forum: ASP.NET Jun 26th, 2008
Replies: 8
Views: 2,033
Posted By plusplus
I need some more help, I don't know how to go about it
In web.config I have
<authorization>
<deny users="?"/>
<allow users="*"/>
</authorization>
<authentication...
Forum: ASP.NET Jun 26th, 2008
Replies: 8
Views: 2,033
Posted By plusplus
I have a login control, when user presses login I want to check if he exists in the table.
I made a connection to database, and now how do I check if he exists?

Protected Sub...
Forum: ASP.NET Jun 20th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
Last question
Where do I read and where do I write to my databas

Application Start, Session Start, Session End, Application End
Forum: ASP.NET Jun 20th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
Thank you bala24.
If you don't mind I need some more help. Till now I have only worked with database from a webpage through grids. I don't know how to make a connection etc from the global.asax...
Forum: ASP.NET Jun 20th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
where would it be better to save the number
database table or just a textfile
Forum: ASP.NET Jun 20th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
First of all thank you bala24 for your time

<%@ Application Language="VB" %>

<script runat="server">

Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
...
Forum: ASP.NET Jun 19th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
When going to my website from a different computer, I saw the visitor count was back to 1. I guess it's not working. What could be the problem?
Forum: ASP.NET Jun 19th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
Yes that's where I did it. But when I make changes on my project and upload it again it starts at 1 again
Forum: ASP.NET Jun 19th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
This is what I did. But this gets lost when I upload my project again?
Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)
Application("Hits") = Application("Hits") + 1

End...
Forum: ASP.NET Jun 18th, 2008
Replies: 15
Solved: count visitors
Views: 1,885
Posted By plusplus
I'd like to count how many visitors came to my site. Can you give me a quick and easy way to do this?
Forum: ASP.NET Jun 4th, 2008
Replies: 1
Solved: menu items
Views: 563
Posted By plusplus
I have a horizontal menu. I want there to be space to the left of first item like there is to the right of last item. How would I do that?
Forum: ASP.NET May 28th, 2008
Replies: 2
Views: 2,943
Posted By plusplus
in gridview there is autogenerateselectbutton when I click on that the row will be selected.
I want the row to be selected when user clicks on any cell in the row and I don't want that extra column...
Forum: ASP.NET May 28th, 2008
Replies: 2
Views: 2,943
Posted By plusplus
When user click on gridview I want that row to be selected, without having the extra column for the select button. Can anybody help me?
Forum: ASP.NET May 27th, 2008
Replies: 1
Views: 617
Posted By plusplus
I decided to try the gridview. I added column headers. But how do I fill it with data not from database(just manually)

I am new to asp.net , so please have patience even if I ask some stupid...
Forum: ASP.NET May 27th, 2008
Replies: 1
Views: 617
Posted By plusplus
I want to show info in table like way with diff column headers. I am using the table control. When user clicks on a row I want that row highlighted, is this possible with a table or do I need to...
Forum: ASP.NET May 25th, 2008
Replies: 3
Views: 512
Posted By plusplus
I saw your link majestic0110, thank you for your time. I'm still not sure that this is what I want to use. Which other options are there for connecting to access db?

I'd like some more info...
Forum: ASP.NET May 25th, 2008
Replies: 4
Solved: Panel
Views: 620
Posted By plusplus
thanks to both of you
Forum: ASP.NET May 22nd, 2008
Replies: 1
Views: 1,239
Posted By plusplus
what's the difference between image and imagemap?
Forum: ASP.NET May 22nd, 2008
Replies: 4
Solved: Panel
Views: 620
Posted By plusplus
Is a panel lin vs ike a frame in vb
Forum: ASP.NET May 22nd, 2008
Replies: 3
Views: 512
Posted By plusplus
I have to connect to an Access database, what's the best tool to use?
Forum: ASP.NET May 22nd, 2008
Replies: 2
Views: 640
Posted By plusplus
Forum: ASP.NET May 21st, 2008
Replies: 2
Views: 640
Posted By plusplus
Can I change an existing form to a masterpage, or can a masterpage only be defined when creating the form
Showing results 1 to 40 of 189

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC