Forum: Java Jul 17th, 2009 |
| Replies: 10 Views: 638 I am the one who made that code. just want to share it. why are you complaining... I just want to share... instead of saying that thing to me why don't you try to help those people who needs help. I... |
Forum: Java Jul 17th, 2009 |
| Replies: 6 Views: 436 package src.maintenance.loyalty;
import java.awt.Component;
import java.awt.Cursor;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Point;
import java.awt.Rectangle;
import... |
Forum: Java Jul 17th, 2009 |
| Replies: 10 Views: 638 |
Forum: Java Jul 17th, 2009 |
| Replies: 3 Views: 7,002 private JComboBox getJC_country(){
if(JC_country== null){
JC_country = new JComboBox();
JC_country.setSize(new Dimension(260, 20));
JC_country.setLocation(new Point(80, 230));... |
Forum: Java Jul 17th, 2009 |
| Replies: 3 Views: 7,002 private JComboBox getJC_country(){
if(JC_country== null){
JC_country = new JComboBox();
JC_country.setSize(new Dimension(260, 20));
JC_country.setLocation(new Point(80, 230));... |
Forum: Java Jul 17th, 2009 |
| Replies: 3 Views: 7,002 private static void queryCountry(){
JC_country.addItem("(Choose)");
try {
String query = DBConnect.Select("addr_ref", "country, description",
"region = ''", "country");... |
Forum: Java Jul 16th, 2009 |
| Replies: 10 Views: 638 package src.maintenance.accntMasterfile;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import... |
Forum: Java Jul 16th, 2009 |
| Replies: 2 Views: 283 USE [code = Java]
import java.awt.Font;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import... |
Forum: Java Jul 16th, 2009 |
| Replies: 2 Views: 283 import java.awt.Font;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ButtonGroup;
import javax.swing.JInternalFrame;... |
Forum: Java Jul 16th, 2009 |
| Replies: 5 Views: 216 how you will code it using loop? can you give me an example? |
Forum: Java Jul 16th, 2009 |
| Replies: 5 Views: 216 public class diamond {
public static void main(String [] args ){
System.out.println("*");
System.out.println("**");
System.out.println("***");
System.out.println("**");... |
Forum: Java Jul 16th, 2009 |
| Replies: 6 Views: 541 |
Forum: Java Jul 16th, 2009 |
| Replies: 6 Views: 541 private String getDate(String setDate){
String Date = "";
int month = Integer.parseInt(setDate.substring(5, 7));
int year = Integer.parseInt(setDate.substring(0, 4));
String day = ... |
Forum: Java Jul 16th, 2009 |
| Replies: 4 Views: 366 public void readTxtFile ( File inFile, File reFile ) throws IOException {
// System.out.println("readtxt");
NumberFormat NoFormat = NumberFormat.getInstance();
try {
inRec = new... |
Forum: Java Jul 16th, 2009 |
| Replies: 4 Views: 366 package src.maintenance.Uploader;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Point;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import... |
Forum: Java Jul 16th, 2009 |
| Replies: 0 Views: 476 /*
*It's a Running program that generates DBF file
*Question is: How can I make an IDX file Out of this.
*I tried to changed the extension by .idx but I'm not sure if it is *correct.
*/
... |
Forum: Java Jul 16th, 2009 |
| Replies: 1 Views: 234 /**panchitz trial program.. still error**/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.text.*;
public class Panchita extends JPanel implements... |
Forum: Java Jul 16th, 2009 |
| Replies: 2 Views: 223 public class looping {// start class
private static int value = 1;// declare int value = 1
public static void main (String[] args){//start method
for (int i = 1; i<=10;i++ ){//start loop... |
Forum: Java Jul 16th, 2009 |
| Replies: 6 Views: 301 public class looping {// start class
private static int value = 1;// declare int value = 1
public static void main (String[] args){//start method
for (int i = 1; i<=10;i++ ){//start... |