5,031 Posted Topics
Re: DB connection from JSP is something which you should not do it. For better wait to communicate with DB see [URL="http://www.daniweb.com/forums/thread141776.html"]this post[/URL] | |
Re: I think you do not understand what you want to do. [icode]System.out.println()[/icode] are system calls you placed there for some reason by programmer (in this case by you, and you may not complitelly understand them). If you want to threat data handled by system calls differently you have to tell … | |
Re: @Robdale in the future please use "Flag Bad Post" option in relevant post report it to moderators. In message box write something like "Spam" or "Wrong forum" etc. | |
Re: Here is interesting [URL="http://swik.net/jasperReports+Tutorial"]list of tutorials[/URL] | |
Re: Please read the following [URL="http://www.daniweb.com/forums/announcement9-2.html"]forum announcement[/URL], after that take appropriate steps... | |
Re: I think he is looking for traditional screen resolution through JavaScript and base on it use relevant CSS, but I cannot be sure because of that poor explanation provided... | |
Re: What is this custom email class? We need more description or code and some stack trace of the error. | |
Re: There is no install, you just upload CSS file to your web server and tell the HTML/XHTML/PHP or what ever format you gone use that it should use this layout, plus in the document you tell tags which settings to use. For example [icode]<table class="bordless"....>[/icode]. If image is used as … | |
Re: @atinobrian I do not know where you got that but .jad Java Application Descriptor File. There is no way to do it. Either create mobile project with C# in Visual Studio (but no JAD extension and will run only on windows devices) or code it in Java Microedition (you get … | |
Re: Your request been granted! Google search [URL="http://www.google.co.uk/search?hl=en&q=java+JProgressBar+tutorial&btnG=Search&meta="]java JProgressBar tutorial[/URL] found some 5770 results just for you to read it... | |
Re: You must made some changes somewhere in your project as build does only packaging and does not trigger run process. | |
Re: Would be nice that you share it with others then... | |
Re: First thing first. Have you been told to generated the password this way or you come up with this solution of converting integer to character? Secondly you use while loop without opening and closing bracklets that cause lot of weird behaviour. The current solution is to complex and it can … | |
Re: On top of JSP section is sticky post called [URL="http://www.daniweb.com/forums/thread141776.html"]JSP database connectivity according to Model View Controller (MVC) Model 2[/URL], even tough it is MySQL example you should be able easy to adapt to your needs. | |
Re: There is [URL="http://plugins.intellij.net/plugin/?id=1347"]plug-in for IntelliJ IDEA[/URL], but I never try it | |
Re: Hacking of your AOL profile has nothing to do with Windows Vista. You should explain what technologies you using on AOL PHP/ASP/ASP.NET/JSP, are there any databases, do you have any scripts there (JavaScript, VBScript) PS: I would recommend reading forum rules as forum flooding is not welcomed | |
Re: Either [URL="http://java.sun.com/javaee/5/docs/tutorial/doc/bnalj.html"]custom tags in JSP[/URL] or I'm lost | |
Re: The fastest answer would be get rid of frames. Frames are outdated technology which not gone by supported too much in new release of HTML 5.0 (there are however small bits left) and developers been strongly discouraged to use it since HTML 4.0.1 because of growing numbers of browser issues … | |
Dani would be possible to rename JSP section to Java Web Development? | |
Re: Do you have jar file with JDBC driver for MySQL? NO? Download [URL="http://dev.mysql.com/downloads/connector/j/5.1.html"]here[/URL] Is the driver in correct location ? TOMCAT_DIRECTORY/webapps/YOUR_PROJECT/WEB-INF/lib More on Tomcat [URL="http://tomcat.apache.org/tomcat-5.5-doc/appdev/deployment.html#Standard%20Directory%20Layout"]Standard Directory Layout[/URL] | |
Re: Here [URL="http://www.daniweb.com/forums/search6845526.html"]list of threads[/URL] where this been mentioned. You may find some answers there, but be aware most of them just hold request to get code and not solution... | |
Re: If I'm not mistaken you should be able to work with SVG in Illustrator ad Freehand as these are one of vector packages. Also if you google for [URL="http://www.google.co.uk/search?hl=en&q=how-to+svg&btnG=Search&meta="]how-to svg[/URL] or [URL="http://www.google.co.uk/search?hl=en&q=draw+svg&btnG=Google+Search&meta="]draw svg[/URL] you get some additional resources that often included programming or scripting solutions | |
Re: Is that pre-requirement of your assignment or you just do not know how to read text file? Have look at [URL="http://java.sun.com/javase/6/docs/api/java/io/BufferedReader.html#readLine()"]BufferedReader.readLine()[/URL] | |
Re: It would be good idea if you share solution, if you got one, and finally close this thread... | |
Re: 2 years back I was doing a project that was dealing with gray scale images, but these are not well supported. That time I used [URL="https://jai.dev.java.net/"]Java Advanced Imaging (JAI)[/URL] library, however if I had to do it again I would go this time with [URL="https://jai-imageio.dev.java.net/"]Java Advanced Imaging Image I/O Tools[/URL] | |
Re: You have code, but it is in C#. Why don't you convert it to Java and then ask specific question of any issues you may face? | |
Re: Rather then having [icode]tabbedPane.addTab("tab",new ScrollPane(new JTextArea()),null);[/icode] you should go as [code=Java] JTextArea jta = new JTextArea(); JScrollPane jsp = new JScrollPane(jta); tabbedPane.addTab("TAB_NAME", jsp);[/code] in doing so you can either call jta directly if from same class or provide appropriate setter and getter methods for access from outside class. I'm not … | |
Re: Geek's Lounge >> [URL="http://www.daniweb.com/forums/forum80.html"]Posting Games[/URL] | |
| |
Re: [URL="http://www.daniweb.com/forums/announcement9-2.html"]Read this...[/URL] PS: PMs are not welcomed, also one of forum rules - Keep It On the Site [quote]Do not post asking for an answer to be sent to you via email or PM. Problems and their responses assist others who read them. Please do not email or PM forum … | |
Re: Would be nice if you provided your code and explain where you having difficulties. | |
Re: It is unlike event that somebody will just give you early Christmas present in form of Vbulletin, it does cost $180. You should consider other alternatives that are free like [URL="http://www.phpbb.com/"]phpbb[/URL], [URL="http://www.simplemachines.org/"]simplemachines[/URL] or [URL="http://ikonboard.com/"]Ikonboard[/URL] | |
Re: Data retrieved from database with use of servlet (not like your attempt above), returned back or passed to next page where with use of JSTL you would be able to do it much simpler. You can pick up some general hints and tips from [URL="http://www.daniweb.com/forums/thread141776.html"]this tutorial[/URL] | |
Re: Little older, but it may still work [url]http://www.flashdesignerzone.com/tutorials/t1047.php[/url] | |
Re: I'm not sure what Firefox you using, but my one is up-to-date and I have no problem to see this effect. It is not exactly the programmable drop down as you tried to do but it does the job | |
Re: This is not how it works, that you just say I have programs, have problems with them as they do not work properly and just drop code. Not to mention that you did not use code tags [noparse][code=Java]CODE HERE[/code][/noparse] State what sort of errors you getting, or what the program … | |
Re: You did not configure your web.xml file something like [code=xml] <servlet> <servlet-name>LoginServlet</servlet-name> <servlet-class>LoginServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>LoginServlet</servlet-name> <url-pattern>/login</url-pattern> </servlet-mapping> [/code] Here is info in regards of web.xml [URL="http://edocs.beasys.com/wls/docs81/webapp/web_xml.html"]configuration[/URL] and [URL="http://edocs.beasys.com/wls/docs81/webapp/components.html#148787"]servlet mapping[/URL] with additional info | |
Re: [QUOTE=niek_e;741244]ps. Don't know if it's something on my end, but when I disabled ad-block to view the entire site the complete site hung and I was unable to post. This wasn't an issue last week, but it could just be a glitch[/QUOTE] It's fine on my side, I can live … | |
Re: [QUOTE=verruckt24;778835]Do you take some pains to read about the forum where you post or you just start shooting ? If you would have cared to look around the forum you would have found that there was a forum for JSP too. Also there is an announcement encouraging the use of … | |
Re: Neither we can detect any problem as you failed to provide your code... | |
Re: [QUOTE=khalidmehmood;778658]I have write the code that display just a hyperlink and these hyperlinks displayed in a table when i click on a link its displayed on another detailed page. but i have no idea how to implement the above task.[/QUOTE] Please provide code... | |
Re: If you want to see example of working chat system get copy of Java How to Program, 6th edition from Deitel and check out chap 24 at the end | |
Re: [code=Java] public class Collection { private Movie[] movieList; public Collection(){ loadData("../TMJamesBond.java/movies.txt"); } private void loadData(String fileName) { // REST OF THE CODE [/code] You seriously misunderstand the way how to defining method and passing parameters from "caller" method to "worker" method. Have look at [URL="http://java.sun.com/docs/books/tutorial/java/javaOO/index.html"]Classes and Objects[/URL] tutorial and take … | |
Last night (yes night, I'm in UK) I downloaded Windows 7 and got the activation key. After that I ran search & rescue mission to locate my 2nd HDD. Installation took just 20 min, that was little surprise. As I never "infested" my PC with Vista I'm left only with … | |
Re: Look like somebody is trying to re-install XP without SP2 ;) [URL="http://www.microsoft.com/Downloads/details.aspx?FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en"]Microsoft .NET Framework Version 1.1 [/URL] The above download should not be necessary if you after fresh installation of OS update it with Service Pack 2 | |
Re: Question: Who is not looking for good job in these times of depression? | |
The End.