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 strongm 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: adddeveloper
  • Order by date
  1. adddeveloper

    The web page you are viewing is trying to close the window

    Thanks everyone for the input to my question. After having a meeting yesterday with a lot of "big-wigs", they basically didn't even read the javascript I had on the page which flashes saying "Allow pop-ups for this site" in very big letter, along with a big help icon as to why to do so. I just...
  2. adddeveloper

    Running total help...like Crystal XI

    Thanks xlbo! Unfortunately, a new requirement has brought about the data duplications. I can fix the issue with sub-reporting, or using Crystal XI.
  3. adddeveloper

    trying to exit Update command if textbox isn't valid

    ca8msm, Thanks for your patience and help! I wasn't handling my control structure correctly. If there was no "|", I wasn't handling it properly when I ran a database query to make sure the user didn't select a name, then try to edit it on the fly. So, I needed to say if there's no "|" and...
  4. adddeveloper

    trying to exit Update command if textbox isn't valid

    ...and....it's my datagrid update command. If the user tries to update a name, and doesn't use the autosuggest text box's dropdown list, then I wanna exit the sub and display the error message.
  5. adddeveloper

    trying to exit Update command if textbox isn't valid

    sorry...typo from my code copy: instr(txtASBRes.Text, "|") = 0 It compiles correctly. Thanks!
  6. adddeveloper

    trying to exit Update command if textbox isn't valid

    Here's my code, but it's not getting caught: If Len(Trim(txtASBRes.Text)) > 0 And InStrtxtASBRes.Text, "|") = 0 Then 'Means there are characters for the Resource code ' and no pipecleaner = didn't use ddl for name lblResCodeWarn.Visible = True lblResCodeWarn.Text = "* Use list!" Exit Sub End...
  7. adddeveloper

    Running total help...like Crystal XI

    Let's say I have the three groupings from most outter to the inner: 1.U.S. four quarters (North, South, East, West) 2. U.S. 50 States (so, each of the 50 states) 3. Each states's top two city's measured by population ...and the sum() is for energy consumption in whatever, let's say Kilo-Watts...
  8. adddeveloper

    Running total help...like Crystal XI

    Hmmm...well, Distinct didn't work. I was sceptical for it to be that simple. If I use runningvalue, that's not giving me what I want. I can't tell the higher group(first grouping) to reset on a lower group (2nd grouping) like in Crystal. I has to be the group itself or I get an error in the...
  9. adddeveloper

    Running total help...like Crystal XI

    xlbo, Well, I just used the same scenario I had before when using the simple sum(), but did a "Distinct" in my SQL. That seemed to do the trick. Any downers to that? Thanks!
  10. adddeveloper

    Running total help...like Crystal XI

    xlbo, You don't mean runningvalue() do you?
  11. adddeveloper

    Running total help...like Crystal XI

    I can perform this running total easily w/ Cyrstal reports via the "Running Total" window where: 1. I want a certain expression, here would be the sum of a money column 2. I want it to total on this certain grouping 3. I want it to reset on this certain grouping So, let's say I have three...
  12. adddeveloper

    Check if row data has changed

    gmmastros, If the user changes a letter to another letter, would Checksum() still catch that as a change?
  13. adddeveloper

    Check if row data has changed

    In our appliation, we have a "Close" button, that when the users click it, we update the records just in case as a safety net...this was by design when the application was first developed. Is there a way to check to see if the whole row (about 25 columns) has changed w/o having an Update...
  14. adddeveloper

    The web page you are viewing is trying to close the window

    Hello! I just ended up using a DIV tag w/in the page via CSS. I tested the page w/ both IE6 and 7. Since we started off asking the user if they would or wouldn't like to perform a step, we took that out and simply presented them with the final form to fill out and a "Close" button at the top...
  15. adddeveloper

    The web page you are viewing is trying to close the window

    adam0101, Tried this but still same as before with pop-up question to close the page (thanks for the suggestions though): <HEAD> <SCRIPT language="VBScript"> Sub Window_Onload window.opener = "self;" End Sub </SCRIPT> </HEAD> ..in body: <INPUT type="button" value="Close"...
  16. adddeveloper

    SSRS 2005 exporting report to .xls w/ subrpt

    Okay, just got it to work by using a list control instead of a Table! Hope this helps others! Thanks!
  17. adddeveloper

    SSRS 2005 exporting report to .xls w/ subrpt

    Does SSRS 2005 have the issue fixed as to when the user exports a report to .xls format and the report contains a subreport? In SSRS 2000, if there was a subreport in the main report, and the user exported the report to .xls, then it would just display an error message. Thanks!
  18. adddeveloper

    The web page you are viewing is trying to close the window

    May just have to open a DIV tag to get around this. thanks!
  19. adddeveloper

    The web page you are viewing is trying to close the window

    kaht, If I do that, I get the same result. Thanks!
  20. adddeveloper

    The web page you are viewing is trying to close the window

    I have a window that's opened via a hyperlink from a parent window. If I try to close this "child" window with a simple self.close(), I get the prompt: The web page you are viewing is trying to close the window Here's my HEAD code: <SCRIPT language="VBScript"> Sub Window_Onload...

Part and Inventory Search

Back
Top