Search Results

Showing results 1 to 40 of 398
Search took 0.02 seconds.
Search: Posts Made By: sciwizeh
Forum: Java Sep 18th, 2009
Replies: 2
Views: 266
Posted By sciwizeh
thanks for the info, I'll relay that to him.
Forum: Java Sep 17th, 2009
Replies: 2
Views: 266
Posted By sciwizeh
Hello everyone,
Someone I know asked me about a problem he has with a program he is writing. I know nothing about his code, but he is writing a keyboard program, with the midi synthesizer in the...
Forum: Java Jun 15th, 2009
Replies: 8
Views: 460
Posted By sciwizeh
I think I can shed some light on why people have stopped replying... People don't like that sort of application, so not many people are willing to help create one.

if I were to give a fast guess,...
Forum: Java Jun 15th, 2009
Replies: 6
Solved: Generics and +=
Views: 273
Posted By sciwizeh
Thanks, perhaps I'll just make it for only one type. The reason I wanted this is because I wanted to have a position in an array as a vector which has to be an int, but I also wanted to be able to...
Forum: Java Jun 14th, 2009
Replies: 17
Solved: Stack and Queue
Views: 845
Posted By sciwizeh
Look at the java tutorial on collections there is an entire trail there, here is a link: Collections trail (http://java.sun.com/docs/books/tutorial/collections/index.html)
Forum: Java Jun 14th, 2009
Replies: 5
Views: 293
Posted By sciwizeh
What do you mean by "fake Java"? Do you mean Processing (http://processing.org/reference/environment/)? if that is the case than you can simply download it as it is free.

If it is not processing,...
Forum: Java Jun 14th, 2009
Replies: 6
Solved: Generics and +=
Views: 273
Posted By sciwizeh
what i mean by "cannot do that" is that because of the generic within the class trying to take the component x of type <T> and add it to another Java won't accept that as correct.
here is the code...
Forum: Java Jun 14th, 2009
Replies: 6
Solved: Generics and +=
Views: 273
Posted By sciwizeh
Hello all, it's been a while since I've had a question, but I'm back.

I'm trying to write a Vector class which can be any type. The problem I have is that generics can only hold objects, so when I...
Forum: Java May 22nd, 2009
Replies: 6
Views: 544
Posted By sciwizeh
Thanks for the information, I didn't realize that there were more posts here, because I didn't get the normal e-mail from daniweb. thanks i'll use that Ezzaral.
Forum: Game Development Apr 17th, 2009
Replies: 5
Views: 663
Posted By sciwizeh
Oh, I would never have thought to take the address of the first element, that could be very useful thank you.
Forum: Game Development Apr 16th, 2009
Replies: 5
Views: 663
Posted By sciwizeh
in that case i'll try the vector, what do you mean by "outside of the C++ standard trick"?
Forum: Game Development Apr 15th, 2009
Replies: 5
Views: 663
Posted By sciwizeh
Hello, the game development forum seemed the best place to ask, because it seems to be the only place where people might be using a 3D modeling program... if you have a better place for this to go...
Forum: C++ Apr 10th, 2009
Replies: 8
Views: 525
Posted By sciwizeh
Hello, I have a question, when does a global variable get destructed?

ex.
#include <iostream>
using namespace std;
class simple {
public:
int *i;
simple(int ni){
i =...
Forum: C++ Apr 10th, 2009
Replies: 4
Views: 412
Posted By sciwizeh
Well, now I feel dumb... I forgot the SDL_EnableUNICODE call... thanks
Forum: C++ Apr 10th, 2009
Replies: 4
Views: 412
Posted By sciwizeh
Thanks for the reply, I'll check that out in a little bit, and post results.
Forum: C++ Apr 10th, 2009
Replies: 4
Views: 412
Posted By sciwizeh
Hello all, I'm trying to make a simple text box with SDL, I have loosely based it off of The Lazy Foo Tutorial on sting input (http://lazyfoo.net/SDL_tutorials/lesson23/index.php), but this code...
Forum: Java Mar 17th, 2009
Replies: 6
Views: 544
Posted By sciwizeh
thanks for the reply (and welcome to daniweb first post I see) I ended up doing that already, I figured it could be a temporary solution, until someone here might come up with something else, maybe...
Forum: Java Mar 16th, 2009
Replies: 6
Views: 544
Posted By sciwizeh
Hello All,
I'm trying to write a simple html editor that will highlight tags, and it does, but if the user types the caret jumps to the very end of the document, how can I stop this from...
Forum: Posting Games Feb 27th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
Forum: Java Feb 23rd, 2009
Replies: 2
Views: 1,075
Posted By sciwizeh
thanks for the reply, no one else seems to not know, I did however find a way to do it, I found it while searching google,...
Forum: Java Feb 22nd, 2009
Replies: 4
Views: 528
Posted By sciwizeh
I have a new suggestion for you.

Make a new JPanel, or JComponent instance in your constructor, then rather than adding your listeners to this add them to the JPanel/JComponent and add the...
Forum: Java Feb 22nd, 2009
Replies: 1
Views: 694
Posted By sciwizeh
unable to edit last post, sorry about the double post and the bump, but I thought about something else that I could use some advice on.

Once I can use an animated GIF (still haven't figured it...
Forum: Java Feb 22nd, 2009
Replies: 2
Views: 1,075
Posted By sciwizeh
Hello, this is related to the last thread I posted (http://www.daniweb.com/forums/thread177461.html), but it is also different. I found something about ImageObserver with a google search and can't...
Forum: Java Feb 22nd, 2009
Replies: 3
Views: 361
Posted By sciwizeh
JOptionPane.showMessageDialog(...); takes two strings, you are only using one really long string after +payment, add "",
Forum: Java Feb 21st, 2009
Replies: 4
Views: 528
Posted By sciwizeh
I'm not sure, usually the component in question has to have focus. The only way I have been able to get a key listener to work is to derive from JComponent rather than JFrame then add the derived...
Forum: Java Feb 21st, 2009
Replies: 4
Views: 528
Posted By sciwizeh
Hello,
I think I may have found a reason, but I also have a few questions, the first of which is why are you using a window listener, the same action could be done with:...
Forum: Java Feb 21st, 2009
Replies: 1
Views: 694
Posted By sciwizeh
So, I got this idea that I could make a simple game in Java, with animated GIFs for the running animations, but I have a problem, although Java will display the animation on a JLabel when made into...
Forum: C++ Feb 18th, 2009
Replies: 0
Views: 254
Posted By sciwizeh
I have the eclipse for Java developers, and I have the MinGW that's distributed with Dev-C++. I just want to know what downloads need to get from the update manager of eclipse, I also don't know how...
Forum: Posting Games Feb 11th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
I took three years of high school spanish, but I hardly know the language...


will the next person use the forbidden words?
Forum: Posting Games Feb 9th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
they may be, but they are also caused by the rotation of the earth and wind

do you like physics?
Forum: Computer Science Feb 9th, 2009
Replies: 5
Views: 763
Posted By sciwizeh
i was simplifying the actual problem, really i have two matricies, one for what object is there and one for the heat value that is there, it's hard to say what the numbers really represent, because...
Forum: Posting Games Feb 7th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
not yet

is today yesterday's tomorrow?
Forum: Java Feb 7th, 2009
Replies: 2
Views: 1,984
Posted By sciwizeh
I know, but, i've tested out some random stuff, and my way makes a better spread.
Forum: Posting Games Feb 6th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
the sky is black, with water molecules that refract light making it look blue.

is the time that you post the time that is displayed when you read the post?
Forum: Computer Science Feb 1st, 2009
Replies: 30
Views: 2,870
Posted By sciwizeh
Java can also do this.
Forum: Computer Science Jan 31st, 2009
Replies: 5
Views: 763
Posted By sciwizeh
Thanks for the advice, I'm not sure I understand what you mean about the "fake" metric system.

I just had another thought on how to go about doing this, again, I'm not sure about how to go about...
Forum: Computer Science Jan 31st, 2009
Replies: 5
Views: 763
Posted By sciwizeh
So, working on my ongoing Falling Sand Game project, I find that the best way to make the heat spread evenly is to use distances from heat sources. the problem is that the only way i can think to do...
Forum: Posting Games Jan 30th, 2009
Replies: 164
Views: 14,870
Posted By sciwizeh
i plan on making over a trillion...

what is it you say when the answer is true?
Forum: Java Jan 29th, 2009
Replies: 8
Views: 1,065
Posted By sciwizeh
may i suggest that you look at the first thread i started after my joining Daniweb? it has a solution to the problem that i got from a book (the art of java, search it on amazon), but i do suggest...
Forum: Java Jan 29th, 2009
Replies: 3
Views: 572
Posted By sciwizeh
The Art Of Java (http://www.amazon.com/Art-Java-One-Off/dp/0072229713) has an example of a web crawler, but it doesn't go into mySQL.
Showing results 1 to 40 of 398

 


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

©2003 - 2009 DaniWeb® LLC