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

    ASP Shell Object

    i believe so if the webserver has access to this other server, and permissions to run such a script. [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
  2. DreXor

    dates and form fields

    whoops thanks dan, i forgot to plug in the date math in the code snip [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
  3. DreXor

    dates and form fields

    <form name="datepick" id="datepick".... <select name="dayselect" id="dayselect" onChange="document.getElementById('date2').value=this.value;"> <option value="7">7</option> <option value="14">14</option> </select> <input type="text" name="date1" id="date1" value="<%=todaysdate %>"> <input...
  4. DreXor

    Conversion failed when converting from a character string to uniqueide

    i think i might have missed some lessons, but from what i see that doesn't look like asp, i'm not even familiar with that formatting of code, but as for the error your're getting updating unique ids is 2 fold, one thy have to be unique before and after updating, secondly, they have to maintain...
  5. DreXor

    Rollover Menu Not Quite Right

    this is probably the closest i've fond to the "style" of menu you're trying to make : http://www.cssplay.co.uk/menus/dd_valid_2.html [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " -...
  6. DreXor

    Rollover Menu Not Quite Right

    correct, and beacase the way that one works, it'll be goofy like that, the reason it works is it keeps track of the last one you hovered, so that when you bridge the gaps it still displays it, which still applies even after goin way outside, now the entire container everything sits in, we can...
  7. DreXor

    Rollover Menu Not Quite Right

    usually this sort of thing is done with graphics, then the overlaps aren't so visible, so here's 2 examples, the first you can see the overlap, i just placed the red border on the individual divs and changed the positioning slightly, and got rid of the container. <html> <head> <script...
  8. DreXor

    Rollover Menu Not Quite Right

    there are 2 main reasons most menu systems work seamlessly without the jitter/fight to maintain like you're having.. 1) container 2) overlap container is a div/table whatever everything is in and on mouseout you hide the selections, and on the different menuitems you showsubmenu, hide other...
  9. DreXor

    Email form help needed

    actually here's one of the google results with a very nice list of suggestions, methods, and styles. http://www.javascript-examples.com/autocomplete-demo/ [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm...
  10. DreXor

    Email form help needed

    search google for javascript autosearch/autocomplete/autosuggest there's many such examples, including ones that have xmlhttp, which will poll results from your site so you dont ave to populate your html with emails and even more applicable to check against your DB [thumbsup2]DreX aKa - Robert...
  11. DreXor

    multiple getElementById

    are all of the fields/elements the same name? names can be the same, id can be different, so you can address each individually the same way you supplied. if they have to have same ID whether or not the name is the same you can use something like the following: function hideshow(obj) {...
  12. DreXor

    Change type of Column in mdb database

    my suggestion is to to do a table alter, insert a NEW field, as numeric as you're wanting copy the old data to it, then rename the old/new fields, so the new becomes the old etc.. then you can delete the non number format. my guess is you possibly have non numeric data in that field and hence...
  13. DreXor

    free a section of my asp page

    free a top section?? add a DIV? if you have a page, and you're trying to slip something else in at the top, find the body tag, and right below it add your new stuff.. limited info, limited answer .. sorry [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy...
  14. DreXor

    DB Connection timeout

    well he's saying 30 seconds for the SP, so 8000 would timeout, i've just taken it to lazy typing as i usually do, but if it is at 8000 instead of 80k then it will be timing out [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the...
  15. DreXor

    DB Connection timeout

    Hmmm, wil do more thinking (with google in hand!) and respond back soon [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
  16. DreXor

    DB Connection timeout

    been a long time since i've used extensive "chew" scripts for data crunching, i've looking in my archives and for some reason i'd put timeouts on all three properties as zero although i did frequently use response.buffer=true and response.flush a period(space) after every so often records...
  17. DreXor

    document is undefined

    even give u a star for it [2thumbsup] [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
  18. DreXor

    document is undefined

    i do understand it is case sensitive, i was typing a quick response in order ot be of assistnace, as this forum is supposedly for IT professionals, i would figure my collegues out there know to correct the case sensitivity, and to replace out the IFRAME in the call to the respective title, but...
  19. DreXor

    Hiding a large HTML section

    forgot to note, to hide large chunks, put spans on them or anchors around them, or if it's entire tables, or TR's just ID them [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance! " I always think outside the 'box', because I'm never in the 'loop' " - DreX 2005
  20. DreXor

    Hiding a large HTML section

    you really dont need to go all out on CSS .. simple functions like this will usually do you: <script> function hideshow(obj) { var obj = (typeof(obj)!='object') ? document.getElementById(obj) : obj; obj.style.display = (obj.style.display != 'none' ? 'none' : '' ); } </script> fed with...

Part and Inventory Search

Back
Top