User Profile

Collapse

Profile Sidebar

Collapse
deepthisoft
deepthisoft
Last Activity: Sep 5 '08, 05:09 AM
Joined: Jul 27 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • deepthisoft
    started a topic jtable column validation
    in Java

    jtable column validation

    hi,

    I have to display a alert message while entering the value in the column based on the previous column and return focus to the same column. How can I do this. I am new to JTable.

    Thanks in advance.
    Regards,
    Deepthi.
    See more | Go to post

  • deepthisoft
    started a topic Retrieve the data types from the database
    in Java

    Retrieve the data types from the database

    Hi,

    Is there any way to Retrieve all the Data types for current RDBMS(oracle) using java matadata.

    If you know please help me. This will very helpful for me.

    Regards,
    Deepthi.
    See more | Go to post

  • deepthisoft
    replied to How to convert Object to Vector
    in Java
    hi,

    Is there any way to convert Vector to String?.

    Thanks in advance.
    See more | Go to post

    Leave a comment:


  • deepthisoft
    replied to How to convert Object to Vector
    in Java
    hi,

    I have to receive ob as String(with the same vector value again i have to convert Vector here). Like

    void mymethod(String s)
    {
    Vector v = (Vector)s ; // like this
    }

    How can i do this.
    See more | Go to post

    Leave a comment:


  • deepthisoft
    started a topic How to convert Object to Vector
    in Java

    How to convert Object to Vector

    hi,

    I have converted vector to object. How can I convert Object into Vector.

    My code look like this,

    [code=java]

    Vector column=new Vector();
    column.add("one ");
    column.add("two ");
    Object ob=column;
    //here i am calling a method
    mymethod(ob)
    {
    // how can i convert ob Object to Vector
    }
    [/code]
    Thanks...
    See more | Go to post

  • deepthisoft
    replied to Enable a button using java
    in Java
    Hi,
    Thanks for your reply.
    Can you please give some sample codings for changeselection method at the time of row selection.

    Thanks in advance,
    Regards,
    Deepthi.
    See more | Go to post

    Leave a comment:


  • deepthisoft
    started a topic Enable a button using java
    in Java

    Enable a button using java

    Hi,
    In my screen i have a jtable and a button. At the beginning the button is disabled. When i select a row the Button Will be Enable.
    How can i do this. Please anyone help me for this. This is very helpful for me.
    Regards,
    Deepthi
    See more | Go to post

  • deepthisoft
    started a topic vb.net beginner
    in .NET

    vb.net beginner

    hai,

    I am a beginner for VB.NET. I don't know anything in vb.net. can anyone give me a website url for study VB.NET.

    This is very helpful for me.....
    See more | Go to post

  • store the log file information into sql server database

    Hi,

    I am creating site statistics tool.For that I have stored the log file information into Sql server database through ODBC Option in IIS. I got date, time, ip, port,target,sta tus,error status and also for a web Application. But i need the informations about brower,session, platform,robots ,refferer. Is it possible.

    Can anyone help me?
    See more | Go to post

  • This is my code
    [code=javascript]
    <html>
    <body>
    <script language=javasc ript>
    function fSetSelectedDay (my)
    {
    alert((my).chil dNodes("calDate Text").innerHTM L);
    alert(my.childr en["calDateTex t"].innerHTML);//It returns the value 5
    }

    </script>
    <table>
    <tr>
    <td valign='top' id=calCell onclick=fSetSel ectedDay(this)>...
    See more | Go to post

    Leave a comment:


  • deepthisoft
    started a topic children, childNodes problem in netscape

    children, childNodes problem in netscape

    hi,
    Children element in javascript is not working in netscape. But is working fine in IE. ChildNodes element is also not working in Netscape. But it is working fine in
    IE.

    My code is look like this,
    [code=javascript]
    function fSetSelectedDay (my)
    {
    alert(parseInt( (my).childNodes ("dateText").in nerHTML));
    alert((myElemen t.children["calDateTex t"].innerText));
    ...
    See more | Go to post

  • how to open the web page contents into the ms.word

    hi,

    How to open the jsp page contents in a word document using java. In that JSP web page i have one graph and also some contents. I want to open all the contents of that graph.jsp into a word document on clicking the word icon.
    How to do this. Anyone one have any ideas.
    Thanks in advance.
    See more | Go to post

  • deepthisoft
    started a topic Displaying the value in combobox

    Displaying the value in combobox

    hi,

    I want to change the combobox displaying value depending up on the action value. This is the example code,
    [code=html]
    <html>
    <head>
    </head>
    <script Language="JavaS cript">
    function check(action)
    {
    if(action=="hou rly")
    {
    //code insert here
    //this action equals hourly i have to display the Hourly in the combobox....
    See more | Go to post

  • Getting ArrayList values in the javascript

    Hi,

    I have stored an Arraylist values into a javascript array.It is working fine. But i can't get the array values one by one. How can i do this, anyone can help me. This is very urgent for me.

    Sample code here,
    [code=javascript]
    arr=new Array(<%=search 1%>);
    document.write( arr);
    document.write( arr[3]);
    [/code]

    The out put is
    1,2,3,4,5,6,7,8 ,9,10,11,12 -->...
    See more | Go to post

  • hai,

    My code is like this,
    [code=java]
    String from="myname@do main.com";
    String fromId = "myid@domain.co m";
    String password = "mypassword ";

    Authenticator auth = new PopupAuthentica tor(fromId, password);
    java.util.Prope rties props = System.getPrope rties();
    props.put("mail .smtp.host", "mail.gmail.com ");
    props.put("mail .pop3.host",...
    See more | Go to post

    Leave a comment:


  • deepthisoft
    started a topic java.net.ConnectException: Connection refused
    in Java

    java.net.ConnectException: Connection refused

    hai ,

    I have created an application using javamail for the purpose of send the mail.
    Mail goes all the mail ids , if i use our company domain name.If i use other domain like yahoo,gmail and other company domain names. I got the following error.
    could not connect to SMTP host port 25.
    java.net.Connec tException: Connection refused

    How to solve this problem.
    This is very urgent for me.
    ...
    See more | Go to post

  • deepthisoft
    replied to how to convert String to int
    in Java
    It is working fine.Thank you very much for all your responses.
    See more | Go to post

    Leave a comment:


  • deepthisoft
    replied to how to convert String to int
    in Java
    [code=java]
    String id="EAM9";
    id= id.substring(3, (id.length()));
    System.out.prin tln(id);// it will print 9.
    //after this i want to convert id into integer.
    [/code]...
    See more | Go to post

    Leave a comment:


  • deepthisoft
    replied to how to convert String to int
    in Java
    Thanks for your reply.

    I want to convert into integer. And then I sure it contains the value number.It is getting from the database.After three posisions it is only have numeric values only.And Also I checked that value using print statement it prints number.

    After converted into int ,I want to add 1 to that. There is any other solution for this....
    See more | Go to post

    Leave a comment:


  • deepthisoft
    started a topic how to convert String to int
    in Java

    how to convert String to int

    hai,

    I want to convert String to int.My coding is like this,

    [code=java]
    rs=stmt.execute Query("select a from mailtable");
    rs.absolute(-1);

    String id=rs.getString ("a");
    System.out.prin tln(id);

    id= id.substring(3, (id.length()));
    System.out.prin tln("value of id is "+ id);
    [/code]

    at last this id having an numeric...
    See more | Go to post
No activity results to display
Show More
Working...