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. thibault

    Stupid DOS question

    I can't remember how to send the results of a command to a text file. What do I do if I want a listing of all of the files in a directory? Sorry for the lack of challenge on this question. Still looking. t thibault0@lycos.com
  2. thibault

    mcdba exams - cost

    has anyone taken any of the microsoft cert exams recently? if yes, how much does one test cost? thibault0@lycos.com
  3. thibault

    xp_loginfo extended stored procedure

    i'm reading sybex mcse: sql server 7 admin study guide, chapter 12, page 545. it states that the replication agents call xp_loginfo to verify that the sql server agent has the appropriate permissions on various servers. it then states that the agent never actually starts running, so no error is...
  4. thibault

    run-when-idle jobs

    what are run-when-idle jobs? can you explain briefly or recommend a resource that I can study? tia, t:) bobbie thibault@hotbot.com http://pages.hotbot.com/edu/thibault
  5. thibault

    Autostart SQL Server Agent

    I'm running a desktop version of SQL 7 that came with the study guide I purchased. I want to make SQL Server Agent start automatically when I start the SQL Server Service. I can't find any instructions on how to do it, or figure out how to do it myself. I'm growing a little tired of starting...
  6. thibault

    document.frmOrder.reset doesn't work

    function setFocus() { document.frmOrder.reset; document.frmOrder.Store.focus(); // set initial focus vDate = new Date(); // set default date vMonth = vDate.getMonth(); vMonth = vMonth + 1; if (vMonth<10) vMonth = (&quot;0&quot; + vMonth.toString()); vDay = vDate.getDate()...
  7. thibault

    radio buttons exposure in netscape

    it's not my code. it's the guy next to me. besides, it must be contained in the form otherwise it wouldn't display properly in i.e., would it? <wink> bobbie thibault@hotbot.com http://pages.hotbot.com/edu/thibault
  8. thibault

    vDate = new Date(); // set def

    vDate = new Date(); // set default date vMonth = vDate.getMonth(); vMonth = vMonth + 1; if (vMonth<10) vMonth = (&quot;0&quot; + vMonth.toString()); vDay = vDate.getDate(); if (vDay<10) vDay = (&quot;0&quot; + vDay.toString()); vYear = vDate.getYear(); sDate = (vMonth +...
  9. thibault

    radio buttons exposure in netscape

    document.all refused to display the radio button option group in my form when openned in netscape. any clues on how to solve this problem? bobbie thibault@hotbot.com http://pages.hotbot.com/edu/thibault
  10. thibault

    re form validation with onSubmit

    this is &quot;it&quot;...the function that is called &quot;onSubmit&quot;.&nbsp;&nbsp;as i said, if the length criteria are met it does not set the focus back to the indicated field.&nbsp;&nbsp;it displays an alert box which states that it is submitting the form via e-mail.&nbsp;&nbsp;then it...
  11. thibault

    break;

    here is the code.&nbsp;&nbsp;the book said i could use break in any loop.&nbsp;&nbsp;in the example, however, they only used it in a for loop.&nbsp;&nbsp;i created a do/while loop and named it checkAssoc.&nbsp;&nbsp;it doesn't work.&nbsp;&nbsp;i've studied it for errors, but can't find...
  12. thibault

    Can't get this script working

    hey liam!&nbsp;&nbsp;don't be so poopie.&nbsp;&nbsp;maybe dh20 has to write this script now...for his job or something.&nbsp;&nbsp;i'm a newby too.&nbsp;&nbsp;yet the scripts i am working on are for my job.&nbsp;&nbsp;besides, if were already knew all of that stuff we wouldn't need you now...
  13. thibault

    break;

    what's up with break.&nbsp;&nbsp;not only does it not work &quot;anywhere&quot;, but it creates a script error so that, when i use it, nothing works.&nbsp;&nbsp;&nbsp;&lt;grumble grumble&gt; <p>bobbie<br><a href=mailto:thibault@hotbot.com>thibault@hotbot.com</a><br><a...
  14. thibault

    re form validation with onSubmit

    i tried using &quot;return false;&quot;.&nbsp;&nbsp;you're right that it doesn't submit the form when i use &quot;return false;&quot;, but it tells the users that it is submitting the form.&nbsp;&nbsp;i don't want it to do that. <p>bobbie<br><a...
  15. thibault

    can i override the &quot;subject&quot; of a &quot;mailto&quot; action & add a &q

    thanks guys:)&nbsp;&nbsp;actually, we're just getting started.&nbsp;&nbsp;i am the only one here who knows javascript...and i know nothing.&nbsp;&nbsp;the head e-commerce guy is going to hire somebody experienced.&nbsp;&nbsp;until then, i'm just being creative.<br><br>this...
  16. thibault

    can i override the &quot;subject&quot; of a &quot;mailto&quot; action & add a &q

    i have a form <br>&lt;FORM NAME=&quot;frmOrder&quot; ACTION=&quot;mailto:<A HREF="mailto:astack@hotbot.com">astack@hotbot.com</A>&quot; METHOD=&quot;POST&quot; ENCTYPE=&quot;text/plain&quot;<br> onSubmit=&quot;submitIt();&quot;&gt;<br><br>my boss wants the e-mail output to go to more than just...
  17. thibault

    addition formula is returning wrong result

    below is code from one of my pages.&nbsp;&nbsp;the cost() function is supposed to add up the values of tAdult, tChild, tSenior and pParking.&nbsp;&nbsp;then the display() function is supposed to display it.&nbsp;&nbsp;unfortunately, when you choose santa's village, 2 adults and 1 child it...
  18. thibault

    document.form.action = ... seems to be screwing up entire app

    my original action for frmOrder was mailto:<A HREF="mailto:thibault@hotbot.com">thibault@hotbot.com</A>, which worked perfectly &quot;onSubmit&quot;, even if you never closed the page.&nbsp;&nbsp;i added the emailConfirm() function to the &quot;onUnload&quot; method of the &lt;BODY&gt; assuming...
  19. thibault

    disregard the last newby quest: now my "onSubmit" won't work.

    onSubmit...i did it just the way the book did it, but when i submit i get no alert.<br>hmmmmmmm:¦<br><br>&lt;HTML&gt;<br>&lt;HEAD&gt;<br>&lt;TITLE&gt;Special Order Form&lt;/TITLE&gt;<br><br>&lt;SCRIPT LANGUAGE=&quot;Javascript&quot;&gt;<br><br>var vHolder = 0;<br><br>&nbsp;&nbsp;&nbsp;function...
  20. thibault

    another newby question: mailto isn't working- grrrrrrrr

    i can't get this script to work and i got it from the web site of the guy who wrote the book i'm using.&nbsp;&nbsp;argh!&nbsp;&nbsp;could somebody tell me why it won't work?<br>tia,<br>t<br><br>&lt;html&gt;<br>&lt;head&gt;<br>&lt;title&gt;Form...

Part and Inventory Search

Back
Top