3,927 Posted Topics

Member Avatar for chiiqui
Member Avatar for Ancient Dragon
0
172
Member Avatar for plasticfood
Member Avatar for getmet
Member Avatar for Ezzaral
0
203
Member Avatar for bibiki

I believe he was referring to the removing and recreating all of your components each time instead of merely updating the data they contain. Update the data in your table model. You don't have to throw everything away.

Member Avatar for bibiki
0
556
Member Avatar for new_2_java

Yes, those components are not part of the Java SE API so you will need to provide classpath entries to the locations of the jars containing the Java EE api implementations. There should be some info in your Tomcat docs on how to compile those source files. This article may …

Member Avatar for Taywin
0
4K
Member Avatar for geeerald1131

Continued here: [url]http://www.daniweb.com/software-development/java/threads/385687[/url] Please do not create multiple threads for a single question. Closing this one to forestall two active threads on this.

Member Avatar for Ezzaral
0
100
Member Avatar for kaykayagogo
Member Avatar for yup790
Member Avatar for JamesCherrill
0
257
Member Avatar for Ezzaral

Has advanced search simply moved or gone away entirely? It looks like search has changed a bit and I can't seem to get to the advanced search screen.

Member Avatar for Dani
0
194
Member Avatar for theCompiler

Don't know why another thread was necessary: [url]http://www.daniweb.com/software-development/c/threads/385432[/url]

Member Avatar for Ezzaral
0
71
Member Avatar for Kevingon

Folder permissions are the likely culprit. Is the exception giving you any more information?

Member Avatar for Kevingon
0
195
Member Avatar for mitchiexlolz
Member Avatar for mitchiexlolz
0
257
Member Avatar for nick6987
Member Avatar for nick6987
0
217
Member Avatar for NormR1

[QUOTE]Do the standard IDEs have options that would warn about the condition?[/QUOTE]Yes, Netbeans warns you of that. [QUOTE]When do you ever want to shadow a class level variable with a local definition?[/QUOTE]No good case for it really comes to mind. It's just likely to cause confusion at the least and …

Member Avatar for ~s.o.s~
0
182
Member Avatar for haripriyamca05
Member Avatar for Ezzaral
0
68
Member Avatar for crash0verride

This thread was happily sleeping in 2007 before Niluk decided to hijack and resurrect it for a completely unrelated question. I'm going to close it here since I imagine the OP has solved his question.

Member Avatar for Ezzaral
0
317
Member Avatar for TigerTeck
Member Avatar for mrjillberth
0
124
Member Avatar for sirlink99

Unrelated note on the code: These code blocks only seem to vary by the image offset[CODE] BufferedImage img = (BufferedImage) Toolkit.getDefaultToolkit().getImage("Images/image.png"); character = img.getSubimage ((32 * animationNumber), (32 * [COLOR="Red"]offset[/COLOR]), 32, 32); animationNumber ++; if (animationNumber == 4){ animationNumber = 1; }[/CODE]so you could easily factor out all that repeated …

Member Avatar for sirlink99
0
268
Member Avatar for violaceous

It seems pretty obvious from [URL="http://www.daniweb.com/web-development/php/threads/384556/1656655#post1656655"]this post[/URL] that he is irritated that you bailed out of this ongoing thread and started a new one to go in some other direction.

Member Avatar for Ezzaral
0
140
Member Avatar for sirlink99

You could use a math package like javax.vecmath, which has several matrix classes with invert() methods or you can do the math yourself. You can find the math easily on the net.

Member Avatar for Ezzaral
0
114
Member Avatar for loserspearl
Member Avatar for Ezzaral
0
323
Member Avatar for MitchyMoo

Yes, a List of BufferedImages may be a useful way to go, especially if you wish to merge layers later or flatten to a single image.

Member Avatar for MitchyMoo
1
141
Member Avatar for clickclack

Check the method call parameters in the class he gave you versus the futureValue() method that you have defined. Do the parameter types match?

Member Avatar for Ezzaral
0
211
Member Avatar for CodeAerial

You'll need to open your output stream in append mode: [url]http://download.oracle.com/javase/6/docs/api/java/io/FileOutputStream.html#FileOutputStream(java.lang.String,%20boolean[/url])

Member Avatar for CodeAerial
0
146
Member Avatar for chiiqui

Have you checked the "Getting Started" thread over in the JSP forum? [url]http://www.daniweb.com/web-development/jsp/threads/249070[/url]

Member Avatar for Ezzaral
0
128
Member Avatar for bala2111

