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 bkrike 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: *

  • Users: bbvic
  • Content: Threads
  • Order by date
  1. bbvic

    run a procedure at a certain time

    I have a procedure and want to run it at a certain time. I am using oracle 9i.. How can i do that?
  2. bbvic

    radio button

    <a href=" "><input type="radio" name="test"></a> is it impossible with IE? in fact, it works with Mozilla..
  3. bbvic

    string comparison, distinct

    I have a question about string comparison. here is a query for address select address id, address from address address id address ----------- ------------------------------------- 1 123 madison ave. chicago, IL 60661 2 123 madison ave. chicago, IL 60661...
  4. bbvic

    input text and javascript

    how to add <input type="text" name="testid" id="testid" /> into javascript <script></script>
  5. bbvic

    ajax issue

    I have two problems. one is my ajax code does not work. the other is I have an error in here. document.getElementById("medicalid").innerHTML=xmlDoc.getElementsByTagName("hospital")[0].childNodes[0].nodeValue; error says the value is null. Would you please help how i can get the node value? [...
  6. bbvic

    write strings into text file

    this codes works with 1.5 , but it does not work with 1.4.. The error sign is that the method format(String, Object[]) is undefined for the type String. can you help me how it works with 1.5? import java.io.*; import java.util.*; public class Main { public static void main(String[] args) {...
  7. bbvic

    do not move to previous page

    I have three pages. test1.html test2.html test3.html I am on test3.html and when i click the previous button on the top tool bar, it moves to test2.html. I do not want to move to there. I want to move home which is test1.html How can i do that??
  8. bbvic

    send a value of select option

    I have a.xsl file -------- <select name="frm" tabindex="1"> <xsl:attribute name="value"> <xsl:value-of select="@value"/> </xsl:attribute> <xsl:value-of select="@value"/> <option value="1">R</option> <option value="2">p</option> <option...
  9. bbvic

    time format problem

    hi. i have a question about time format. first of all, my code reads an original text file. after calculate time, it writes to another text file which name is write.txt this is the result of write.txt ==================== 2200,321,11:35,23:55 2201,326,12:50,24:15 2209,328,10:00,25:05...
  10. bbvic

    error checking-time format

    hi.. I have a time input text box. Well..my code basically checks if the hour is greater than 24 or 25 and if the minute is greater than 60 or 61... BUT, If the type like #$##$ or 1::20 instead of typing 12:12, how can it checks this error? Thank you
  11. bbvic

    Time validation

    I am trying to check time.. When I used just for one time input text field, it works. But when I tried to use for-loop to check all time input text fields, my code did not work. if I have more than one input field and check time correctly, how can I start?? Would you please help me ? Thank you...
  12. bbvic

    change font color

    hi.. I am trying to change the font color when the checkbox is clicked. this code works, but.. if I just want to change color of list (selection) boxes and it remains two text fields... how can I do that?? thank you in advance.. --- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"...
  13. bbvic

    time input validation

    hi, I have time validation for one input textfield. this time, I am trying to check for more than one textfields. But my code does not work... Would you please help me?? Thank you in advance ============= <html> <HEAD> <SCRIPT LANGUAGE="JavaScript"> function IsValidTime() { for (i = 0; i <=...
  14. bbvic

    time input validation

    I am trying to make time input validation. time input format is HH:MM when the user types time, i want to check it while typing. How can I start?? -----code---- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta...
  15. bbvic

    change color

    hi, I am trying to make change the font color and readOnly text fields when I click checkbox. When I click the checkbox, two text fields are able to write and the font colors change to white. And, when I click the checkbox again, two text fields are unable to write and the font colors change to...

Part and Inventory Search

Back
Top