Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Vegeta

    Tabbing between form fields in javascript

    Hi, i need to know if in the "function tabbing(field1, field2,field3,field4)" you especify the fields there or they are passed from a externall call
  2. Vegeta

    Passing Object between Frames

    hi, you must have in attencion that you have to pass the object to a container or pass directly to the frame. the rest of the functions that access to the object, must contain the "parent.main" - assuming that "main" is the name of the frame. - must have the direction of the...
  3. Vegeta

    set Focus on input area

    hi,you can call the object itself. Example: Assuming you have the text box named text1. <INPUT id=text1 name=text1> Assuming you have a button that when you click, you pass the focus to the text1, text box. <INPUT id=button1 name=button1 type=button value=Button...
  4. Vegeta

    Date format problem

    hi, you can solve the problem doing this: var d_date = new Date(); // lock de system date d_date = d_date.getYear(); // Get the year d_date = d_date.toString(); // Convert the variable to string d_date = d_date.substr(2,2); // Substrack the 2 end numbers //d_date now have the value 01 Best...
  5. Vegeta

    Sorting characters and numbers

    Hello, I hope someone can help me, I need a program to sort characters and numbers for Visual Basic 6, pleace help me..

Part and Inventory Search

Back
Top