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: adddeveloper
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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!
  5. 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...
  6. adddeveloper

    Trying to set left / top position of popup calendar

    I'm trying to set the top and left properties of my popup calendar depening on which button I click, but can't get it to work with anything I try. Here's what's in my function: function PopupPicker(ctl, l, t) { var PopupWindow = null; //settings='width'+ w + ', height='+ h '...
  7. adddeveloper

    Trying to send email w/ home machine IIS/SMTP server

    I'm going through the ASP.NET 2.0 Unleashed book (SAMS), and am trying to use the CreateUserWizard control to mail my username and password to the email address entered. When I check the IIS logs under Windows\System32\LogFiles\SMTPSVC1, the following shows up: 2007-01-01 04:44:01 -...
  8. adddeveloper

    Trying to see if cookies enabled

    The following code isn't working. What I want to do is to write to the page or alert the user that they don't have cookies enabled if this in fact the case from their browser settings. This is to allow the user to check a checkbox so they don't see an informational screen again when they come...
  9. adddeveloper

    javascript for maintaining vertical position in code behind

    yes, I know I posted this concerning a recent post, but what was with a control I found on the web. I'm now trying it on my own. Here's what I have in my HTML: <a name="#cb1"></a> <asp:CheckBox id="cb1" runat="server" Text="Don't show me again." AutoPostBack="True"> </asp:CheckBox>...
  10. adddeveloper

    Trying to maintain vertical position on postback

    hello! I'm using this control: http://www.strengthtechnologies.com/scroll/UsersGuide_VS.aspx It's to keep the vertical scroll position on postback. I had tested it before, and it worked, but now...for some reason it doesn't. I've checked the following and all seems right: 1. The .dll is in...
  11. adddeveloper

    better way to load images

    Newbie here! I have several different pages, 7 to be exact, and they all contain image files w/in a table. What I'd like to do, to simply speed up the pages, is to use thumbnails instead of the whole picture. ....or some other type of better practice than show the whole image when the page...
  12. adddeveloper

    ASP.NET 1.1 Security/Priveledge ?

    We have an application with about 400 users. The way the user authenticates is via a government security card password, and each user has their own unique number...not their SSN, but like that...unique to each individual. When the user enters the application, they are all stamped as "webuser"...

Part and Inventory Search

Back
Top