3,927 Posted Topics

Member Avatar for arunsolanki31

Are you kidding? You want a working, documented program that you had nothing to do with to present as your own work for your resume??

Member Avatar for manojurfriend
-1
40
Member Avatar for Midnite002

You already have an open thread on this question. Please abide by the rules regarding multiple postings of a single question. Closing this one.

Member Avatar for Ezzaral
0
88
Member Avatar for Chosen13
Member Avatar for Filipov

You can also take a look at [URL="http://java.sun.com/docs/books/tutorial/2d/index.html"]Sun's Java 2D graphics tutorial[/URL].

Member Avatar for Ezzaral
0
66
Member Avatar for Memo..~

Just pick one that you think could be useful for a small piece of your interface: [url]http://java.sun.com/docs/books/tutorial/uiswing/components/index.html[/url]

Member Avatar for Ezzaral
0
153
Member Avatar for nainish

Then start typing. Come back later when you have actual questions and code to post. [url]http://www.daniweb.com/forums/announcement9-2.html[/url]

Member Avatar for peter_budo
-1
84
Member Avatar for isuruj

Take a look at the documentation for the [URL="http://cruisecontrol.sourceforge.net/main/configxml.html#htmlemail"]<htmlemail>[/URL] attribute under [URL="http://cruisecontrol.sourceforge.net/main/configxml.html#publishers"]<publishers>[/URL]. You can alter the XSL stylesheets to customize the email content. There is some discussion of that here: [url]http://www.javaranch.com/journal/200409/DrivingOnCruiseControl_Part1.html[/url]

Member Avatar for Ezzaral
0
84
Member Avatar for stella09

You can use the [URL="http://java.sun.com/javase/6/docs/api/java/util/Scanner.html"]Scanner[/URL] class to read the input. I assume you already know how to use System.out.println() or System.out.printf().

Member Avatar for Ezzaral
0
64
Member Avatar for eikal
Member Avatar for eikal
0
85
Member Avatar for virtualmisc

If you actually asked a question then perhaps someone could answer it.

Member Avatar for python user
-4
100
Member Avatar for Dudesup

You can subclass JPanel to paint your image as it's background. Anything else you put on that panel should show up normally.[code] class ImagePanel extends JPanel { Image img; public ImagePanel() { super(); img = new ImageIcon(getClass().getResource("images/blackX.gif")).getImage(); } public void paintComponent(Graphics g) { g.drawImage(img, 0, 0, getWidth(), getHeight(), this); } …

Member Avatar for Dudesup
0
125
Member Avatar for Brian.oco
Member Avatar for jiapei100

You signature [U]is[/U] visible, I'm looking right at it, so your posts are making little sense. Perhaps you have the display of signatures turned off in your user options?

Member Avatar for Will Gresham
-4
93
Member Avatar for thekashyap

There is a [URL="http://www.daniweb.com/forums/forum24.html"]forum for JSP[/URL].

Member Avatar for jbennet
0
135
Member Avatar for heroes8453

Your actionPerformed method is not actually inside your class. Check your braces.

Member Avatar for gunjannigam
0
93
Member Avatar for Aamit

Use their JDBC driver: [url]http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html[/url] Do not use the JdbcOdbc bridge.

Member Avatar for fardoonmuhaifz
0
361
Member Avatar for Dani

I agree that the "New" buttons are too large. I prefer the previous version that wasn't so intrusive.

Member Avatar for feoperro
3
941
Member Avatar for Midnite000

[QUOTE=Midnite001;1099671]and secondly I tried to log back in under my other accound name for that thread and the system logs me in but then back out again for some strange reason ? [/QUOTE] I would recommend inquiring about this problem in [URL="http://www.daniweb.com/forums/forum26.html"]Community Feedback[/URL].

Member Avatar for Midnite003
-4
121
Member Avatar for m_sam6

This example may help: [url]http://www.exampledepot.com/egs/javax.swing.text/style_HiliteWords2.html[/url]

Member Avatar for AbhikGhosh
0
3K
Member Avatar for sn12

Have you browsed the forums at all? This question is asked all the time in one form or another.

Member Avatar for laharigowda53
-1
347
Member Avatar for adams161

You could add an [URL="http://java.sun.com/docs/books/tutorial/uiswing/events/internalframelistener.html"]InternalFrameListener[/URL] with code in the closing() function to notify your main class to remove the reference to it.

Member Avatar for adams161
0
102
Member Avatar for sknake

[QUOTE=vegaseat;1090079]Hard to beat a snowperson.[/QUOTE] Nah, it's actually quite easy - they can't run away. Just grab a shovel and go to work on 'em.

Member Avatar for redesignunit
0
175
Member Avatar for vidhyaselvi

You just said that you already have an idea for doing a project on image processing. So why are you asking for project ideas?

Member Avatar for Ezzaral
0
237
Member Avatar for adams161

