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 SkipVought 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: joyceda59
  • Order by date
  1. joyceda59

    onchange event

    hi..i am trying to create this form in which there are two fields that i am having troubloe with. what i am trying to do is that as soon as a user changes the value of one field,the value of the second field should be cleared. I hav a date field and a time field. Originally the date field...
  2. joyceda59

    object required error

    Hi, I tried split this string. For some reason, i keep getting an object required error pointing to the first line in the code below. Plz help! strList1 = document.getElementById("serverSelect") list1 = Replace(strList1, "/", "") list1 = Replace(list1, " ", "")
  3. joyceda59

    simple vbs conditional question

    hi im new to vbscript. basically what im trying to achieve is if a user selects a certain date greater than the current date from this calendar in a form, then the time field ( next field) should be defaulted to empty. Initially when a user opens this form, the date field is defaulted to...
  4. joyceda59

    msgBox

    hey monksnake...i tries your code. But i still get this error: Permission denied: 'MsgBox' plz advise
  5. joyceda59

    msgBox

    hii this might seem like a reaallly stupid question. I am having trouble with the syntax of the msgBox This is what i entered as code: MsgBox("The distribution date is invalid",0,"Select a date") the error keeps occurring: msgBox if denied. I have no clue what the problem is. plz advise...
  6. joyceda59

    convert string to date format

    Hi, i created this function that takes a string parameter from a form. This string basically consists of a date in the format of mm/dd/yyyy. Now, im not too sure how to convert this string to a date so that i can compare fi the user date is greater than the current date?...here is what i...
  7. joyceda59

    form field focus

    so this is what i did: created a sub: sub CheckForm(form) 'Notify users what sections they have left blank if packageName = "" Then Response.Write "<br /><center><b>Please enter a <font color ='red'>package name</font></b></center>"...
  8. joyceda59

    form field focus

    but how is this related to server side coding. All want to do is set the focus to a particualr field if that field is not filled in by the user. DO you have any suggestion as how how I can do this without mixing server side and client side coding?
  9. joyceda59

    form field focus

    I tried that: however i keep getting an object error: "Object Required " here is what i did: 'Notify users what sections they have left blank if packageName = "" Then Response.Write "<br /><center><b>Please enter a <font color ='red'>package...
  10. joyceda59

    form field focus

    oh so..if one of your form field name is packageName, then the syntax is like this: packageName.focus() ? thx
  11. joyceda59

    form field focus

    Hi, im just curious to know if there is a way to send the focus to a form field if the user has not filled in that field. Also, i was wondering how to highlight a missing textfield? I know that in javascript, we can use the Focus() method, but not sure is there is a swimilar method in...
  12. joyceda59

    display list

    forget..i just figured it out :)
  13. joyceda59

    display list

    Hi im creating this form where a bunch of servers are listed with checkboxes beside each.(the servers are pulled out of a sql tble). A user can any server. Once the user clicks the submit button, form validation occurs to see if any of the form fields is empty. If one of the fields is empty...
  14. joyceda59

    regular expression object property

    yay!..thx it works!
  15. joyceda59

    regular expression object property

    Hi im using the regular expression object property 'Pattern' to validate my time. I have created the condition but it seems that there is something wrong with it. When i do the testing the conditions are not applying. My condition for time example(not case sensitive): 12:00 PM or: 12:00PM...
  16. joyceda59

    How to script so that buttons and checkboxes are checked

    Hi I hav created a form that users can fill and submit. Some of the fields in the form hav radio buttons and checkboxes that users can select. Now, if a user makes some mistake filling the form, i want to form to tell the user he/she has made a mistake and i want the radio buttons to be...
  17. joyceda59

    How to keep radio buttons checked

    Hi I hav created a form that users can fill and submit. Some of the fields in the form hav radio buttons and checkboxes that users can select. Now, if a user makes some mistake filling the form, i want to form to tell the user he/she has made a mistake and i want the radio buttons to be...
  18. joyceda59

    time field validation in a form

    ok thx..it works! :)
  19. joyceda59

    time field validation in a form

    Hey..i include the regular expression into my code and then called the function in the sub that does all the other form validation...but for some reason the time validation is not working. When i type in out of range numbers in the time field, i m still able to submit the form. Here is what i...

Part and Inventory Search

Back
Top