5,727 Posted Topics

Member Avatar for freesoft_2000

Way too long. A good sig is no more than one line, 2 at most.

Member Avatar for jwenting
0
239
Member Avatar for pizzafiend

You may be able to make something that runs on your machine and calls the profile update every few minutes but I don't think Dani would like that...

Member Avatar for MartyMcFly
1
132
Member Avatar for OurNation

I don't use it. In fact I've blocked the entire domain causing any mail from GMail accounts to be bounced. If someone wants to send me email, send it from an account where Google doesn't harvest the entire message content including my contact information.

Member Avatar for techied
0
359
Member Avatar for mackverick

Better use String.split() instead of StringTokenizer. It will give you an array of Strings split on whatever you give it to use as a field separator. As your data structure is pretty static you can then use that array and average all the data in it (while skipping the first …

Member Avatar for mackverick
0
251
Member Avatar for falcon123

Netscape is crap. Firefox is netscape on steroids (and with less bugs). So is IE in fact. Netscape standards compliance is abysmal, performance is poor, the only reason noone writes exploits for the miriad holes in it is because noone uses it.

Member Avatar for nizzy1115
0
114
Member Avatar for jwenting

[B]Symptom:[/B] Error "database unavailable" when trying to connect to a Firebird database even if fbserver is running fine (and Java applications connect, isql works great, remote clients can connect great, etc.). [B]Scenario:[/B] You have just installed Firebird on a machine that previously had Interbase installed and are trying to run …

0
173
Member Avatar for chound

hoard those invites, prevent gmail from stealing even more peoples' lifes by profiling them completely (which is what Google does, everything you write or receive is used to build up marketing profiles (for now...) of you and the other party (who doesn't even have to be a gmail subscriber and …

Member Avatar for hostmoon
0
162
Member Avatar for Lord Felix

You need to explicitly cast the object you retrieve from the List to the correct type unless you use a 1.5 level compiler in which case you can use generics to declare the List to only accept a specific type (and thus do the cast for you on retrieval). You'd …

Member Avatar for Meldroz
0
568
Member Avatar for riturajraina

You can't, not with that compiler... It's an old realmode DOS compiler, and in those days (say the mid 1980s) memory segments were 64KB and could not get larger. Switch to a more modern compiler (one that was written in the last decade or so).

Member Avatar for Narue
0
252
Member Avatar for mcfarden

Little if it's really dead. There are companies that can retrieve (or try to) the data for you but those services cost thousands of dollars/Euros at least. If the drive is still under warranty the best you can do is try to get a warranty replacement for it. Contact your …

Member Avatar for Thong_Ispector
0
106
Member Avatar for Ghost

First learn proper OO techniques and proper Java class naming. Then maybe I'll take a look.

Member Avatar for paradox814
0
91
Member Avatar for barracuda

don't get involved in pyramid schemes, they're illegal and pretty much all of them are scams.

Member Avatar for jwenting
0
187
Member Avatar for Powder

Line noise? Connect the line out from the audio deck to the line in for your soundcard.

Member Avatar for DMR
0
99
Member Avatar for OurNation
Member Avatar for Nostra16
1
854
Member Avatar for scox1

Show what you have and tell what goes wrong. You're saying you've trouble getting it to compile so you have some sourcecode already... We're not here to write your software for you, you'd never learn anything except to come begging for more and more...

Member Avatar for techied
0
109
Member Avatar for webbo

If money's no object an NVidia Quadro FX would be the only card to seriously consider. Something like this: [url]http://www.pny.com/products/quadro/fx/2000fx.asp[/url] Retail price (special order only) €1600-€1700

Member Avatar for webbo
0
308
Member Avatar for Darkfoxx

What's the problem? You can implement this in several ways. Easiest is to have the environment know where all the fish are. Create a coordinate class (or just use the existing Point class) and give the fish a method to move them which takes the current coordinate and returns the …

Member Avatar for jwenting
0
178
Member Avatar for AQWst

You should really dig into the API docs a bit. Depending on what you want to achieve you can use one of two classes at least to achieve what you want using only standard API functions.

Member Avatar for paradox814
0
612
Member Avatar for myindya
Member Avatar for alc6379
0
87
Member Avatar for jharpo1

It all depends on your DVD player, your burner, your software, and the brand and type of recordables you use. Some players won't accept any recordables or rewritables, others accept only certain types and recorded using specific protocols. Check your manual for what will and will not work (and even …

Member Avatar for jwenting
0
75
Member Avatar for voodoolive
Member Avatar for jwenting
0
179
Member Avatar for server_crash

Look for expression parsers. There's a nice example in the book "the art of Java" by Herbert Schildt and James Holmes. Nice book to read anyway with some rather interesting examples of what you can do with Java.

Member Avatar for jwenting
0
118
Member Avatar for SWAT

Overclocking is indeed dangerous, and unless you take massive risks usually yields only minimal results. You basically change settings in the hardware to override things like clockspeeds and temperature constraints. These settings are made in the factory to assure the product works well and doesn't get damaged by overheating or …

Member Avatar for Catweazle
0
492
Member Avatar for sye

Visual J++ hasn't been updated for about 5 years or more AFAIK. It uses a 1.1.6 (maybe 1.1.7) compliant compiler, current version is 1.5.0.01

Member Avatar for jwenting
0
177
Member Avatar for SyLk

Java ALWAYS uses pass by value, so your question makes no sense. Maybe you THINK objects are passed by reference but they aren't. What's passed are references to objects and these are passed by value.

Member Avatar for Narue
0
584
Member Avatar for tat2dlady

There is no way to force a thread to stop, and for good reasons as doing so could leave the entire application in an unpredictable state. The standard means is to have a public function in the Runnable instance used by the thread which sets some flag. The run method …

Member Avatar for jwenting
0
107
Member Avatar for Ghost

You should separate display logic from business logic anyway. Your entire application is butt ugly, one big block of spaghetti code. Use proper OO design. And use proper Java class and method naming... Maybe you should first learn Java before trying to write your own language?

Member Avatar for server_crash
0
261
Member Avatar for walljoshua
Member Avatar for AQWst

Make the component that shows the time a self contained bean. Create something that inherits from JPanel or JComponent and use that as your base, then display the time on there. Give it a thread that updates the component, then goes to sleep for a while (a second would be …

Member Avatar for AQWst
0
218
Member Avatar for grajeshmsc

You can use Oracle without ODBC, just use the class 4 JDBC driver which has far better performance and is platform independent. You're not going to create DSNs from Java without using native code (thus JNI and a DLL), though maybe the Oracle ODBC bridge driver has some non-standard functionality …

Member Avatar for jwenting
0
56
Member Avatar for FireNet

mode 13 hex ONLY works under DOS in 16 bit mode. It cannot be entered in Windows in any mode.

Member Avatar for 1o0oBhP
0
2K
Member Avatar for atul
Member Avatar for matt_5104

Of course. I hope you use a model to contain your data and have your screens read the data to be shown from the model? If so, just show the screen like you would from the toolbar or menu. If not, it's time to rethink your application architecture.

Member Avatar for jwenting
0
90
Member Avatar for server_crash

I guess you're looking at Java courses? Sun has excellent ones. Available as classroom study, web based, or CD/Book format depending on course and your preferences.

Member Avatar for server_crash
0
79
Member Avatar for phragix

A String is not an array of characters in Java (in this Java differs from for example C and Pascal). The compiler is quite correct and extremely helpful in pointing out that you're trying to use a String as if it were an Array (yes, arrays are also objects).

Member Avatar for phragix
0
537
Member Avatar for server_crash
Member Avatar for server_crash
0
143
Member Avatar for MrScruff

Controls will always take up all available room in a layout manager. That's guaranteed by the AWT API (on which Swing builds). So your answer is no, you can't prevent the sliders from changing their size.

Member Avatar for paradox814
0
240
Member Avatar for the b

The Sun compiler is the ONLY official one for the language. There are others that are certified to be correct but the Sun package (which you claim doesn't work...) is the standard. Anything that doesn't compile with that should not compile with anything.

Member Avatar for Jason Marceau
0
260
Member Avatar for George2

properties consist of simple key-value pairs with 1 value per key. You seem to want multiple values per key which is not directly supported. There are ways around this but it would be far better to take another mechanism like XML to store your data.

Member Avatar for George2
0
88
Member Avatar for alyssamichaels

And the crucial question: do you have permission from your boss to pilfer his customer data? I'd think you're trying to steal from your boss here, that data is not yours for the taking without permission (which would require permission from each individual customer in many countries). And if you …

Member Avatar for MartyMcFly
0
144
Member Avatar for xplst

Are you sure the library is built for your compiler? You might have to build it from source first if it was compiled against another compiler (version).

Member Avatar for grymse
0
3K
Member Avatar for satimis

Correct. Buy Head First Java and work your way through that. The only thing which gets close in quality is the official Sun tutorial.

Member Avatar for satimis
0
166
Member Avatar for OurNation

wrong forum would be the first thing that's wrong with it... You don't need that reader either. And then your calculation will of course always yield an integer value as you're working with only integers.

Member Avatar for OurNation
0
155
Member Avatar for ultimate_fusion

Java will initialise all elements of an array to null when you create the array itself. Your Details (ALWAYS, ALWAYS, ALWAYS capitalise classnames) class should have a public setName(String name) method. You should indeed also initialise the array elements yourself.

Member Avatar for tonakai
0
91
Member Avatar for chound

oh, they can monitor you just fine. After all, every bit of data you use comes in through their servers so they can count them all. They'll just use a more sophisticated mechanism... And they may even cut you off completely for violation of contract by blocking their metering software …

Member Avatar for chound
0
84
Member Avatar for pasaris

Runnable is used in multithreading. The run() method is used by a Thread instance when the thread is running. You never call it directly!

Member Avatar for jwenting
0
65
Member Avatar for rcrevolution

The speed increase you're seeing is mostly psychological. The real performance increase in the machine is small enough you'd hardly ever notice it (unless maybe in extremely CPU starved applications where it may make a difference between behaviour that is just fluid and behaviour that is just stuttering).

Member Avatar for szukalski
0
229
Member Avatar for mikeandike22

Given the transfer speed you'd need an hour or more to upload that gigabyte even on a 2MB SDSL connection. Just buy a 1GB flashdrive, they're dirtcheap and a lot faster. Your ISP will love you, which may mean no disconnects due to going over your datalimit :) And if …

Member Avatar for mikeandike22
0
373
Member Avatar for Squirty

As to washers: remember that the motherboard is grounded to the case through the screws. Washers might prevent grounding leading to charge buildup which can cause serious problems (including shorts and sparking).

Member Avatar for Catweazle
0
2K
Member Avatar for ian_tec234

Overclocked CPUs don't last nearly as long as do ones running at the listed speed. The performance gain from moderate overclocking is also so low it's not worth the trouble and severe overclocking will have severe impact on the service life of your system (cutting it down from years to …

Member Avatar for Shadowgrip
0
108

The End.