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

  1. GBudbill

    TRUNCATED TIME FIELDS

    The datepart function is truncating your dates before you insert them into the database. You need to fix the format before posting them. Try the following which demonstrates the problem and a solution. <example> dtNow = Now dtDay = datepart(&quot;d&quot;, dtNow) dtMonth =...
  2. GBudbill

    How to make a timeout in VBScript

    An explanation and example of the undocumented Wscript.Timeout parameter http://groups.google.com/groups?hl=en&lr=lang_en&ie=UTF-8&oe=UTF-8&safe=active&threadm=eBPbq2qRBHA.1544%40tkmsftngp05&rnum=5&prev=/groups%3Fq%3Dvbscript%2Btimeout%2Bproperty%26ie%3DUTF-8%26oe%3DUTF-8%26hl%3Den
  3. GBudbill

    how do I open a .chm file using vbscript syntax?

    The ERR.HELPFILE supports only the older WinHelp file format, not the newer HTMLHelp format
  4. GBudbill

    Login Script help Please?

    You have already solved this issue, but the problem was the &quot;If oGroup()&quot; statements. oGroup is not defined until you enter the IsMember function. Should have been &quot;If IsMember()&quot; with appropriate parameters. You can find lots of examples to learn from here...

Part and Inventory Search

Back
Top