User Profile

Collapse

Profile Sidebar

Collapse
Navdip
Navdip
Last Activity: Apr 7 '08, 05:06 AM
Joined: Mar 25 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Navdip
    replied to Problem occurs due to combine the code.....
    in Java
    it will call the parse function atlast in which we have passed the Binary file that would be choosed from some location..and the parse function parse it according structure and display some data in JTextArea...pro blem is arising when we create object of JFileChooser class......
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to Problem occurs due to combine the code.....
    in Java
    What do u want to ask..???...
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to Problem occurs due to combine the code.....
    in Java
    Code:
     else if (e.getSource() == liveButton)
          {
    		  JOptionPane.showMessageDialog(null,"Clicked on live-Button","Honey well",1);//Debug
            liveData = true;
          }
        }
    
        private void browseFile()
        {
    		JOptionPane.showMessageDialog(null,"INSIDE Browse fxn 01","Honey well",1);//debug
    		events.append("\tinside Browse function");//debug1
    ...
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to Problem occurs due to combine the code.....
    in Java
    Hi josah
    there is no IPC in project so no module can interact with another module...i have put some print statements to debug it but they do not execute after ocurance of following statements..
    JFileChooser filechooser=nul l;
    filechooser = new JFileChooser();
    i.e control doesn't move after these statements........
    See more | Go to post

    Leave a comment:


  • Navdip
    started a topic Problem occurs due to combine the code.....
    in Java

    Problem occurs due to combine the code.....

    Hi all..
    i am developing a project in java using swings and JApplets which has different modules for different purposes. in this project there is a module named "event" which has three button..and they have their well defined set of action.... Because project is very large so i had developd them separately ...and now they are working and gives proper output..but when i combined them with main project...it doesn't give any output...
    See more | Go to post

  • Navdip
    started a topic Advanced java
    in Java

    Advanced java

    Hi...all
    friends i want to learn advanced java programming.... please tell me how should it start??..i can do core java programming very well...so give me study material and guide line to learn advanced java...thanks.
    See more | Go to post

  • Navdip
    replied to Date and Time problem
    in Java
    Calendar c = new GregorianCalend ar(1985,SEPTEMB ER, 05);
    String s = String.format(" Date of birth Birthday: %1$tm %1$te,%1$tY", c);
    System.out.prin tln("Date of Bith is:- "+s);

    u can change the date format like above code. u have to import following class and packages:- util.GregorianC alendar & util.Calendar.* ;...
    See more | Go to post

    Leave a comment:


  • function createTable(lis t)
    {
    alert(list);
    var table= document.create Element('Table' );

    table.border='1 ';
    var tbdy=document.c reateElement('T BODY');
    while(list)
    {
    var tr=document.cre ateElement('TR' );
    tbdy.appendChil d(tr);
    ...
    See more | Go to post

    Leave a comment:


  • Navdip
    started a topic creation of table using method in DHTML page

    creation of table using method in DHTML page

    i want to create a DHTML page in which i want to create a Table using method in JSCRIPT
    in which i'll pass the number of rows and coloumns as arguments of method.
    and table should get created when i call the method

    please give me code if u can.....
    See more | Go to post

  • Navdip
    replied to code for applet
    in Java
    import java.io.*;
    import java.applet.*;
    import java.awt.*;

    public class ap1 extends Applet
    {
    //Applet component declarations...
    TextField t1,t2;
    Label lab1;
    Label lab2;
    Button b1;

    public void init()
    {
    //Intialization of components
    t1=new TextField(8);
    t2=new TextField(8);
    lab1= new Label("first number");
    ...
    See more | Go to post

    Leave a comment:


  • hi...i just wanted to describe how code will be optimize...i didn't do spoon feeding...i was trying to describe what should be our approach to sovle the problem...the person who has raised the request was doing many extra things in his...so i wrote that code....after all if u seem i have made a wrong thing then sorry for that.....thaks...
    See more | Go to post

    Leave a comment:


  • HI...you can try the following code format to solve your problem.....

    -------------------------------------------------------------------------------------------------
    Again: please don't feed boiler plate solution code; the OP won't learn anything
    from copying/pasing code from somebody else. Read the forum guidelines about
    this very matter (see the 'Help' link near the top right of this page). If you continue...
    See more | Go to post

    Leave a comment:


  • Hi...
    in your code in which u calculating the length of string, u were not calling your function...and also not returned calculated value.You can use the follwing code it will really help you.
    ---------------------------------------------------------------------------------------
    I removed the spoonfeeding code; we don't do that here because the OP won't
    learn anything from copying/pasting code. Don't supply code anymore....
    See more | Go to post

    Leave a comment:


  • hi...
    you should try the following code to fix the problem..
    your code is givin problem cause u r displaying something without giving any value to them...


    import java.io.*;
    import javax.swing.*;

    class Numbert



    {public static void main (String[] args) throws IOException
    { String inData;
    int num,num2;
    int sum;
    ...
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to Seticon
    in Java
    HI...you should set the images to button before adding the button objects into panel...and images must be placed in same folder in which your application is going to develop...other you must give full path of "* .gif " file to set imageIcon...you can use JButton instead of simple button object if u are aware about JApplet it'll more helpfull for u to create a windows application..ho pe best for success...
    See more | Go to post

    Leave a comment:


  • "not using thread" means i'm not extending thread class in my application..
    now please describe how can we run our process repeatedly say after 5 sec....
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to explain
    in Java
    dassa tenu hun solution...Chan nel dekhna mein kaise chalaonga...kam ine
    See more | Go to post

    Leave a comment:


  • How can client raise request continuously to server after some time quantum

    Hi...friends,
    i am using client server arch. in my java application.
    i want client will raise request to server after every 5 second to get response from server. but i'm not using threads.. is there any method to breaks the opration for 5 sec.?? .or make repeated sequence of operation which will run after every 5 second....
    See more | Go to post

  • Navdip
    replied to Client-server
    in Java
    Hi..Talonx...
    i have removed that constructor from server side now its working properly....Tha nks a lot.....
    See more | Go to post

    Leave a comment:


  • Navdip
    replied to Client-server
    in Java
    Thanks .....yaar i have removed the constructor fron server side And now its working... please keep in touch
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...