5,031 Posted Topics
Re: Problem was solved how? This can help someone in the future... | |
Re: [QUOTE=dipak_passion;1012729] Please add a repution if this helps you.[/QUOTE] Begging for reputation, shameless... | |
Re: Not sure about Hibernate, but try to follow this tutorial from NetBeans website (designed for NB 5.5, but should work) For ANT you need to create new variable ANT_HOME with path to ANT like [icode]C:\Ant-1.7.1[/icode] and then update PATH with [icode];%ANT_HOME%\bin[/icode]. Also it is good idea to have JAVA_HOME variable … | |
Re: Without knowing what is CalenderEvent structure like and how requested methods are called I see mistakes in all of them (wouldn't be surprised if you are supposed to use Generics and Collections in this) [code=Java]public boolean addEvent(int year, int month, int day, int hour, int minute, int duration, String what){ … | |
Re: This is one of the question that is most unwelcomed here. For once it show lack of interest and creativity. How are we supposed to pick up a topic for you if we do not have any background on your Java ability? Also if you took your time to browse … | |
Re: I will be in couple of days which doesn't make me happy. It is company decision to supply new people with mac. I tried to argue that I have another laptop in my sight and it will be loaded with unix, but they refused :( | |
Re: Here is working sample based on code provided by you [code=Java] import java.lang.*; import java.awt.*; import java.io.*; import java.awt.event.*; import javax.swing.*; import javax.swing.event.*; import java.text.*; import java.util.*; public class FrameExample{ private JFrame frame; private JMenuBar menuBar; private JMenu fileMenu; private JMenu optionMenu; private JMenuItem newFileItem; private JMenuItem openFileItem; private JMenuItem … | |
Re: Please post all your code so we can see what you did... | |
Re: [QUOTE=it-lady;1032980]Good Morning/Afternoon/Evening>> For every body :) I am it-lady from Oman . I study IT-software in final year. It's my pleasure to be here in this wonderful forum. Would u please tell me for which country this forum is?[/QUOTE] This global forum. We have members all over the world... Why … | |
Re: Never use it before, have look [URL="http://chumbalum.swissquake.ch/ms3d/tutorials.html"]here[/URL] | |
Re: [URL="http://java.sun.com/docs/books/tutorial/uiswing/components/buttongroup.html"]How to Use the ButtonGroup Component[/URL] | |
Re: @haiconsoba and what is meaning of that code? Any reason for reopening old thread? | |
Re: Why don't you do this googling, dead simple [URL="http://www.google.co.uk/#hl=en&source=hp&q=jquery+tabs+tutorial&btnG=Google+Search&meta=&aq=3&oq=jquery+ta&fp=c662ce1e81ac315b"]jQuery tabs tutorial[/URL] | |
Re: [URL="http://www.google.co.uk/#hl=en&source=hp&q=jquery+floating+window&btnG=Google+Search&meta=&aq=4&oq=jquery+floa&fp=c662ce1e81ac315b"]jQuery with floating window[/URL] or similar concept | |
Re: You have package declaration on the top of JSP which is not need it, but you are missing package declaration in your UserDetails where obviously is need it... | |
Re: Did you created "info" database before importing or you expected to be on sql file processing? | |
Re: [QUOTE=rouse;1031080]I placed this in the wrong group. I am moving this to PHP. Sorry![/QUOTE] Next time please click on "Flag Bad Post" and write message like "Please move to PHP" and assign moderator will take care of it. | |
Re: As you already found out you can not check for something that is not there, something you did not declare. You may consider simple work around like this [icode]if (i+1 != nubArr.size())[/icode] taking in consideration that i+1 can only be smaller than or equal to array list size, as for … | |
Re: Too many question marks on what you actually attempting to do, you will need to do better on problem explanation. Simple examples of using XML parsers including JDOM can be found here in [URL="http://cafeconleche.org/books/xmljava/"]Processing XML with Java[/URL] book | |
Re: Little confused by this request... Your class is OK, but you may want to change setter access from public to private. You already provided user with way to set email value through constructor [icode]public Email(String emailAddress)[/icode]. As for validation you need to check out if submitted string contains "@" and … | |
Re: [QUOTE=Guneet kaur;1030303]hey ne 1 knw abt ne java project to begin with... does ne 1 has ne info abt making acompiler in java...[/QUOTE] [QUOTE=ithelp;1030432]I cannot understand your english.[/QUOTE] That is why he got warning on his profile. Secondly, thread is close down as it is getting re-open every now and … | |
Re: did you try to google for it? What about [URL="http://en.newinstance.it/2008/06/17/maven-class-orgapachemavenartifactrepositoryartifactrepository-cannot-be-instantiated/"]this solution[/URL]... | |
Re: [QUOTE=emmybuuz;1029073]please i really need the source code for spreadsheet development[/QUOTE] [URL="http://poi.apache.org/"]Apache POI[/URL] is what you need | |
Re: Power of GOOGLE -> [URL="http://viralpatel.net/blogs/2009/06/itext-tutorial-merge-split-pdf-files-using-itext-jar.html"]iText tutorial: Merge & Split PDF files using iText JAR[/URL] | |
Re: [QUOTE=chunduriravi;1029334]send me ur program once[/QUOTE] [QUOTE=masijade;1029382]Not a good beginning.[/QUOTE] Not a good start at all. @chunduriravi please create new thread and ask your question there instead of bumping old thread. Secondly keep in mind we help these who show interest, so your request from above would in general get nothing … | |
Re: In similar manner how its user and user-group created, managed and then mapped in usergroup-mapping you need to create module table and associate it with for example study-mapping (associating students with modules) and lecture-mapping (associating teacher with module). | |
Re: First thing, please [B]do not[/B] use JSP to connect to database. Pass data to servlet for validation, or use JavaScript to valildate them in JSP, and setup connection inside servlet and then by the needs go back to previous page to pick up correct/new data or move to nex page … | |
Re: If you checked box in installation to set path for MySQL you need to only call [icode]mysql -u USERNAME -p [/icode] followed by password after system request. In case you didn't do it, you need to navigate command prompt/line down to home directory of your MysQL and from there execute … | |
Re: If Tomcat been installed through IDE it may have assign different port then 8080 or 80. Check it with server.xml file that is inside conf folder of your Tomcat directory | |
Re: Answer [URL="http://www.google.co.uk/#hl=en&source=hp&q=Explorer+does+not+support+feeds+with+DTDs&btnG=Google+Search&meta=&aq=f&oq=Explorer+does+not+support+feeds+with+DTDs&fp=c662ce1e81ac315b"]here[/URL] | |
Re: HttpSession.[URL="http://java.sun.com/javaee/5/docs/api/javax/servlet/http/HttpSession.html#invalidate()"]invalidate()[/URL], but is also good idea to set any beans to null | |
Re: Is the problem occurring only on sites you create or in any website. If it is only your creation then we need to see code... | |
Re: Would you mind provide sample file with names and scores for easier debugging? | |
Re: I see you marked your post as solved. Did you find solution? Would you mind to share it with Daniweb community? | |
Re: Google ==>> [URL="http://www.google.co.uk/#hl=en&source=hp&q=jsp+servlet+search+option+tutorial&btnG=Google+Search&meta=&aq=f&oq=jsp+servlet+search+option+tutorial&fp=c662ce1e81ac315b"]jsp servlet search option tutorial[/URL] PS: Avoid roseindia website | |
Re: And what is your question? Nevertheless my feeling is, that this actually failed attempt of spam... | |
Re: Threads merged @itsense please do not multipost same question and use code tags please | |
Re: [QUOTE=adatapost;1026171]Take a look at this tutorial - [URL="http://itextdocs.lowagie.com/tutorial/objects/index.php"]http://itextdocs.lowagie.com/tutorial/objects/index.php[/URL][/QUOTE] Good link, but this useful only if you are creating document from scratch. In above scenario getting documents settings from document together with context is essential. So [URL="http://poi.apache.org/"]Apache POI[/URL] would be more relevant | |
Re: [QUOTE=Airshow;1020455]Asong, That looks like JSP. This is JavaScript / DHTML / AJAX. Suggest you move/repost in correct section. [B]Airshow[/B][/QUOTE] Actually it is Java. Moving to correct forum section. @Airshow in the future if you find and believe post do not belong to the section can you please flag it? Thanx | |
Re: How hard it can be? Like this? [CODE=java] public class ArrayTest { public static void main(String[] args){ int[] a = new int[12]; for(int i = 0; i < 5; i++){ a[i] = i; } for(int i = 0; i < 5; i++){ System.out.println(a[i]); } } } [/CODE] | |
Re: Be creative, for example if you read input from user you will get string object. Convert string to character array, read array element by element, convert element to integer and fine out if it is odd or even number. | |
Re: [code=Java] int i = 0; do{ i++; System.out.println("i = " + i); }while( i < 10);[/code] Simple like that... | |
Re: [LIST] [*]Technical part of the post can be OK, I'm not sure as I'm not PHP person [*]OP just did copy and paste and did not bother to use code tags, that is bad an unprofessional [*]OP is too much superstitious that there can be no negative opinion in his … | |
Re: Sun Certified Programmer For Java 6 Study Guide by Sierra & Bates is the best thing to read in regards of exam preparation, dunno what other resources shashikant.v has in mind he failed to provide anything. If you have problems to understand some topics in the book you always welcome … | |
Re: Problem description is missing, how we are supposed to know what sort of errors you getting. Plus there is no chance to second-guess what you trying to achieve... | |
Re: here is [URL="http://www.google.co.uk/#hl=en&source=hp&q=kernels+used+in+support+vector+machine&btnG=Google+Search&meta=&aq=f&oq=kernels+used+in+support+vector+machine&fp=23d34a9176941fd2"]the answer[/URL] | |
Re: Ever heard of [URL="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/for.html"]for[/URL] loop? | |
Re: Option A) paying some buck and get Acrobat Professional, Cute PDF Professional or any other package Option B) programatically with use of some programming language for example Java and free available library like iText | |
Re: You need to provide proper type for input field like [code=html]<input type"password" />[/code] plus any other parameters you need like length, maximum characters, name associated etc. | |
Re: [URL="http://java.sun.com/j2se/1.5.0/docs/api/java/sql/ResultSet.html#getDate(int)"]getDate()[/URL] method returns Date object type so forcing it into String will obviously kick errors... so you should just simply do [icode]d3 = rs.getDate(5);[/icode] |
The End.