1,034 Posted Topics

Member Avatar for mexicanwitewash
Member Avatar for pty
0
383
Member Avatar for warpeace2006

Yes, then we should nuke the place and say screw everyone but ourselves.

Member Avatar for server_crash
0
633
Member Avatar for computerpros

You could call shutdown-a, but it's not going to automatically restrict it for you.

Member Avatar for computerpros
0
248
Member Avatar for Phaelax

[QUOTE=Phaelax]This is a question from a mid-term I had awhile ago. I just want to hear what you guys think the answer is, because I just can't agree with the teacher on this. A(n) ____ is a listener interface that listens for any events that occur during the execution of …

Member Avatar for jwenting
0
189
Member Avatar for itsukumar

The biggest problem is multithreading. If you want to use it with a GUI then you'll most certainly have to use multithreading. I made a really crappy one a while back just as a console application, because the multithreading got to be a pain.

Member Avatar for jwenting
0
201
Member Avatar for nizzy1115
Member Avatar for server_crash
0
190
Member Avatar for Nazaria
Re: help

[QUOTE=Nazaria]hi... my name is nazaria segundo... and i have a question really hard for what i know... i have to solve the definite integral of 1 over (sin square of X) plus (4 cos square of X) if any one can solve it pls let me know!!!! thank youuuu[/QUOTE] What …

Member Avatar for iamthwee
0
152
Member Avatar for Manojsah

[quote] please show me the way to do this. [/quote] Insert code into editor?

Member Avatar for server_crash
0
139
Member Avatar for Yustme
Member Avatar for server_crash
0
81
Member Avatar for johnray31

I use Dev-C++ which does well with compiling, but I don't like the indentation mechanism of it. It doesn't properly align everything like it should...

Member Avatar for server_crash
0
534
Member Avatar for Yustme

Create a Random object right before the loop. Inside of the loop, you have your normal thing and then the last 'sensor' parameter would look something of the sort: [code] sensor[random_name.nextInt(10)+1]; [/code] That would give you a random number from 1 to 10.

Member Avatar for Yustme
0
525
Member Avatar for tripnip

Decimal form: use DecimalFormat Fraction Form: use modulus division and a little math.

Member Avatar for server_crash
0
156
Member Avatar for sam1

Think of doing two things at once. You could consider that using two threads. Threads make multitasking more efficent and possible.

Member Avatar for Phaelax
0
134
Member Avatar for wanda

diagnol on a board like this: 00 01 02 10 11 12 20 21 22 Would be 00,11,22 or 20,11,02 The first part can easily be done with a simple loop. The second diagnol may take a little thought.

Member Avatar for iamthwee
0
157
Member Avatar for server_crash

I just installed VS.NET 2003 with a lot of difficulties... There was some kind of problem with the windows installer, so I had to do the following to make it work: [quote] Click Start, click Run, type MSIEXEC /UNREGISTER, and then click OK. Even if you do this correctly, it …

Member Avatar for goldeagle2005
0
154
Member Avatar for psodhi

You should call setBackground() on the container rather than the frame. Conn.setBackground

Member Avatar for psodhi
0
281
Member Avatar for iamthwee

Vectors shouldn't be used, because ArrayLists are simply better ;) StringTokenizer isn't that bad, but I think the newer version is called StringBuilder... I could be wrong about that one.

Member Avatar for aniseed
0
249
Member Avatar for mperkins07
Member Avatar for monisola

[QUOTE=monisola]will like to know more about java programming language[/QUOTE] yeah, okay.

Member Avatar for aniseed
0
202
Member Avatar for monkeyphonics

Why does int menu return an int, but you aren't returning anything? The itemCost method is the one that should be returning something, in my opinion.

Member Avatar for monkeyphonics
0
154
Member Avatar for >shadow<
Member Avatar for mohamad11

You aren't appending to the file anywhere. You create the OutputStream with the proper second parameter, but not writing to it.

Member Avatar for jwenting
0
856
Member Avatar for moon_light

[quote] could u help me plz [/quote] I couldn't find anyone by the name of 'u' in the memberlist?

Member Avatar for jwenting
0
203
Member Avatar for bondito

I don't see where you're encrypting it... You get the char value from the int value, which is from the same char value, so you're really doing nothing there. You need to get the ascii value and add least add something to it.

Member Avatar for hooknc
0
482
Member Avatar for YoungCoder
Member Avatar for signal1st