Double posted. Please refer discussion to the other thread in JavaScript: [url]http://www.daniweb.com/web-development/javascript-dhtml-ajax/threads/384154/1654451#post1654451[/url] Closing this one.

Member Avatar for Ezzaral
0
70
Member Avatar for anand01
Member Avatar for anand01
0
5K
Member Avatar for sahilsinghi

You have no main() method defined. You cannot run a class that does not contain a main method.

Member Avatar for hfx642
0
183
Member Avatar for Ezzaral

Many of the software development forums have a sticky thread featured at the top for recommended resources on getting started with or improving one's knowledge of that language. VB.NET currently has no such resource listing. I personally do not work with VB.NET, but if those who do would like to …

0
105
Member Avatar for saba kausar
Member Avatar for saba kausar
0
257
Member Avatar for dharma117

No, I doubt he can because he simply copied and pasted it here from another post he saw elsewhere - which is why I have deleted it.

Member Avatar for SagarSe7en
-2
333
Member Avatar for Alviery
Member Avatar for glamourhits

@glamorhits: This is a direct copy of code that you found here: [url]http://wiki.answers.com/Q/Inverse_of_matrix_in_java[/url] It doesn't seem that you have put any effort of your own into this and simply want others to finish it for you.

Member Avatar for Ezzaral
-1
2K
Member Avatar for jw3973
Member Avatar for magnetic rifle
Member Avatar for Nazmul Haque
Member Avatar for utoldmeulabme

You can use a Swing Timer. [url]http://download.oracle.com/javase/tutorial/uiswing/misc/timer.html[/url]

Member Avatar for utoldmeulabme
0
59
Member Avatar for diew
Member Avatar for Labdabeta

Take a glance at this article from the OpenGL wiki about drawing 2D controls over a 3D scene: [url]http://www.opengl.org/wiki/Viewing_and_Transformations#How_do_I_draw_2D_controls_over_my_3D_rendering.3F[/url]

Member Avatar for Labdabeta
0
152
Member Avatar for ozgamu

You really should not stuff all that GUI code into your main() method, but that's another discussion altogether. You can still get a reference to the class statically and use getResource like this[CODE]Main.class.getResource(...)[/CODE]

Member Avatar for peter_budo
0
156
Member Avatar for Prisms

Consider that your series of "if" statements to evaluate the grade is outside of the loop where "Grade" is being entered. Also be aware that you should use [ICODE].equals()[/ICODE] or [ICODE].equalsIgnoreCase()[/ICODE] to test string equivalence. Do not use [ICODE]==[/ICODE].

Member Avatar for Prisms
0
5K
Member Avatar for Curt1337

@Curt1337: No, no one here will convert the chat server that you copied directly from Rose India to UDP so you can turn it in as a work product. As Norm said, hire a programmer if you want someone to do your work for you.

Member Avatar for Ezzaral
-2
392
Member Avatar for theadjectivenou

Perhaps he means something more descriptive and meaningful than 'j'. If 'j' were being used as a line counter for example, using 'lineCount' would be easier to follow than 'j', which itself has no intuitive meaning.

Member Avatar for Ezzaral
0
147
Member Avatar for chiiqui
Member Avatar for chiiqui
0
399
Member Avatar for stevanity

[B]> And is OCPJP alone any worth?[/B] It shows you can study for and pass basic tests. That is about all.

Member Avatar for peter_budo
0
132
Member Avatar for jackparsana

@hemu12: This is not a code-on-demand service. Please be aware of our forum rules about showing some effort: [B]Do provide evidence of having done some work yourself if posting questions from assignments.[/B] Also, do not hijack others' threads with your questions. Start a new thread of your own and state …

Member Avatar for jackparsana
0
192
Member Avatar for hardsoft123
Member Avatar for TannerT

I would imagine a Client and ClientContact table arrangement would work just fine. The difference between the residential or business clients can be address by a ClientTypeId or BillingCode identifier or similar mechanism, depending on what other info may need to be associated with that disctinction.

Member Avatar for Ezzaral
0
138
Member Avatar for NyQii

Start by making a JPanel within a JFrame with a text box to enter a name, a button to submit it, and a list to display them.

Member Avatar for NyQii
0
163
Member Avatar for ABUMIN

Posting in the C++ forum probably isn't the best start. I'll move it to Java and recommend you take a look at the [URL="http://www.daniweb.com/software-development/java/threads/99132"]Starting Java[/URL] thread stickied prominently at the top of the forum.

Member Avatar for jwenting
0
123

The End.