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 dencom 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: kyern
  • Content: Threads
  • Order by date
  1. kyern

    Odd Cdo problem

    I have a simple form that emails some values to a department, there is an optional field that when entered will send a copy to that recipient as well. All of this works well but recently I added the ability to set priority for certain types of messages. The priority portion works allright for...
  2. kyern

    Request.Form issue

    I have a weird problem that should have been very easy. I have a form with a lot of entries. When I try to pull a value after post back I get a NullRef. I turned tracing on and it shows that they are there, it shows the value I am expecting, but for some reason I cant retrive it. The code is...
  3. kyern

    Content doesn't reload into div in IE

    I asked this in the ajax forum but it doesn't look like any questions have been answered in there in quite a while. I have a really odd problem. I have a script that works in Firefox but doesn't in IE. There are no errors in firebug. All it does is make a request to a page to see if there are...
  4. kyern

    Content doesn't reload into div in IE

    I have a really odd problem. I have a script that works in Firefox but doesn't in IE. There are no errors in firebug. All it does is make a request to a page to see if there are any new items, if the value is greater than the one stored then it makes a new request for the content. I am...
  5. kyern

    Copy Node

    I am working with a wordml document. In the tag <w:pict> there is <w:binData> or there is some vml. Right now anything with the <w:binData> is working great. Right now I am just doing <xsl:template match="w:pict"> After this I need to create a case statement. If the next tag is <w:binData>...
  6. kyern

    AJAX Checkbox

    I have a large form that is used to enable / disable several categories of a report generator I am creating. Each category has a simple checkbox. I would really like to find a way to ajax enable this application. I am still extremely new to ajax. I figure to do this I need to make each...
  7. kyern

    Ajax Checkbox

    I have a large form that is used to enable / disable several categories of a report generator I am creating. Each category has a simple checkbox. I would really like to find a way to ajax enable this application. I am still extremely new to ajax. I figure to do this I need to make each...
  8. kyern

    Code Efficiency

    I have a report generator that is having some speed issues. What this does is loops over each category in the db per each category and performs and count on each one. The SQL queries are lightning fast, I even use getrows to get the data out quickly, but I think I should be able to use the...
  9. kyern

    Regex

    I am trying to find a regex that would allow only the characters allowed in the left half of an email address. It would fail if there was an @ sign or other special character not normally allowed. If anyone can help it would be very appreciated. Also if anyone knows of a good resource to...
  10. kyern

    Problem with Counter

    I have a strange issue with a counter I use to find out how long is spent on a form. On the majority of computers I have checked this works fine, on other computers it counts two times faster than normal and will only update the seconds portion instead of cascading to minutes. All computers...
  11. kyern

    ajax script

    I am trying to create a ajax script that checks for updates to a database. right now it runs whiteboard_total.asp which returns a number if that number is larger than the stored var it will update the contents. What I have doesn't update the content, it isn't giving an error. I am very new to...
  12. kyern

    window.location.reload

    Is there any other way to refresh a page besides window.location.reload that wont destroy javascript variables on the page?
  13. kyern

    Prompting on page updates

    I have a unique problem I am hoping I can get some insight on. I have a intranet page that updates its content by a javascript refresh. I need to change this so the page checks for updated entries in real time if there are more entries than current update the page. Checking for updates like...
  14. kyern

    Form Memory Script

    I am trying to customize this script so it can retain values of both selects and checkbox fields. I've already done a tiny change that will make it so textareas will work. The trouble I'm having is probably very basic. I can't figure out where the value is being assigned to the form field. I...
  15. kyern

    Form Retain Script Question

    I am trying to customize this script so it can retain values of both selects and checkbox fields. Ive already done a tiny change that will make it so textareas will work. The trouble im having is probably very basic. I can't figure out where the value is being assigned to the form field. I...
  16. kyern

    Sort Time

    I am having a small issues sorting in my xslt file. I have a date like so: 06/28 05:50 PM. This is what I use to sort it: <xsl:sort select="substring(date,1,2)" order="descending" data-type="number" /> <!-- month --> <xsl:sort select="substring(date,4,2)" order="descending"...
  17. kyern

    XMLDocument

    I am using the following code to write the contents of one xml file to another, the code is just being indented so it is easier to read. Is there any way to modify this so that it can write to the same file? I know it can't write directly because there is a lock, but I tried to duplicate the...
  18. kyern

    Menu Script Refresh

    I have a small problem with a menu script I am using called Jim's DHTML Menu. Every time the page resizes it calculates its position on the page and then performs a page reload. I really like this feature but I would like to find a way to have the script change position without the page reload...
  19. kyern

    XSL Stylesheet

    I am trying to create a xml stylesheet that will end up outputing like so: <li class="alt"><label for="a1"><input id="a1" name="a1" value="xxx" type="checkbox" />xxx</label></li> <li><label for="a2"><input id="a2" name="a1" value="xxx" type="checkbox" />xxx</label></li> <li class="alt"><label...
  20. kyern

    Finding First Empty node

    Hello, I am trying to setup an xml document that has a predefined number of nodes, I would like to parse for the first empty node and then enter data into it. The problem is i can find all empty nodes but not the first. I am using asp. Thank You David

Part and Inventory Search

Back
Top