Forum: C# May 19th, 2008 |
| Replies: 5 Views: 413 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 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 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 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 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 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 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 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 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 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 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 |
Forum: Java Apr 24th, 2008 |
| Replies: 2 Views: 137 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 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 |
Forum: C# Apr 23rd, 2008 |
| Replies: 6 Views: 1,152 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 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 |
Forum: Java Apr 21st, 2008 |
| Replies: 8 Views: 288 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 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 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 |
Forum: C# Apr 16th, 2008 |
| Replies: 3 Views: 292 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 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 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 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 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 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 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 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 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 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 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 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 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 |
Forum: Java Apr 2nd, 2008 |
| Replies: 19 Views: 555 |
Forum: Java Apr 2nd, 2008 |
| Replies: 19 Views: 555 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 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 |