Search Results

Showing results 1 to 40 of 47
Search took 0.02 seconds.
Search: Posts Made By: Jens
Forum: C# May 19th, 2008
Replies: 7
Solved: Speec to text
Views: 1,271
Posted By Jens
Not a problem :p. Glad I could help a little bit.
And thanks for the offer, but I don't need help at the moment. Giving other people help can be fun too.

Well, back to work now, last weeks have...
Forum: C# May 7th, 2008
Replies: 7
Solved: Speec to text
Views: 1,271
Posted By Jens
Hehe, I don't think it is that simple. Speech to text relies on complex algorhytms analyzing hyphens (am I correct?).
At least according to the seminar I got from dragon naturally speaking. If I...
Forum: IT Professionals' Lounge May 6th, 2008
Replies: 49
Views: 6,212
Posted By Jens
I started 'programming' when I was in my 3th year of secondary school (don't know how it is called in england). I wasn't that good in remembering formula's for physics classes, so I wrote a program...
Forum: Java May 5th, 2008
Replies: 5
Views: 1,046
Posted By Jens
You'll still have to make it yourself, but since this threads 'solution' is quite the same in my eyes, I'll just repeat the answer I gave there.

For your architecture, check on your design...
Forum: C# May 5th, 2008
Replies: 1
Views: 1,201
Posted By Jens
Ah great, onceclick. I'm also making an application for it and I must say that sometimes the deployment of these things can be a pain. (In my opinion at least).

That being said, I think the only...
Forum: Java May 5th, 2008
Replies: 2
Views: 1,049
Posted By Jens
Try the book 'head first design patterns'. It has a clear layout of the model view controller pattern (which is fairly hard to really grasp in the start, in my opinion).

The book should tell you a...
Forum: C# Apr 27th, 2008
Replies: 8
Views: 641
Posted By Jens
Ah, true. Forgot about generics.
I was quite tired when I wrote that, so disregard arraylists.

Thanks for correcting me narue.
Forum: C# Apr 27th, 2008
Replies: 8
Views: 641
Posted By Jens
The use of an array with dynamic adding of entries is a little bit more...complex I think.

I'd advise to use an arraylist for that. Do know that if you store an object in an arraylist, that you...
Forum: Java Apr 25th, 2008
Replies: 10
Views: 1,713
Posted By Jens
The button to reset your text field is just an actionlistener that sets the value of your textfield.text property to "" (or null).

For the generation of numbers, I suggest a class where you...
Forum: Java Apr 24th, 2008
Replies: 5
Views: 1,408
Posted By Jens
Try to cut up your structure of your program in several little pieces and start with those one by one.

For example: You'll first need to make a connection to a database itself.
If your...
Forum: Windows Vista and Windows 7 Apr 24th, 2008
Replies: 24
Views: 1,928
Posted By Jens
I wonder...Did you buy an oem version of vista? Newer vista - made computers have hardware components that can only interact with vista itself. For 'normal' drivers like video or sound card drivers,...
Forum: C# Apr 24th, 2008
Replies: 2
Views: 805
Posted By Jens
Try to put your connectionstring in a config - file. This way you'll be able to edit it specifically for the machine you want to install it on.

In you config- file it should look a bit like
...
Forum: Java Apr 24th, 2008
Replies: 2
Solved: i need help
Views: 397
Posted By Jens
Yes...and the question is... :p

I do recommend to wrap your code around tags with CODE=JAVA and /CODE . Makes the whole program a bit easier to read.

Also, specify your problem please :p
Forum: Java Apr 24th, 2008
Replies: 4
Views: 1,936
Posted By Jens
I can be wrong here, but I think that rollback only works for a current transaction. If you use commit, you close that transaction.

So you should catch your error before the commit, and roll back...
Forum: C# Apr 24th, 2008
Replies: 6
Views: 8,190
Posted By Jens
Not a problem, hope it helped.
Forum: C# Apr 23rd, 2008
Replies: 6
Views: 8,190
Posted By Jens
That is handled in a handler in your dropdown. You can try the selectedvaluechanged - handler for that.

The value of your dropdownlist then gets sent through the sender of your listener.

Hope...
Forum: C# Apr 22nd, 2008
Replies: 2
Views: 3,065
Posted By Jens
The msdn - library gives a full list of possible members of RichTextBox.
http://msdn2.microsoft.com/en-us/library/system.windows.forms.richtextbox_members.aspx

It seems you would to use the...
Forum: Java Apr 22nd, 2008
Replies: 2
Views: 1,004
Posted By Jens
Eclipse or IntelliJ might also help, if you are programming this in java.

Aside of development tools, try to study some design patterns. I feel that these kind of applications can be enhanced by...
Forum: Java Apr 21st, 2008
Replies: 8
Views: 829
Posted By Jens
After a while I found some links that might aid you in your quest.

First link: How to ask for help (http://en.wikipedia.org/wiki/Politeness)
Second link: Major resource for finding java (or...
Forum: C# Apr 17th, 2008
Replies: 6
Solved: combobox
Views: 2,079
Posted By Jens
That does seem like a weird course of action to take. Well...Good job I guess Jerry :p
Forum: C# Apr 16th, 2008
Replies: 6
Solved: combobox
Views: 2,079
Posted By Jens
You mean the last item in it?

In that case it would be combobox.SelectedItemIndex = combobox.Items.Count - 1;

This is just a guess though, since I don't have time to try it out for now. Give it...
Forum: C# Apr 16th, 2008
Replies: 2
Views: 462
Posted By Jens
Do you mean design patterns? I don't think I get the question.
Forum: C# Apr 16th, 2008
Replies: 3
Views: 919
Posted By Jens
Writing a server in c#? You'd better be off with unix if it is a whole server :p.

http://www.linuxfromscratch.org/, if you have WAAAYYY too much time and patience on your hands.

If you don't...
Forum: Java Apr 12th, 2008
Replies: 4
Views: 5,003
Posted By Jens
mV.createMainView();
mV has not been declared in this class.

dV.createDetailView();
dV has not been declared in this class.

etc etc.

You should make a new instance for the variables you...
Forum: Java Apr 12th, 2008
Replies: 2
Views: 387
Posted By Jens
Go to the site of sun and download the JDK.
The installation gave you a warning probably, so that might explain why you were able to run it. You can't compile though, since there is no link to your...
Forum: MS SQL Apr 11th, 2008
Replies: 4
Views: 1,820
Posted By Jens
Oh god, I just got it to work. Really thanks! I'll be marking this as solved soon.

I know the question sounded a bit as coming from an uninformed person, but truth is that I did try joins. As I...
Forum: MS SQL Apr 11th, 2008
Replies: 4
Views: 1,820
Posted By Jens
Ah thanks. I will try that.
I tried the join - statement before, but it gave me double rows. I will keep you posted if it works though.

Thanks for the fast reply.
Forum: MS SQL Apr 11th, 2008
Replies: 4
Views: 1,820
Posted By Jens
Hello everyone

I am building on a little project in .net, but I have ran into some problems on database - level.

I am creating a view with data from a couple of tables. It all revolves around...
Forum: C# Apr 9th, 2008
Replies: 1
Views: 445
Posted By Jens
It would look to me like there is an error with connection to your database.
What is the type of exception you get?
Forum: C# Apr 4th, 2008
Replies: 12
Views: 1,242
Posted By Jens
True

If ondatasend is in a different class, you could try to call a new instance of this class. This way you would make sure that none of the data from your first ondatasend() get carried over.
...
Forum: C# Apr 3rd, 2008
Replies: 12
Views: 1,242
Posted By Jens
Yes, but I showed it to some friends and they noted 'OnDataSend'.
He uses the while to 'pause' the program as long as he is fetching his data from ondatasend. After he got his OK, error or ERROR, he...
Forum: C# Apr 3rd, 2008
Replies: 12
Views: 1,242
Posted By Jens
I don't know. I would say that you have a logical flaw or that I don't know enough of c# :p

while (!(m_szdata.Contains("OK\r\n")) && !(m_szdata.Contains("error")) &&
...
Forum: C# Apr 3rd, 2008
Replies: 12
Views: 1,242
Posted By Jens
I'm going to make a small guess here, feel free to correct me.


while (!(m_szdata.Contains("OK\r\n")) && !(m_szdata.Contains("error")) &&
!(m_szdata.Contains("ERROR"))) ;

...
Forum: Java Apr 3rd, 2008
Replies: 19
Views: 1,216
Posted By Jens
It's as Ezzarel says. You can't magically use the deposit function.

First things first. You probably don't need the constructor overloader public bankofmark(double).
You can keep deposit(double)...
Forum: Java Apr 2nd, 2008
Replies: 19
Views: 1,216
Posted By Jens
Hmm, I don't know for sure. It would be easier to be able to test this.
I'm quickly gonna try something though, but I'm not certain if it will help you...


public double getnewBalance(double...
Forum: C# Apr 2nd, 2008
Replies: 10
Views: 10,905
Posted By Jens
It'll probably take a while untill I get to that module of the code, since it has a change request pending, but I wrote it down and I'll try to send you if I manage to find something out. Don't count...
Forum: Java Apr 2nd, 2008
Replies: 19
Views: 1,216
Posted By Jens
Not a problem and glad I could help. We are here to learn ;).

Good luck coding
Forum: Java Apr 2nd, 2008
Replies: 19
Views: 1,216
Posted By Jens
I think that your object gets instantiated since you use the format bankofmark name = new bankofmark(constructor items);

But the problem lies in your constructor. You should add this. before each...
Forum: Java Apr 2nd, 2008
Replies: 12
Views: 1,504
Posted By Jens
That's true though. Can't argue with that. The person should have enough time to think of a valid topic.
Forum: C# Apr 2nd, 2008
Replies: 10
Views: 10,905
Posted By Jens
You can do this by using serialization too.
.Net has good documentation about the issue.

MSDN Linkie (http://msdn2.microsoft.com/en-us/library/ms745778.aspx)

I have never used this myself,...
Showing results 1 to 40 of 47

 


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

©2003 - 2009 DaniWeb® LLC