User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 370,579 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 1,967 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 47
Search took 0.01 seconds.
Posts Made By: Jens
Forum: C# May 19th, 2008
Replies: 5
Views: 413
Posted By Jens
Re: Speec to text

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: 5
Views: 413
Posted By Jens
Re: Speec to text

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 can...
Forum: Software Developers' Lounge May 6th, 2008
Replies: 49
Views: 3,350
Posted By Jens
Re: How long have you been programming?

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: 355
Posted By Jens
Re: Final year Project

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 patterns....
Forum: C# May 5th, 2008
Replies: 1
Views: 188
Posted By Jens
Re: How to check a DLL exists in system or not

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 way...
Forum: Java May 5th, 2008
Replies: 2
Views: 242
Posted By Jens
Re: MVC - Model View Controller

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: 313
Posted By Jens
Re: please help me in this code

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: 313
Posted By Jens
Re: please help me in this code

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: 8
Views: 412
Posted By Jens
Re: i need help creating a simple game.

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 declare...
Forum: Java Apr 24th, 2008
Replies: 5
Views: 291
Posted By Jens
Re: database contents display in a gui

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 connection...
Forum: Windows Vista Apr 24th, 2008
Replies: 24
Views: 717
Posted By Jens
Re: vista to xp

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: 284
Posted By Jens
Re: how to add database into the while iam deploying.

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
Views: 137
Posted By Jens
Re: i need help

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: 2
Views: 248
Posted By Jens
Re: MySQL rollback problem.

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: 1,152
Posted By Jens
Re: how to bind dropdown to a datasource

Not a problem, hope it helped.
Forum: C# Apr 23rd, 2008
Replies: 6
Views: 1,152
Posted By Jens
Re: how to bind dropdown to a datasource

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 this...
Forum: C# Apr 22nd, 2008
Replies: 2
Views: 340
Posted By Jens
Re: Using Fonts in C#

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: 244
Posted By Jens
Re: project for stand alone system jwellary shop ?

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: 288
Posted By Jens
Re: java gui help

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 other)...
Forum: C# Apr 17th, 2008
Replies: 6
Views: 660
Posted By Jens
Re: combobox

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
Views: 660
Posted By Jens
Re: combobox

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 a...
Forum: C# Apr 16th, 2008
Replies: 2
Views: 151
Posted By Jens
Re: help in getting pattern defintion?

Do you mean design patterns? I don't think I get the question.
Forum: C# Apr 16th, 2008
Replies: 3
Views: 292
Posted By Jens
Re: Writing High perfomance server using C#

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 mean...
Forum: Java Apr 12th, 2008
Replies: 3
Views: 590
Posted By Jens
Re: Switching between Multiple Frames

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 want to...
Forum: Java Apr 12th, 2008
Replies: 2
Views: 144
Posted By Jens
Re: Help with Netbeans (n00b inside)

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: 792
Posted By Jens
Re: Null value in view

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: 792
Posted By Jens
Re: Null value in view

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: 792
Posted By Jens
Null value in view

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 my...
Forum: C# Apr 9th, 2008
Replies: 1
Views: 172
Posted By Jens
Re: ThumbnailView

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: 599
Posted By Jens
Re: Receiving Data w/ C#

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.

I...
Forum: C# Apr 3rd, 2008
Replies: 12
Views: 599
Posted By Jens
Re: Receiving Data w/ C#

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: 599
Posted By Jens
Re: Receiving Data w/ C#

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: 599
Posted By Jens
Re: Receiving Data w/ C#

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: 555
Posted By Jens
Re: another little program needing help...

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: 555
Posted By Jens
Re: another little program needing help...

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: 8
Views: 2,381
Posted By Jens
Re: upload download any file type to sql DB using c# windows form

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: 555
Posted By Jens
Re: another little program needing help...

Not a problem and glad I could help. We are here to learn ;).

Good luck coding
Forum: Java Apr 2nd, 2008
Replies: 19
Views: 555
Posted By Jens
Re: another little program needing help...

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: 628
Posted By Jens
Re: Java Project

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: 8
Views: 2,381
Posted By Jens
Re: upload download any file type to sql DB using c# windows form

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, but I...
Showing results 1 to 40 of 47

 
All times are GMT -4. The time now is 5:24 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC