Forum: C# May 19th, 2008 |
| Replies: 7 Views: 1,271 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 Views: 1,271 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 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 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 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 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 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 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 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 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 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 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: 397 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 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 Not a problem, hope it helped. |
Forum: C# Apr 23rd, 2008 |
| Replies: 6 Views: 8,190 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 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 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 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 Views: 2,079 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: 2,079 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 Do you mean design patterns? I don't think I get the question. |
Forum: C# Apr 16th, 2008 |
| Replies: 3 Views: 919 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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,... |