You might take a look at using internal frames: [url]http://java.sun.com/docs/books/tutorial/uiswing/components/internalframe.html[/url]

Member Avatar for adams161
0
119
Member Avatar for LadyGaGa

Discussions about how to get started building a site are fine here, but soliciting work for hire must stay in the Business Exchange section. Any more offers like this and the thread will be closed.

Member Avatar for susancharlton
0
133
Member Avatar for k2k

It's complaining because you sent this exact string as your values[code]"VALUES (id, fn, ln, phone, add, city, st, zip, age, sex, hr, hrs) "[/code]You didn't concatenate them in or use a PreparedStatement to set them, you just sent that string to the db and those are not valid values for …

Member Avatar for javaAddict
0
131
Member Avatar for darkagn

There is a small red triangle icon with an exclamation point in the right hand side of the title of the message that lets you report a PM. If the user is already banned there really isn't a need to report them though, as they've already been handled.

Member Avatar for darkagn
0
195
Member Avatar for Stefano Mtangoo
Member Avatar for sknake

Well, I guess the regular users who have posted asking what happened to it and wanting it to be returned were not at that conference. I've seen 8 posts on it since it disappeared yesterday.

Member Avatar for sknake
2
430
Member Avatar for Broker

You can start with the Sun tutorials to begin with: [URL="http://java.sun.com/docs/books/tutorial/2d/index.html"]2D Graphics[/URL]

Member Avatar for Ezzaral
0
44
Member Avatar for H.Roger

Try using an InternalFrameAdapter instead of FocusAdapter. JInternalFrames don't generate the same events as regular frames. [url]http://java.sun.com/docs/books/tutorial/uiswing/events/internalframelistener.html[/url] Using the activate and deactivate events should work for you.

Member Avatar for H.Roger
0
242
Member Avatar for kanuri1

Please do post the same question in multiple threads. I am closing this one. Please direct any discussion to the other thread: [url]http://www.daniweb.com/forums/thread247968.html[/url]

Member Avatar for Ezzaral
0
137
Member Avatar for mindfreaks2000
Member Avatar for cwarn23
-7
173
Member Avatar for gods_angel

And your question? Posting your assignment is not a question. [url]http://www.daniweb.com/forums/announcement9-2.html[/url]

Member Avatar for persianprez
0
120
Member Avatar for Stefano Mtangoo

H2 is another good embedded database: [url]http://www.h2database.com/html/main.html[/url]

Member Avatar for Ezzaral
0
153
Member Avatar for shekaranumalla

[QUOTE=shekaranumalla;1080670]destroy cookies[/QUOTE] Please elaborate if you have a question. "destroy cookies" is not sufficient.

Member Avatar for Ezzaral
0
76
Member Avatar for dskumar_85
Member Avatar for Ezzaral
-3
58
Member Avatar for VinceAshbySmith

Is there a reason you're not working with the file as an xml document though a DOM api?

Member Avatar for masijade
0
3K
Member Avatar for ravikiran032
Member Avatar for masijade
0
2K
Member Avatar for soapyillusion
Member Avatar for sidra 100

And after that, read this link as well: [url]http://www.daniweb.com/forums/faq.php?faq=daniweb_policies#faq_keep_it_clean[/url]

Member Avatar for Ezzaral
-4
55
Member Avatar for lloydsbackyard

I [URL="http://www.daniweb.com/forums/thread226929.html"]already gave him a link to a tutorial[/URL] that demonstrated this, but obviously he didn't feel compelled to read it (nor the instructions to use code tags).

Member Avatar for vjmir
0
91
Member Avatar for waqasgondal

You should start typing - that's where source code comes from. Post actual questions when you have specific troubles.

Member Avatar for Ezzaral
-1
51
Member Avatar for anonymous alias
Member Avatar for Stefano Mtangoo

Start here: [url]http://java.sun.com/docs/books/tutorial/uiswing/painting/index.html[/url] and [url]http://java.sun.com/docs/books/tutorial/2d/index.html[/url]

Member Avatar for Stefano Mtangoo
0
5K
Member Avatar for kannanbe4u
Member Avatar for Dave Sinkula
Member Avatar for lllllIllIlllI
0
321
Member Avatar for Izzywizz

Just have the user enter a number for the road type. Then your switch can simply be [CODE]switch (roadType) { case 1: speed = 50; break; case 2: // ... etc }[/CODE]You will have to remove the "final" from your SPEED declaration.

Member Avatar for Izzywizz
0
135
Member Avatar for kolibrizas

Cast your Graphics reference to Graphics2D and turn on anti-aliasing:[CODE]Graphics2D g2D = (Graphics2D)g; g2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); [/CODE]

Member Avatar for kolibrizas
0
112
Member Avatar for cms271828

You won't be able to put jars in your jar. Typically you would just include that jar file in a" /lib" folder in your installation and add that reference to the class path entry in your application jar manifest file.

Member Avatar for mlikesit
0
470

The End.