I would use a map, definately. Create the map and then when you go to insert something, it would be like this: map.insert( make_pair("Dog","Big fury animal") ); That's how I would do it, but of course there are many solutions to this.

Member Avatar for server_crash
0
141
Member Avatar for hamzeh

[QUOTE=hamzeh]I need some programs when program runnig show script , memory usage and modules. please help me[/QUOTE] :lol: :lol: :lol:

Member Avatar for iamthwee
0
141
Member Avatar for Phaelax

Good luck fixing that. The ONLY thing I can think of trying is using a scrollpane and then adding the editorpane to that. If that doesn't work then I believe you are out of luck.

Member Avatar for server_crash
0
204
Member Avatar for Dibrowse

Java is not JavaScript. JavaScript is not Java. Try the JavaScript forum :)

Member Avatar for server_crash
0
59
Member Avatar for rabidpanda
Member Avatar for bondito

There's no return statement at the end of the string method. The unreachable statements are anything after your first return statement, because there's no case statement involved... It will always execute making anything below that not execute.

Member Avatar for server_crash
0
170
Member Avatar for arrogant
Member Avatar for BeastOverlordH6
Member Avatar for tayspen
0
203
Member Avatar for erez131165

[QUOTE=erez131165]I need this script: [URL="http://www.jscode.com/js_auto_bookmark.shtml"]http://www.jscode.com/js_auto_bookmark.shtml[/URL] i just dont know how to make the link as a picture, insted of "bookmark us!" text/ any help with this ?:eek:[/QUOTE] Maybe the JavaScript forum could help you?

Member Avatar for iamthwee
0
115
Member Avatar for baron

If you think this forum is bad, then post in the sun.java forum! You'll get some delightful comments there.

Member Avatar for alc6379
0
169
Member Avatar for iamthwee

I had a really awesome piece of code that would plot ANY order of polynomial virtually with no work and virtually no real utility methods. I may have it and may not :) I'll look for it though.

Member Avatar for iamthwee
0
120
Member Avatar for an051682

Get each character and cast it to an int. output each int in the order you read.

Member Avatar for server_crash
0
94
Member Avatar for Coach_Nate

To cut down on parenthesis you could call toString(): stack.lastElement().toString()

Member Avatar for server_crash
0
258
Member Avatar for AdamD021

I'm not very good at diagnosing specs vs prices, but I would almost say it's a bit pricey. I personally wouldn't pay that much for the specs. What exactly are you looking for in a laptop?

Member Avatar for nizzy1115
0
84
Member Avatar for server_crash

I've got the following code: [code] template <typename T> int Histogram<T>::get_occurances(const T& obj) { map<T,int>::iterator find_occur = frequency.find(obj); if ( find_occur == this->frequency.end() ) { return 0; } return ( find_occur->second ); } [/code] The following line always gives me an error saying ';' expected before find_occur. map<T,int>::iterator find_occur = …

Member Avatar for server_crash
0
156
Member Avatar for MIGSoft

I was at the mall with a couple of girls one day and we were coming out of a store. I was trying to figure out something on my cell phone so I was looking down at it walking. The store had glass walls, by the way. We were walking …

Member Avatar for BeastOverlordH6
0
122
Member Avatar for sub-zero

getNextDay() and getPreDay(). These methods don't have a default return value and may never return.

Member Avatar for sub-zero
0
72
Member Avatar for sarahjane
Member Avatar for Phaelax
0
168
Member Avatar for Dani
Member Avatar for Dani
0
98
Member Avatar for Shaun1987

I believe you can get the lable of the button: JButton.getLabel(); that could be deprecated so you can also simply try: JButton.getText();

Member Avatar for Shaun1987
0
185
Member Avatar for sqlchopper
Member Avatar for sandesh_daddi

Did you say you were getting paid for this? If so, you should have the experience to do it yourself.

Member Avatar for DMR
0
345
Member Avatar for Dark_Omen

Since you are using arraylist, use the contains() method to check if the entry already exists. If it doesn't, then add it.

Member Avatar for Dark_Omen
0
131
Member Avatar for nizzy1115

I don't like being a posting wiz. Most forums allow you to have custom usernames when you reach like 1000 posts. I would like that, but I'm not the administrator.

Member Avatar for DMR
0
232
Member Avatar for wsafdbv
Member Avatar for Phaelax
0
133

The End.