Forum: VB.NET 13 Days Ago |
| Replies: 3 Views: 131 |
Forum: VB.NET 14 Days Ago |
| Replies: 11 Views: 29,571 @ smdhas: At the time that this snippet was created, (> a year ago) it wasn't possible yet to add screenshots to a snippet. |
Forum: VB.NET May 27th, 2008 |
| Replies: 1 Views: 3,438 If it's really urgent, you should have used the searchbox yourself.
Now I had to do it for you and you've lost some valuable minutes :)
Anyhow: here's... |
Forum: VB.NET May 13th, 2008 |
| Replies: 1 Views: 639 It took me a minute to decipher your message, so please do not use l33t speak (http://www.daniweb.com/forums/faq.php?faq=daniweb_policies)
We are not going to give you an entire project without you... |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 5 Views: 764 As I suspected. Between the declaration and using 'ds' it never gets a value. |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 5 Views: 764 Apparently not. Post the code where you assign a value to the dataset ds. Use 'your code here tags when you post code
And DO NOT send me pm's for help. It gets me very irritated .. |
Forum: VB.NET Apr 14th, 2008 |
| Replies: 5 Views: 764 So what is 'ds' and what value does it have? |
Forum: VB.NET Apr 10th, 2008 |
| Replies: 8 Views: 2,688 Do the other PC's have .net 2.0 installed? |
Forum: VB.NET Apr 9th, 2008 |
| Replies: 8 Views: 2,688 If you think that winsock is the problem, then post all the code that uses it here. Also initialization.
be sure to use your code here tags
Niek |
Forum: VB.NET Apr 9th, 2008 |
| Replies: 8 Views: 2,688 You're probably messing with memory that isn't yours, or accessing a file that is accessed at the same time by something else, or writing to a socket that was closed or never opened, or ....
... |
Forum: VB.NET Apr 8th, 2008 |
| Replies: 11 Views: 15,816 If this is a fictional project:
-I would make a class book, with some attributes like ISBN, name, author etc.
-Then make a class 'customer' with a name, adress etc
-Then make a var in the... |
Forum: VB.NET Apr 8th, 2008 |
| Replies: 1 Views: 671 You could use a timer-control. Here's a good tutorial (http://www.vbdotnetheaven.com/Uploadfile/mahesh/TimerControl04262005033148AM/TimerControl.aspx) |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 4 Views: 512 OK. Then how does this fictional piece of hardware offer it's data to you? What does the data look like? Is it a file or a stream or...?
Niek |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 3 Views: 762 So you did it in C++ (http://www.daniweb.com/forums/thread117153.html)AND VB.net ?? Very interesting. Please show some code to prove you've made an effort.
Niek |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 4 Views: 512 How do you plan to get radiosignal in your PC? |
Forum: VB.NET Apr 3rd, 2008 |
| Replies: 4 Views: 8,630 ComboBox.Enabled = False ?
Niek |
Forum: VB.NET Mar 25th, 2008 |
| Replies: 1 Views: 428 You should use a loop from that loop from the first item in the list to the n-th.
Niek |
Forum: VB.NET Mar 4th, 2008 |
| Replies: 8 Views: 1,527 aha.. I haven't worked with SQL on CE (yet).
So the following command doesn't work?
CREATE TABLE IF NOT EXISTS meeting(mid int,type ntext, name ntext, startdate datetime, starttime datetime,... |
Forum: VB.NET Mar 4th, 2008 |
| Replies: 8 Views: 1,527 replace the 'ntext' with 'text' in your SQL-query.
and I think you meant 'starttime datetime' instead of 'starttime ntext'
Niek |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 4 Views: 1,520 Hmm, I asked the wrong question, I meant: what does the function snglRead1() do? Do you have the code for it?
I'm guessing the function reads one float from a file? If thats the case, then this... |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 4 Views: 1,520 What is fLen? What values can it contain? Give an example. |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 3 Views: 1,977 try this:
gridMatchedDB.Columns(0).Width = 10
gridMatchedDB.Columns(1).Width = 80
This should change the width of the first column to 10 en the second to 80
Niek |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 7 Views: 5,398 Did you put it before any declarations where made? (on the very top of your file)
Niek |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 12 Views: 20,579 Go to start->run and type 'regedit'
Now find the folder in your registry:
HKLM\Software\Microsoft\Windows\CurrentVersion\Run\
and remove the key that your program wrote here.
Niek |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 8 Views: 1,527 You could do that with sql:
CREATE TABLE IF NOT EXISTS foo (bar int)This creates a table foo, only if it hasn't been created before.
Niek |
Forum: VB.NET Mar 3rd, 2008 |
| Replies: 3 Views: 5,905 What have you done so far? Do you understand how arrays work? Have you chosen a sorting algorithm?
Niek |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 3 Views: 1,670 Somesort of control or just mediaplayer?
Here's a nice link (http://www.vbdotnetforums.com/showthread.php?t=1701)to play video in your VB.net form
Is your program in vb.net or in C++ as your... |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 3 Views: 1,670 I'm getting a deja vu, I read this thread a few days ago already. Right?
What do you use to playback the mpeg? |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 2 Views: 459 Thats one solution..
I would convert (http://www.howtodothings.com/computers/a3744-how-to-convert-access-to-mysql.html)it to a MySQL DB and then use PHP on a webserver to read the data. There are... |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 3 Views: 2,179 If your password is a string, you need to break it up in seperate chars (an array of chars) and then use the Xor operator on each character.
Niek |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 2 Views: 11,276 So does the field Unidad exist in your database?
Niek |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 2 Views: 423 What are you trying to say? Explain in more detail please. |
Forum: VB.NET Feb 28th, 2008 |
| Replies: 1 Views: 3,716 Use the TextBox_TextChanged event on both textboxes. If the first is changed, disable the second and vice versa.
Here's an example:
Private Sub TextBox1_TextChanged(ByVal sender As... |
Forum: VB.NET Feb 27th, 2008 |
| Replies: 1 Views: 874 First you have to split the string in 3 pieces, then run each substring against an array where your data is stored.
If you post some code what you have done so far, people here can help you... |
Forum: VB.NET Feb 25th, 2008 |
| Replies: 17 Views: 2,762 What is not defined: Convert.ToSingle or a variable name? I've glanced over your code, but you never declare txtInitialValue,txtSalvageValue and txtAssetLife
Please post the exact compilererror
... |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 3 Views: 717 |
Forum: VB.NET Feb 22nd, 2008 |
| Replies: 2 Views: 738 No. Sometimes it just takes a while for someone to come by. Most of us actually have lifes, so we're not on-line 24/7.
Now for you problem:
You need to split the string in seperate colors, and... |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 10 Views: 1,165 On second thought, this shouldn't be too difficult:
Dim total As String = "97-98-99-100"
Dim buffer As String
Dim ascii As String()
Dim output As String = ""
ascii = total.Split("-")
For... |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 10 Views: 1,165 Sure, just change the while loop to:
While cnt < str.Length
total += Asc(str(cnt)).ToString
If cnt < str.Length() - 1 Then
total += "-"
... |
Forum: VB.NET Feb 21st, 2008 |
| Replies: 10 Views: 1,165 That's alot more difficult. How does this string look? Do you still have the delimiter ( - ) in it? Please show an example
Niek |