5,031 Posted Topics
Re: sourceforge.net has plenty of abandoned projects | |
![]() | Re: Because you are able to set number of row doesn't mean you are able to edit that way. You need to play around with position of [URL="http://java.sun.com/javase/6/docs/api/javax/swing/text/Caret.html"]Caret[/URL] |
Re: There is existing tutorial on the top of JSP section why don't you read it... | |
Re: You need to provide logic or better method that on press [LIST] [*]reads mouse coordinates [*]finds out in which square of the board the coordinates are located [*]either return you X,Y coordinates of top left corner of the square for further processing or directly use these coordinates to change colour … | |
Re: [QUOTE=adbawany;1018311]im in the beginning of making a database project. ive very little clue of what im to do. where to start from? help! thank you[/QUOTE] Where to start? By starting new thread instead of hijacking someone else. Secondly providing info in regards of you project as reading from crystal ball … | |
Re: The price did not change for last 2 years while I was I using it, so I do not expect to change it now. Beside providing community edition, JetBrains are big fans of open source development and support community for long time. They do lots of give-aways of their products … | |
Re: [QUOTE=abinashsamal;1017729]May be you are using a incompatible version of java. Ex if u r using weblogic 8.1 then you should use jdk 1.4 and not java 5. Even if you are using jdk5, you have option to set the "Compiler Complience Level" in eclipse (if u r using eclipse).[/QUOTE] Congratz … | |
Re: Please edit your post and change it from CODE SNIPPED to FORUM THREAD. When you do so do not forget copy and paste code from code section to post section... (to make sure you got it right use preview option) | |
Re: You know that you just started one of these "never ending stories" (pointless discussions in my view as you shoudl try and find your preferred IDE ) what is best? It is like who has best best national football team? Who is best in cricket? I have to admit that … | |
Re: Remove "<Student>" from ValidRecords class opening, problem solved... [code=java] package Assignment; import java.util.*; /** * * @author Nigel Novak */ public class ValidRecords { // Class Fields and Constants Follow private ArrayList<Student> list; private int sortOrder;[/code] | |
Re: You have mistake this forum for something else, do google search like [URL="http://www.google.co.uk/search?hl=en&q=Motorola+RAZR+V3i+mp3+player+download&btnG=Search&meta="]this[/URL] to got some results | |
Re: Being more specific about which version you want to install and what OS you using would be highly beneficial to know. Here is [URL="http://java.sun.com/javase/downloads/index.jsp"]Java download [/URL]section for latest releases and here you can find [URL="http://java.sun.com/javase/downloads/previous.jsp"]previous[/URL] | |
Re: Java and JavaScript are not the same thing. Java is product of Sun Microsystems where JavaScript is product of Netscape. Java is an programming language, JavaScript is obviously scripting language. Request to move post to correct section already sent. | |
Re: If you let MySQL register its PATH on install you can run dump from any location in your pc, if you did not do so you need to run dump from MySQL installation folder. Point of this is that you do not need to give absolute path to save the … | |
Re: [QUOTE=alokranjan.java;1015596]multiple checkbox & textfield insert in Oracle9i using Jsp[/QUOTE] It is bad enough that you reopened old thread you did not even provided proper description of whatever you up to. Do you mind to correct your mistake? | |
Re: Netbeans.org - [URL="http://www.netbeans.org/kb/docs/web/mysql-webapp.html"]Creating a Simple Web Application Using a MySQL Database[/URL] PS: Do not limit your self to selected tools, try others or try also tutorials that are not directly fitting your tool set and modify as need it. | |
I would like to know if people would be interested in participating building similar starting thread like we have in Java section [URL="http://www.daniweb.com/forums/thread99132.html"]Starting "Java" [Java tutorials / resources / faq][/URL], but targeting Java web development. This thread would hold resources (where to get the things, configurations, basic usage and any … | |
Re: I'm just gone give you example how this work with little different topic [code=Java] public class Employee { private int empNum; private String firstName; private String lastName; private String department; public Employee(int empNum, String firstName, String lastName, String department) { setEmployeeNumber(empNum); setFirstName(firstName); setLastName(lastName); setDepartment(department); } private void setEmployeeNumber(int empNum){ this.empNum … | |
Re: [QUOTE=akulkarni;1009418]i couldnt start the server...i tried using commands in dos like.."tomcat start".The url i used was [url]http://localhost:8080/[/url][/QUOTE] You would have to set path to tomcat for the command to be recognised in similar manner to what you did with Java so now you can call "java" or "javac" commands. To … | |
Re: Not possible. Option of full screen is available only to Canvas and GameCanvas | |
Re: [URL="http://www.w3.org/TR/html4/interact/scripts.html#h-18.2.3"]onChange[/URL] - the onchange event occurs when a control loses the input focus and its value has been modified since gaining focus. This attribute applies to the following elements: INPUT, SELECT, and TEXTAREA. | |
Re: What you are trying to do is called mapping. You have table 1 with info on photos and table 2 with info on various photo types. You will create table 3 that will have two entries per record and it will be photoID and photoTypeID. So once you have request … | |
Re: You can either use [URL="http://primefaces.prime.com.tr/en/"]PrimeFaces[/URL] or Google for [URL="http://myfaces.apache.org/"]Apache MyFaces[/URL] any extension of MyFaces | |
Re: [B]Edit:[/B] Ignore this, masijade already spotted error First check your name spelling for tables and columns used if you have any spelling mistakes (can check it as you failed to provide database or affected tables specs) In the future please post full error message not just section. | |
Re: [QUOTE=the_programmer;1012485]thanks for the feedback. I would like a link to any official documentation on what is suppose to be kept and what isn't. Thank you.[/QUOTE] That bit you can do on your own by searching law in regards of IT and data protection of your country that varies between countries | |
Re: Because you told your program to draw only vertical lines and did not told it to draw horizontal. Configure this correctly and you get also horizontal lines [code=Java] g.drawLine((x * j) + 100, (y * i) + 60, (x * j) + 100, y * 8); g.drawLine(100, (y * i) … | |
Re: Step 3: Read forum policies like [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] | |
Re: [QUOTE=javaAddict;1009936]First of all start a new thread with your new code. This kind of thread is only for posting working code as an idea of sharing code for educational purposes. Start a new thread and [U]don't[/U] select code snippet. Post your new code. Then we will talk[/QUOTE] No need to … | |
Re: [QUOTE=Jocamps;1011129]It should be AND (&&) statements right instead of OR?[/QUOTE] Nope, problem is with the use of "!=" which is basically same as using method "equals()" which is only allowed/available on object type. Character is primitive type hence the error which pop up. Solution is to use [URL="http://java.sun.com/javase/6/docs/api/java/lang/Character.html#compareTo(java.lang.Character)"]compareTo()[/URL] method. With … | |
Re: You got general direction of the wind that files that you wish to deploy should be placed in webapps folder, unfortunately it is not full truth. You need to provide your "ch" folder with minimal Tomcat deployment directory structure. [LIST=1] [*]Create new project folder in directory webapps (you already did … | |
Re: You need to pay closer attention to opening and closing of brackets. See bellow code (the code still will not compile and throw some errors which you need to solve) import javax.swing.*; import java.awt.*; import java.awt.event.*; import java.io.*; public class Calculator extends JFrame implements ActionListener{ private JTextField displayText = new … | |
Re: [QUOTE=nikolai04;1009869]i have a tictactoe java code that has mouse events in it. my professor wants me to run it in a mobile phone... can anyone help me with that? please... thanks in advance.[/QUOTE] Yes, as long you show some interest... | |
Re: You need to manage "processing" done by forEach. This command just blindly output anything its found in the file. So either you need to filter data which should be displayed or which should be rejected. Or perhaps forward received data for further processing. Without knowing what exactly you want to … | |
Re: "connection reset while the page was loading" is obvious that attempted connection time is out. Reason, you cannot use "localhost:8080" to access server from other machine then your's. 1. If client is sharing same local network as you you can use IP address of your pc. 2. If client is … | |
Re: Yes, contact Abbey sales and together you should be able to find solution | |
Re: For start would be good to know which programming language we are talking.... | |
Re: Rule No.1 - Always read forum rules and that includes also forum section rules like this one [URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL] | |
Re: @cwarn23 are you sure you do not have any messages in Sent Items? Whenever you send personal message if check box bellow post editing area is left checked you get copy stored in your Sent Items. | |
Re: [QUOTE=Ank12;1006058]Hi I don't find much about drag and drop feature in javascript but here is a java drag drop feature which might be helpful to you . Its an explanation of java drag drop feature. SNIP Hope it will help you[/QUOTE] That is for applications and not for website... | |
DaniWeb Digest online copy is not available. If you click on the link from email you get message "An issue of our newsletter doesn't exist for this day." Also where can we found link for previous Digests that been previously located at the bottom of the page? | |
Re: There is no problem with that if you start ask specific question and not place just generic request... | |
Re: @Thirusha thank you for spreading word about it, but that is just one example with specific aim to show how database connectivity should be handled through servlets no Java Server Pages. However I appreciate it. @llemes4011 MySQL to Java communication is virtually no different to any other database. The main … | |
Re: [QUOTE=jrosh;1004706]the problem there is how can i retrieve those values..from database? jst after it is being stored. I mean to calculate the difference the values should be retrieved again rite?(I use textbox to take the time from user and store it in the database...) (extra - I use java..) Now … | |
Re: You can do it your self ;) Just click on "Mark as Solved" under last post... | |
Re: This post was originally created in 2005, time to time somebody bump it requesting requesting whole code or help in coding it. You know what? You better of to create new post, state what you looking for, what you did and wait till somebody will reply. Posting in old posts … | |
Re: [URL="http://java.sun.com/webservices/docs/2.0/tutorial/doc/"]The Java Web Services Tutorial [/URL] | |
Re: No offence, but looking on your posting history I'm not sure if you actually posted in correct section. Are you sure you talking about Java as programming language by Sun Microsystems or you wanted to ask about JavaScript as scripting language mainly used for web development. Either way more explanation … | |
Re: [URL="http://w3schools.com/sql/sql_where.asp"]The WHERE Clause[/URL] | |
Re: You haven't been careful with construction of output string, plus there is one use of wrong variable name. Corrected program here import java.io.*; import java.text.*; public class Program08 { public static void main (String args[]) throws java.io.IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); DecimalFormat roundMyDecimal=new DecimalFormat("0.00"); float amount; float … | |
Re: You can find working example of JME splash screen [URL="http://www.daniweb.com/code/snippet227459.html"]here [/URL] |
The End.