Search Results

Showing results 1 to 40 of 49
Search took 0.05 seconds.
Search: Posts Made By: niek_e ; Forum: VB.NET and child forums
Forum: VB.NET 13 Days Ago
Replies: 3
Views: 131
Posted By niek_e
Moved to VB.net.
Forum: VB.NET 14 Days Ago
Replies: 11
Views: 29,571
Posted By niek_e
@ 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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
As I suspected. Between the declaration and using 'ds' it never gets a value.
Forum: VB.NET Apr 16th, 2008
Replies: 5
Views: 764
Posted By niek_e
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
Posted By niek_e
So what is 'ds' and what value does it have?
Forum: VB.NET Apr 10th, 2008
Replies: 8
Views: 2,688
Posted By niek_e
Do the other PC's have .net 2.0 installed?
Forum: VB.NET Apr 9th, 2008
Replies: 8
Views: 2,688
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
How do you plan to get radiosignal in your PC?
Forum: VB.NET Apr 3rd, 2008
Replies: 4
Views: 8,630
Posted By niek_e
ComboBox.Enabled = False ?

Niek
Forum: VB.NET Mar 25th, 2008
Replies: 1
Views: 428
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
What is fLen? What values can it contain? Give an example.
Forum: VB.NET Mar 3rd, 2008
Replies: 3
Views: 1,977
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
So does the field Unidad exist in your database?

Niek
Forum: VB.NET Feb 28th, 2008
Replies: 2
Views: 423
Posted By niek_e
What are you trying to say? Explain in more detail please.
Forum: VB.NET Feb 28th, 2008
Replies: 1
Views: 3,716
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
wrong forum
Forum: VB.NET Feb 22nd, 2008
Replies: 2
Views: 738
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
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
Posted By niek_e
That's alot more difficult. How does this string look? Do you still have the delimiter ( - ) in it? Please show an example

Niek
Showing results 1 to 40 of 49

 


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

©2003 - 2009 DaniWeb® LLC