Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

[Share]Java Simple Record Management/Info System with User Friendly GUI

. . .Thanks po dito Bossing . .salamat talaga sa pag share!!!
 
di ko pa nagamit eclips eh. Siguro import lang, remove the netbeans dependencies.. Or copy paste mo nalang yung mga java codes mismo.
 
Sir.. madaming salamat sa pag post mo ng java project mo.. konti na lang problem ko.. SQL kasi ang required na gamitin sa project ko.. and konting bawas na lang sa mga options na sinama nyo sa program.. overall big help talaga siya.. :) :clap:
 
NP. :)
most likely sa connection string lang papalitan mo. Same query codes lang kasi sila.
 
Help naman po pwede nyo po ba ako matulungan kung panu to paganahin kapag gagamitan na ng JOptionPane plssss bale ok na po itong program na ito aayusin nalang po


import java.util.*;

public class LinkedListExample{
public static void main(String[] args) {

LinkedList <Integer>list = new LinkedList<Integer>();
int num1 = 11, num2 = 22, num3 = 33, num4 = 44;
int size;
Iterator iterator;
//Adding data in the list
list.add(num1);
list.add(num2);
list.add(num3);
list.add(num4);
size = list.size();
System.out.print( "Linked list data: ");
//Create a iterator
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
//Check list empty or not
if (list.isEmpty()){
System.out.println("Linked list is empty");
}
else{
System.out.println( "Linked list size: " + size);
}
System.out.println("Adding data at 1st location: 55");
//Adding first
list.addFirst(55);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
System.out.println("Adding data at last location: 66");
//Adding last or append
list.addLast(66);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
System.out.println("Adding data at 3rd location: 99");
//Adding data at 3rd position
list.add(2,99);
System.out.print("Now the list contain: ");
iterator = list.iterator();
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Retrieve first data
System.out.println("First data: " + list.getFirst());
//Retrieve lst data
System.out.println("Last data: " + list.getLast());
//Retrieve specific data
System.out.println("Data at 4th position: " + list.get(3));
//Remove first
int first = list.removeFirst();
System.out.println("Data removed from 1st location: " + first);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove last
int last = list.removeLast();
System.out.println("Data removed from last location: " + last);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove 2nd data
int second = list.remove(1);
System.out.println("Data removed from 2nd location: " + second);
System.out.print("Now the list contain: ");
iterator = list.iterator();
//After removing data
while (iterator.hasNext()){
System.out.print(iterator.next()+" ");
}
System.out.println();
System.out.println("Now the size of list: " + list.size());
//Remove all
list.clear();
if (list.isEmpty()){
System.out.println("Linked list is empty");
}
else{
System.out.println( "Linked list size: " + size);
}
}

}



salamat po sa makaka tulong sakit napo ng ulo ko
 
lastly sir..paano makukuha yung system time? date lang po kasi yung nakukuha.. kailangan ko po kasi sa log-in/log-out system:praise:.. parang yung sa bundy clock.. salamat po sa reply.. :)

:praise:

:thumbsup:
 
boss tnx dito this vacation magseself study ako about this java sana matulungan mo ko..ok tong ginawa mo astig
 
hahaha!beginner nga !!

nice one nice one! ganda nga pre!!

peu may tip ako sau!
gawa ka lng ng isang instance ng Connection mo . . tapus pasa mu nlng sa ibang class,,
kc ung ginawa mu each class lagi ngDedeclare ng panibagong object ng Connection eh! hehehe! babagal system mu nyan!!
hahaha! Jlabel pla ung mga background na un kala ko plugin ng netbeans! :D
 
malaking tulong to para sa akin.. pa BM muna.. maya na sa ofis mag download kasi malakas ang net doon.. thanks in advance...
 
astig pa bm makakatulong ito sa akin thanks
 
Bro pano naging background image ung jLabel mo ? ung sakin di sya pdeng pang background ehh
 
ts pwede po ba makahingi ng source code mo po dito ganda po kasi magbase lang po ako para mkagawa ako ng isang magandang java program btw :thanks: po



keep sharing :rolf:


:hit: :thanks:
 
Sir, nice talaga gawa mo pwede po ako magrequest nang ganung program need ko kasi sa work ko nasa jail po kasi ako nagwork :) thanks sir..
 
pwede po pcopy ts? paano po iyong system proposal nito. thanks po
 
Back
Top Bottom