- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 23
- Posts with Upvotes
- 22
- Upvoting Members
- 16
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
169 Posted Topics
Re: "It was when Lucifer first congratulated himself upon his angelic behavior that he became the tool of evil" | |
Re: You can search google for tutorial sites. There you can learn step by step java programming (w/ examples). You can also downlaod pdf's. [url]http://www.roseindia.net/java/[/url] | |
Re: Well no one will give you the code, i think you know that. Try to figure it out 1st by yourself. Try coding some lines. I assume this is a homework so I assume that somehow your teacher taught you how to use the while and if loops. Cmon show … | |
| |
Re: Im always with myself. Are you afraid to die?? | |
Re: Please do some coding first. If you get stuck then you can post your questions here. | |
Hello to all. I hava an IBM WebSpehre Application Server ver 6.1.0.31 in aix ver 5.3. Things so far. 1. I developed a WAR file and successfully deployed it in JBOSS. 2. Then we migrated to WebSphere, application was installed successfully. 3. Simple select statements like [CODE] String query = … | |
Hi everyone, Im trying to download all files in a directory residing in the server to clients pc. I know how to download single files using response.getoutputStream(). My problem is I want to download ALL the files in that directory with a single click of a button. i tried iterating … | |
Hello Everyone, Im needing a bit of help here. First, Im trying to let client download a file from server and save it on client's pc. When client clicks on button "DOWNLOAD", it will call a servlet that will download the file. Expected outcome is that a SAVE AS DIALOG … | |
Re: You can also try this. When its time to write your array back to your file, do a for loop and compare if the the array value is equal to the name you want to delete. If it is, then skip the write. | |
Re: Diablo LOD (",) Arcade - > Guilty Gear Series... | |
Re: ?? [QUOTE]contentPane.setLayout(null); JPanel panel = new JPanel(layout); panel.setBackground(Color.WHITE); addComponent(contentPane,panel, 0,0,595,375); [/QUOTE] So, what's your problem?? | |
Re: Hello faiz, welcome to DaniWeb(",) Dont worry, DaniWeb is full of people who are more than willing to help us in our programming problems (",) | |
Re: Well first you need to create an input system where you will get your values. What do you plan to use?? GUI?? command input?? HTML?? do that 1st and i basing from your code, i think it is almost complete. | |
Re: well, first try coding what's on your mind. then if you got stuck, then you can post your questions here. | |
Re: [CODE]JBtton button = new JButton();[/CODE] try to google "creating button using swing class". | |
Re: What do you have in mind?? Do you have any sample code for this?? | |
Re: ?? [QUOTE] Expected Output: The Minimun Integer is 0. The sum of the negative integers is 0. The sum of the odd integers is 0 The number of positive integers in the sequence is 2 [/QUOTE] Input is 4 2 0 1 3. Minimun integer is 0 : good coz … | |
![]() | Re: [CODE]System.out.println()[/CODE] will try to print anything inside the parentheses. But as you can see your [CODE]r1.add(r2)[/CODE] is a method that returns void. You cannot print a 'void'. if you want to show the result of r1.add(r2) the you need to change the return parameter of your add method. try [CODE]public … ![]() |
Re: i think you need to store the states in a DB using the country as primary key. then add an event on the onClick of your button. On this onClick event, you will populate your dropdown list according to the records you have selected from the database. | |
Re: eman 22 was right, first determine where your weak points are. is it in grasping the concepts?? is it in programming?? In any case, my suggestion is read, read, read. | |
Re: try coding it this way [CODE]for (int i = 0; i < loanDuration; i++) { loan = loan - monthlypayment System.out.println(loan); }[/CODE] | |
Re: Next time, please rap your codes inside the CODE-tag You dont say what the error is. Please be more specific. | |
Re: Try putting your numbers inside an array and do [CODE]Arrays.sort(arrayName)[/CODE] this will sort the numbers from lowest to highest. to arrange it from highest to lowest, you need to do a for loop beginning from arrayName.length() - 1 to 0. | |
Hello Guys, Im having a bit of a problem here. Im trying to deploy an EJB project that i developed using Eclipse Galileo Version 3.5.2 using JBOSS 6.0.0.Final as server. When I try to deploy my test EJB its giving me an error that it cannot instantiate class [org.jboss.logging.util.OnlyOnceErrorHandler] ClassNotFoundException. … | |
Re: @darenn 76, please wrap your codes inside the CODE-tags. Arrays.sort(arrayName) will sort the arrayName from lowest to highest. So to print the numbers from highest to lowest, you need to do a for loop beginning from the arrayName.lengh() - 1 to 0. | |
Re: Next time please wrap your codes within the CODE tag. I think you should be the one telling us what's wrong with your code. What are the errors that you are having?? What are the inputs and outputs?? What do you expect your program will do?? | |
I have a bit of a problem here. The situation. 1. I have created a Dynamic Web Project. (good) 2. I have created a logon JSP (good) 3. I have created a css (good) 4. I have created a JS file (good) JSP, CSS are located in WebContent/WEB-INF/ JS located … | |
Re: My ideas. 1. When your user click your A-Z link, it should call a function that fetches records from your database that starts with the chosen letter. 2. Then, you need to create a table for all your records in your dataset. For each record in your resultset, you need … | |
Re: What is the error that you are getting?? | |
Re: After you click submit, the page will be passed to the server. In your server side, do validation routines for your drop downs and text boxes. If there is invalid data, redirect to your original jsp page. ![]() | |
Re: I think you should include in your Page_Load Event [CODE]label.visible = false; picture.visible = false [/CODE] so they will disappear. | |
Re: If this is an exam, I assume your teacher has taught you something on how to do this. Try coding first. No one here will do it for you. | |
Re: Well try to do the number 1 first. Do you know how to code in java?? If yes, then please do some coding. Try to code number 1. If you have the code, then you can post it here and if you have questions or get stuck, we will help … | |
Re: ArrayLists are used instead of arrays because it is dynamic meaning it can expand unlike arrays which are fixed sized. It is used when you do not know beforehand how many items you are going to put in your arrayList. Example would be if you are reading your vacation list … | |
The End.