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

    Repeating Data from the beginning of a Group on Next Page.

    >Is "Repeat Group Header on Each Page" checked for the group? Nope, it wasn't set. Do you have any other suggestions? It's been put on that back burner for now, but I'm absolutely SURE that soon this problem will become flamming hot! Good Luck! [thumbsup2] WindUp
  2. WindUp

    Display Elapsed Time since Program Started

    How do I display an Elapsed Time since the program started? I have four Java books and I searched through all of them, and nothing indicates how to find a difference between two times. I simply want to display Hours:Minutes:Seconds elapsed. Good Luck! [thumbsup2] WindUp
  3. WindUp

    Repeating Data from the beginning of a Group on Next Page.

    I have a Report that I've invested a lot of time in, and it's not working correctly [sad]. It has two Groups, each with about 16 sections (GroupHeader1a, GH1b...GH1q), the second one has six sub-reports in the last six sections. The problem is that it sometimes repeats data on the next page...
  4. WindUp

    Repeating Data on Next page

    >Can you please be spcific about which section is >duplicating data? Appears it could be any section. It goes to a point, hits the bottom of the page, then repeats that same data (starting from GroupHeader1a) starting at the top of the next page. I tried exporting to Word, and it duplicates...
  5. WindUp

    Repeating Data on Next page

    I have a Report that I've invested a lot of time in, and it's not working correctly [cry]. It has two Groups, each with about 16 sections (GroupHeader1a, GH1b...GH1q), the second one has six sub-reports in the last six sections. The problem is that it sometimes repeats data on the next page...
  6. WindUp

    Paging in Javascript.

    I want to display them ten at a time. Is there a link where I can see how this is done? Try searching the Microsoft Knowledge Base for Article 202125 - Page through a Recordset from ASP. Good Luck! [thumbsup2] WindUp
  7. WindUp

    odd recursive function behavior

    windup, thanks for your input... but isn't this how you construct a recursive function? Close, it should be like this (note the return after the else)... function recursive() { if (conditionIsMet) return value; else return recursive(); } Good Luck! [thumbsup2] WindUp
  8. WindUp

    can't create independent variables?

    x and y are (sub)properties of the window property coords. When you set window.coords = null you do indeed distroy any properties it had. You might have wanted this... window.coords.x = null; window.coords.y = null; Good Luck! [thumbsup2] WindUp
  9. WindUp

    odd recursive function behavior

    I'm not sure if this was your intended behavior, but this returns "10", "11", "12". Note the addition of the last return statement. The reason is that the 10th iteration returns "10", the next returns "9", the next "8"... as they pop...
  10. WindUp

    odd recursive function behavior

    I ran this and get "undefined", "11", "12". I haven't figured out why you're getting "undefined", but x is set to 10 at that point, so the next time you call it, it gets set to 11, and the next time it gets set to 12. function foo() { alert(bar()) }...
  11. WindUp

    Clear input box after clearing alert message

    How do I write a function that will be called on form submit that will examine all the type=file fields and when it finds files that do not have a pdf extension will throw an alert and name the offending fields for the user? Try something like this... <input type=&quot;File&quot...
  12. WindUp

    Object expected error driving me nuts

    I just read that you can't use a number as a member of an object. I got the basic idea, it's those little trivia questions that get me! Good Luck! [thumbsup2] WindUp
  13. WindUp

    Object expected error driving me nuts

    Try something along the lines of... function doMath() { document.getElementById(&quot;31&quot;).value = document.getElementById(&quot;11&quot;).value + document.getElementById(&quot;21&quot;).value; } Good Luck! [thumbsup2] WindUp
  14. WindUp

    availHeight of Browser's Display Area (not of screen)

    That works! Thanks a bunch. It even works in both IE and Netscape. My books don't seem to have any information on that. Cool signature by the way! Good Luck! [thumbsup2] WindUp
  15. WindUp

    Clear input box after clearing alert message

    the user clicks OK I want the input field to clear and the bad value removed. <input type=&quot;File&quot; name=&quot;attach1&quot; id=&quot;attach1&quot; onpropertychange=&quot;check(this.value);&quot;> Use - document.getElementById(&quot;attach1&quot;).value = &quot;&quot;; Be sure to put...
  16. WindUp

    availHeight of Browser's Display Area (not of screen)

    I'm trying to get the available Height (in pixels) of the Browser's Display Area. Screen.availHeight gives the usable area of the Screen, which is close to what I want, but not quite it. I want the available Display Area of the Browser (without scrolling down.) This would be the available...
  17. WindUp

    DOM Level 2 and innerHTML

    I read at www.mozilla.org/docs/web-developer/upgrade_2.html that &quot;innerHTML&quot; has been depreciated and should not be used any more (if I want to stay compliant with DOM Level 2.) So that begs the question - What do I use for cross-browser compatibility? How do I add a child HTML...
  18. WindUp

    Crystal Reports and Netscape 7.0

    No. I just installed Netscape v7.02 and when I run &quot;NetscapePluginViewer.asp&quot; I get a screen telling me to &quot;Click here to get the Plugin.&quot; When I click there, I get a new window that says &quot;The requested URL /viewer9/ActiveXViewer/en/get-npviewer.htm was not found on...
  19. WindUp

    Can I pass a value from an ASP PAge and display it on a report

    >If someone knew of a way of passing a variable from the ASP page and displaying it in crystal If I understand your question correctly, you want to pass a value from ASP and have it display on a Crystal Report. While generation the report, right-click on Parameter Fields on the left (under...
  20. WindUp

    How do I Test a Date Field for Null?

    >What you want in T-SQL (SQL Server) is: WHERE TableName.DateFieldName is null That did it! I thought I had already tried that earlier, but &quot;Ah must'a made'a typin' mistake.&quot;(said in a hillbilly accent) Thanks! Good Luck! [thumbsup2] WindUp

Part and Inventory Search

Back
Top