5,031 Posted Topics
Re: Obvious source [URL="http://www.sun.com/training/certification/java/scjp.xml"]Sun website[/URL] section for Training. If you want to go for certification you need to find your closes examination center and check for available dates. The above is in my opinion scam, would be interesting to investigate if they have real mock up tests and if they have … | |
In the JFrame I have two components JMenuBar and JPanel. A selection in one of the options in menu bar change the content of panel as [code=Java]JMenuItem jmiAddEmployee = new JMenuItem("Add Employee"); jmiAddEmployee.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { mainPanel.removeAll(); mainPanel.add(addEP); validate(); } });[/code] This will replace the content, … | |
Re: [code=Java]public class ArrayReverse { public static void main(String[] args){ int[] bob = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; int[] newBob = new int[bob.length]; newBob = reverseArray(bob); for(int i = 0; i < bob.length; i++){ System.out.print(newBob[i] + " "); } } public static int[] reverseArray(int[] arr){ int[] arrReverse = new int[arr.length]; int p = 0; for(int … | |
Re: I would rather use database then XML which is still hairy for me. As for the resources you should have close look at AWT or Swing for starter [URL="http://java.sun.com/docs/books/tutorial/uiswing/"]here[/URL] | |
Re: According to Hewlett-Packard [URL="http://h10025.www1.hp.com/ewfrf/wc/prodinfoCategory?lc=en&dlc=es&cc=pe&product=431081#"]product description[/URL] once you click on [URL="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00063244&lc=en&dlc=es&cc=pe&product=431081"]Motherboard Specifications, MS-6577 (Giovani, Giovani2)[/URL] you have 3 PCI slots. (I had a look on the [URL="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00063244&lc=en&dlc=es&cc=pe&product=431081#N750"]photographs[/URL]. )In theory you can plug it to any of them, but it is recommended to start from first. I'm not sure if you have … | |
Re: [list][*][URL="http://jasperforge.org/website/jasperreportswebsite/trunk/highlights.html?group_id=252"]JasperReports[/URL] [*][URL="http://www.lowagie.com/iText/"]iText[/URL] [/list] JasperReports for some time used iText library, but I think they been looking to come up with their own implementation | |
Re: you may have problems if you did not use attribute "id" in your "select" tag. Attribute "name" is supported too, but this is only optional, "id" is what you should use PS: If this does not solve issue then please post code | |
Re: @sierrainfo - plagiarism by ashamed! ! ! You should give a credit to original resource first paragraph is [url]http://www.icreonglobal.com/oracle.shtml[/url] (copy of ORACLE DATABASE ADMINISTRATION). The rest is from [url]http://sqlserver-qa.net/blogs/tools/archive/2007/06/17/dba-role-in-question.aspx[/url] | |
Re: [QUOTE=tomer1;732919]ASP cant works on your dasktop! it can works onley on your server online![/QUOTE] Now this is example of poor knowledge. | |
Re: I think you better to ask this question on SE or Nokia forum. There is chapter in my book about messaging but I did not pay attention to it as I do not use it... | |
Re: Use google if you not happy with what you been already given [URL="http://www.daniweb.com/forums/thread157548.html"]here[/URL]! PS: please read the rules, flooding forum with posts of same topic is not welcomed. | |
Re: Such question can be answer by simple google search [URL="http://java.sun.com/products/javamail/downloads/index.html"]JavaMailAPI[/URL] Presuming that what ever you do is Web Project than in you should add mail archive to lib folder that can be found as PATH_TO_PROJECT/web/WEB-INF/lib. If the "lib" folder does not exist created it in described location and drop the … | |
Re: @ukbasak - you just made my day, barking on thread that is one year old and forgotten | |
Re: There is no such thing as applet for mobile phones, maybe you talking about MIDlet. For starting resources check this [URL="http://www.daniweb.com/forums/post646446-14.html"]post[/URL]. If you have any more questions, please provide more in detail description of the problem | |
| |
I working on assignment to create bank management GUI with swing. Right now I'm messing with login. Instead of using JDialog as many may suggest to use I used JFrame. [attach]8150[/attach] In case of any error messages on login attempt I wanted to display error above all previously displayed content, … | |
Re: If you looking for key you are in wrong place. we do not deal with illegal software, also passing such info is forbidden by forum rules. So there are few option there for you[LIST=1] [*]Either you did not express your self correctly and you looking for something else, therefore you … | |
Re: Please provide the code as claim to have. Reading from magic ball is skill long forgotten, so we may not know what is going on in your code... | |
Re: Nope, You should be aware there are many limitations to what you see in desktop browser and how much you can show on mobile device. For start you can have look on w3schools tutorials on [URL="http://w3schools.com/wap/default.asp"]WAP[/URL] | |
Re: [URL="http://java.sun.com/docs/books/tutorial/essential/io/"]Lesson: Basic I/O (The Javaâ„¢ Tutorials > Essential Classes)[/URL] | |
Re: If you can explain us what you mean by "a realtime advertising program" ( I do get you want to advertise, I'm puzzled by real time can explain the idea what you have in mind), maybe we can come to some solution | |
Re: fName, lName are local variable of addIndividuals() method, therefore you can not use them outside of this method. Hence the zipCode, by some miracle made it (because of the [icode]zipCode = zipCode;[/icode] which may be pure coincidence) You have to either pass these values as parameters to your toString() method … | |
Re: [URL="http://www.w3schools.com/Flash/flash_button2.asp"]w3school.com[/URL] | |
Re: I think we best to stop here. Please no more comments and jabs. I hope that IMtheBESTatJAVA has learn his lesson that we do not do students assignments and no pleading or harassing will change anything on it. Hopefully next time he will come in time, not five-to-twelve, and have … | |
Re: LOL, just in time for self promotion ;) You can find an example [URL="http://www.daniweb.com/forums/thread141776.html"]here[/URL] | |
Re: Any reason not to use [URL="http://www.microsoft.com/downloads/details.aspx?FamilyID=c47053eb-3b64-4794-950d-81e1ec91c1ba&displaylang=en"]Microsoft SQL Server 2005 JDBC Driver 1.2[/URL]? Some links on JDBC-ODBC examples [URL="http://www.herongyang.com/jdbc/JDBC-ODBC-SQL-Server.html"]link1[/URL], [URL="http://lukewalsh.co.uk/blog/2008/07/connection-to-with-jdbc-to-microsoft.html"]link2[/URL] PS: You would make your life much easier if you go with MySQL ;) | |
Re: The above behaviour as seen on [URL="http://www.creative.com/language.asp"]Creative[/URL] website can be achieved with use of simple JavaScript. | |
Re: What is this code? How is it relevant to HTML or CSS? | |
Re: Most of the mobile phones come with USB cable through which you can connect your mobile phone with pc and either synchronize stored data (contacts, calendar, notes) or transfer files (music, images, video). For example I have Sony Ericsson and I can use Sony Ericsson pc suite to do all … | |
Re: Yes if you develop one by your self and must be better then free available | |
Re: Existing with stack of errors meaningful only to you as the programmer, alien to the user is bad design. You should re trite gratefully with appropriate error message to the user and do not shut down program, just return to the point where the file name been submitted for new … | |
Re: [URL="http://java.sun.com/javase/6/docs/api/java/sql/Date.html"]java.sql.Date[/URL] is all what you need for such task | |
Re: Follow [URL="http://www.vbmysql.com/articles/vbnet-mysql-tutorials/the-vbnet-mysql-tutorial-part-1"]this tutorial[/URL] and you should do just fine. In the future please do not hesitate to use google like [URL="http://www.google.co.uk/search?hl=en&q=vb+mysql+connection+tutorial&btnG=Search&meta="]vb+mysql+connection+tutorial[/URL] to do your search first PS: Be aware that tutorial has more then one part | |
Re: [QUOTE=bimlaburlakoti;733067]If u want much more about database and handling all problem's of it, i suggest u to visit the website [url]www.java2s.com[/url] it's really gud one try it?[/QUOTE] I respectable disagree. [LIST=1] [*]The site is missing on explanations to the code parts as it is only code solutions copy & paste … | |
Re: Please kindly read[URL="http://www.daniweb.com/forums/announcement9-2.html"] this post[/URL] and then please reformulate your request | |
Re: Read [URL="http://www.daniweb.com/forums/thread141776.html"]this[/URL] how to establish connection with database the right way and here is info on Oracle and [URL="http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96654/basic.htm"]connection string[/URL] ([I]Sorry couldn't find latest version[/I]) | |
Re: To read teacher input you need to use Scanner class. As for students records I would recommend to use 2D array instead of simple one [code=java]int[][] student = {{1111, 92}, {1234, 88},{2345, 75}};[/code] first number is student unique ID {1111} and second is the mark {92} | |
Re: @cproud21 why do you have always create new post just continue with same question? Same topic you started [URL="http://www.daniweb.com/forums/thread156398.html"]here[/URL] | |
Re: [LIST=1] [*]It is rude thing to hijack somebody's else post [I](these 3 post been move to new thread)[/I] [*]You should provide some code or in depth description of the problem and not general "cry" for help [/LIST] | |
Re: The error reffers to Connector/J not to instalation of MySQL. Do you have connector? If not download it [URL="http://dev.mysql.com/downloads/connector/j/5.1.html"]here[/URL]. Extract the JAR file and place it in your lib directory (Tomcat_Directory/webapps/YOUR_PROJECT/WEB-INF/lib) | |
I was under impression that declaration of [icode]char(4)[/icode] can store only values of [B]exact length[/B] of 4 characters. However I was able to insert empty string and strings of less characters than 4. Is there some datatype that will only accept string of declared length? Strings with less characters should … | |
Re: Just lightning up the mood [url]http://www.peteyandpetunia.com/VoteHere/VoteHere.htm[/url] | |
Re: [QUOTE=wickedsunny;726672]seems solved to me. anyways u can use this tag in ur container or where u dont want white space. margin-top:0px;[/QUOTE] You may want to read a post by MidMagic in [URL="http://www.daniweb.com/forums/thread154539.html"]this thread[/URL] | |
Re: @filch - in the future please use facilities provided by this forum instead of linking to external images elsewhere that will get deleted over period of time. To do so, use "Go Advance" to get full posting window if you in quick reply. Bellow the editing area and the buttons … | |
Re: Would be nice if you could share your solution of the problem... | |
Re: [QUOTE=asus2008;727474]oh..thanks for the tip..im trying to type the coding but im not that good in programming...anything that could help me with this?[/QUOTE] You have to come with specific problem not general task "help me create game" I think stultuske wanted to point specifically toward [URL="http://www.daniweb.com/forums/post646446-14.html"]this post[/URL] | |
Re: Any chance of you being student at University of Westminster in your second year doing 1st coursework? | |
Re: [LIST=1] [*]Posts merged [*]Use common sense and post updated code in existing thread instead of creating new one [*]Would be nice if you started using code tags [/LIST] | |
Re: You are most then welcome to post your questions in our [URL="http://www.daniweb.com/forums/forum9.html"]Java[/URL] forum section. Please remember to provide as much explanation as possible including your own code. |
The End.