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!

Recent content by Simpleton

  1. Simpleton

    Validation Of numeric Fields

    once you ensure it is numeric either ensure it is within a range ie 1950 -> 2050+ or if len(cstr(iYear)) = 4 then ' Valid end if will ensure it is the correct year length (part 2 of your question)
  2. Simpleton

    Select element list height question

    Fester has it, i need a "combo" showing the selected entry, but when it drops down, it shows all 13 in the list.
  3. Simpleton

    Select element list height question

    I'm using this <SELECT size=&quot;1&quot;> <option value=&quot;&quot;></Option> <option value=&quot;1&quot;>1</Option> <option value=&quot;2&quot;>2</Option> <option value=&quot;3&quot;>3</Option> <option value=&quot;4&quot;>4</Option> <option value=&quot;5&quot;>5</Option> <option...
  4. Simpleton

    for each Item in Request.Form---Sort Order Question

    Tick boxes are nasty, the reason your getting random results is ASP appears to &quot;skip&quot; sending tick boxes that are not &quot;ticked&quot;.
  5. Simpleton

    Referencing a constant in DLL file?

    The reason you get no recordset is InterDev although reading the DLL headers to offer up the intellisense while developing does not actually know what the option Values are as integers. Adding the DLL as a reference to the ASP solution should sort that out, passing the integer value 1 I assume...
  6. Simpleton

    Dire need of help with stored procedure output parameters ( ASP, ODBC)

    ok after re-reading it the first part (stored procedure change) is optional change select * from my_view where BALANCE < 0 set @HowMany =@@RowCount in the SP to select @HowMany = Count(*) from my_view where BALANCE < 0 the ado code looks fine, except maybe specifying adParamInputOutput...
  7. Simpleton

    Iframe size

    Browser &quot;cross domain&quot; security block. Basically happens when the loaded url is on another http path it blocks script calls.
  8. Simpleton

    Populating Radio buttons

    when you build the HTML line if you want the value &quot;on&quot; then put the word CHECKED in the string <INPUT TYPE=&quot;RADIO&quot; CHECKED>
  9. Simpleton

    Server.Execute Error

    cool, any chance of posting the problem and answer to benefit others that may come across this in future?
  10. Simpleton

    Server.Execute Error

    One point to consider is if the execute method behaves the same as transfer, ie Server.transfer &quot;PageB.asp?SomeParam=-1&quot; Will fail because it has params specified Server.transfer &quot;PageB.asp&quot; transfers to the next page correctly *and* hands the current QueryString onto...
  11. Simpleton

    ASP and VBScript

    even if you did connect to &quot;\\b\wherever\script.vbs&quot;, and execute the file, it would still execute on cpu A, after dragging off the disk shared by B. The only method I know of to get CPU B, to execute the script is to put waders on and get inside the windows internals, you'll need to...
  12. Simpleton

    Problem with my dll. (beginner asp)

    am answering in the other thread. thread333-381087 real point having 2 threads going :)
  13. Simpleton

    Problem with com dll

    I wish you could edit these :) Session.Contents(&quot;outpostDB.StartsSecc&quot;) Request.form&quot;p_name&quot;) Should actually be Session.Contents(&quot;outpostDB&quot;).StartsSecc Request.form(&quot;p_name&quot;) d'oh
  14. Simpleton

    Problem with com dll

    Session.Contents(&quot;outpostDB.StartsSecc&quot;) Request.form&quot;p_name&quot;) Should be (i think) Session.Contents(&quot;outpostDB.StartsSecc&quot;) Request.form(&quot;p_name&quot;)
  15. Simpleton

    Option Explicit not working...

    try removing the brackets from response.redirect

Part and Inventory Search

Back
Top