Forum: HTML and CSS Jul 3rd, 2009 |
| Replies: 7 Views: 509 ok, it doesn't have to be php, all it has to do is send it to a specified e-mail address without opening the users default e-mail client and then needing them to press send.
If the only way is... |
Forum: HTML and CSS Jul 3rd, 2009 |
| Replies: 7 Views: 509 i've made a website with a contact form, but everytime you click the send button it opens the computer default e-mail client. i know there is a way of doing this, but i dont know how.
I think it... |
Forum: Java Apr 26th, 2009 |
| Replies: 4 Views: 274 the problem is that it will add the original contents of the file to the end of the new file |
Forum: Java Apr 26th, 2009 |
| Replies: 4 Views: 274 i'm still working on the property to let program. and it sort of works... its just when the user selects to delete a line from it it will delete it fine, but it will then duplicate all the items that... |
Forum: Java Apr 26th, 2009 |
| Replies: 1 Views: 310 The delete section works when i replace the line
ln = Double.valueOf(br.readLine()).intValue();
with
ln=2
i would use this if i could but the user needs to be able to select the line... |
Forum: Java Apr 26th, 2009 |
| Replies: 1 Views: 310 I am getting further with my Property to let program, but i need help working out the above error, it happens when the user selects the option to delete a property from the text file.
The user is... |
Forum: Java Apr 26th, 2009 |
| Replies: 7 Views: 659 in another section of the code (i == 3), they are assigned numbers, the user then types in that number on the delete section and it is then deleted from the file... well thats how it should work... |
Forum: Java Apr 25th, 2009 |
| Replies: 7 Views: 659 Yeah Sorry, Section 2 is the delete. the text file looks like this
pe158nb,68,500
pe158ul,1,1000
They have been written in as a vector.
any idea on ho0w i would go about doing what you... |
Forum: Java Apr 25th, 2009 |
| Replies: 7 Views: 659 This is the reader code
import java.io.*;
import java.util.*;
public class rff
{
public static PropertyRental proprent = new PropertyRental(); |
Forum: Java Apr 25th, 2009 |
| Replies: 7 Views: 659 This is the get functions
public class PropertyToLet
{
private String postCode;
private String houseNumber;
private String monthlyRent;
public PropertyToLet (String... |
Forum: Java Apr 25th, 2009 |
| Replies: 7 Views: 659 This is the main code
import java.io.*;
import java.util.Vector;
import java.io.File;
import java.io.IOException;
public class PropertyRental
{ |
Forum: Java Apr 25th, 2009 |
| Replies: 7 Views: 659 I've got to make a Property To Let program that can allow the user to add, view or delete property details to and from a text file. I have done the add and view part but i am having trouble getting... |