Forum: Java Apr 5th, 2007 |
| Replies: 1 Views: 842 Hi Im am so far trying to get the Jlist in my gui to display all the files in my directory H:\SDI\MileStoneMyworkspace\MileStoneMyWorkSpace\users\abimar
How can I do this. If you look I madde an... |
Forum: Java Apr 5th, 2007 |
| Replies: 0 Views: 3,028 ListFile class takes care of writing the files to Jlist
Basically there is a Jlist in my GUI and I want it to display the files stored in my user folder.
But for some reason it doesnt work... |
Forum: Java Apr 5th, 2007 |
| Replies: 4 Views: 1,353 I even searched through my entire files and thier is no more list files with a lowercase yet it still wont work |
Forum: Java Apr 5th, 2007 |
| Replies: 4 Views: 1,353 I did delete it now. But it still says the same error |
Forum: Java Apr 5th, 2007 |
| Replies: 4 Views: 1,353 "ListFiles.java": Duplicate definition of class milestonemyworkspace.ListFiles, defined in H:\SDI\MileStoneMyworkspace\MileStoneMyWorkSpace\src\milestonemyworkspace\ListFiles.java and also defined in... |
Forum: Java Apr 3rd, 2007 |
| Replies: 22 Views: 5,440 This is all I got, I dont know why it still isnt workin :sad: |
Forum: Java Apr 3rd, 2007 |
| Replies: 22 Views: 5,440 public class User {
private String userName;
private String password;
private String accountInfo;
public User()
{
//accountInfo = new ArrayList();
}
public void... |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 ;) Wow you make it seem so easy. Just add Username and Password to hashmap aye.
private HashMap userInformation;
//createAccountBtn pressed
... |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 I really appreciate you helping me. I really got to research how to store stuff in files. Im reading documentation on properties at the moment.
So I should use store?
and then load to login? |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 Heres some more of my improved Gui.
'
I still am struggling to do this all I gave picture id though.
//createAccountBtn pressed
createAccountBtn.addActionListener(new... |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 public class AccountInfo {
//private String userName;
private int pictureInput;
private int userID;
private GUI gui;
private ArrayList userName;
private ArrayList password;
... |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 I understand I somehow have to store Username and Picture to a file? But then how will I be able to call the file in the login screen?
Do I need 3 Arraylists? One for user one for picture one for... |
Forum: Java Mar 27th, 2007 |
| Replies: 22 Views: 5,440 This is what I have so far. Btw im using J builder.
I've created the GUI and now I need to store the data when you Create Account.
//createAccountBtn pressed |
Forum: Java Mar 26th, 2007 |
| Replies: 22 Views: 5,440 Wow is that coencidence that you both have avatars created by matt groening.
Ok, thnx for the replies aye. To be honest this doesnt even need security, all it really needs is different files... |
Forum: Java Mar 26th, 2007 |
| Replies: 22 Views: 5,440 Do I store the usernames in an array lisst and pictures inb and array list and then somehow match them together to allow the user a succesful login>? |
Forum: Java Mar 25th, 2007 |
| Replies: 22 Views: 5,440 Hi I am having trouble creating a system to log in to a system.
If you look at a picture its like this. User selects thier user name from a dropdown box, and then select thier Picture(instead of... |