Results 1 to 3 of 3

Thread: Value of textbox1 to by design display in Textbox3?

  1. #1
    Garcíarobine is offline Senior Member
    Join Date
    Dec 2009
    Posts
    334
    Rep Power
    3

    Default Value of textbox1 to by design display in Textbox3?

    Hi. I am doing one windows base application. I want the user to fill in Textbox1 (Product ID) & when he goes to textbox2 (Product Name) at this time the value of Textbox1 (Product ID) is filled Textbox3 (Product Detail). It is possible? If possible please reply me as soon as possible.

  2. #2
    RodríguezBrown is offline Senior Member
    Join Date
    Dec 2009
    Posts
    322
    Rep Power
    3

    Default

    Here is example

    Goto TextChanged Event for (Product Detail) Text Box and write below

    Textbox1.text= Textbox3.text

  3. #3
    AndersonDiaz is offline Senior Member
    Join Date
    Dec 2009
    Posts
    311
    Rep Power
    3

    Default

    I think you should call the meaning on 'OnBlur' event of textbox2. (Lest of coping the textbox2 data in textbox1).

    Syntax must be like this:

    Code:
    <script type="text/javascript">
    
    function FnCopyTextBox()
    {
    document.getElementById("TextBox1").value = document.getElementById("TextBox2").value ;
    
    }
    
    </script>

Similar Threads

  1. Flexible design
    By calista in forum CPU & Components
    Replies: 0
    Last Post: 11-25-2009, 04:35 PM
  2. A Look at the Design
    By ager in forum CPU & Components
    Replies: 1
    Last Post: 11-19-2009, 05:26 AM
  3. Form Design
    By willi in forum CPU & Components
    Replies: 0
    Last Post: 02-18-2009, 06:39 AM
  4. Adobe Creative Suite 3 Design Premium Upgrade Design Premium
    By andrea55 in forum General Software Terms
    Replies: 0
    Last Post: 01-02-2009, 06:28 AM
  5. Overloaded design
    By wengirt in forum Windows XP
    Replies: 0
    Last Post: 06-21-2008, 03:59 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48