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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by BrianB

  1. BrianB

    No user error when sending emails

    Is it possible that the server thinks *it* handles that domain? I ran into this once, trying to use the foo.com mail server to send to garbage bar@foo.com address. It would blow up when I tried to send instead of bouncing the mail, which was contrary to expectations. Brian Begy Chief...
  2. BrianB

    No user error when sending emails

    Are you sure the email is getting passed correctly? This sounds like some crazy threading bug where what you think is happening isn't really what is happening. Brian Begy Chief Database Guy Chicago Data Solutions www.chicagodatasolutions.com
  3. BrianB

    If then and add a field in SQL

    Are you sure you want to store something dependent on the value of two fields? If you can always calculate the answer, you could run into problems on updates. If somebody updates bioID but doesn't run the check, your combine column will be wrong. If you must store this value, I would suggest...
  4. BrianB

    Money Regex

    Do you have to do it all in one go? Couldn't you use one regex for comma-ed amounts and another for comma-less. Personally, I distrust regex (my background as a non-unix guy showing here), and avoid putting too much functionality in a single line of regex gibberish. Brian Begy Chief Database...
  5. BrianB

    Client Callbacks

    Is scrollPos actually posting back? Is it being overwritten somehow on doc load? The firebug extension is your friend here. Brian Begy Chief Database Guy Chicago Data Solutions www.chicagodatasolutions.com
  6. BrianB

    Create Custom Controls Within Custom Controls

    I don't understand the question. You want to create an arbitrary number of controls at runtime? You can always add them programatically. dim myChild as ctlChild myChild = new ctlChild() myParent.Controls.Add(myChild) The trick with that is to make sure you get you ID properties right so...
  7. BrianB

    constructor w/ parameters for custom membership provider

    You can't reuse one of the built in config params that get passed into initialize? Brian Begy Chief Database Guy Chicago Data Solutions www.chicagodatasolutions.com
  8. BrianB

    ASP 0101~Unexpected error~The function returned |.

    SELECT (SELECT Top 1 Price FROM tblEquipment_Pricelists WHERE EquipmentID = EqptID And PriceListID = 0) AS PL1, (SELECT Top 1 Price FROM tblEquipment_Pricelists WHERE EquipmentID = EqptID And PriceListID = 1) AS PL2 , tblEquipment.EqptID, tblEquipment.EqptName FROM tblEquipment ORDER BY...
  9. BrianB

    ASP 0101~Unexpected error~The function returned |.

    tempVal = 0 tempVal = rstEqpt("PL1") if IsNull(tempVal) then if request.QueryString("CloneFrom")>0 then tempVal = rstEqpt("PL2") logError(297) <<--prints error to screen. No error detected. end if end if if IsNull(tempVal) then tempVal = 0 else response.Write...
  10. BrianB

    ASP 0101~Unexpected error~The function returned |.

    A client has an asp 3 application that pulls data from an MS Access db. The recordset fields can be either numeric or null, but sometimes when we try to access a field (even when it contains valid data), we get the 101 error. Sometimes the same recordset works fine. Any suggestions? I'm...
  11. BrianB

    ASP 0101~Unexpected error~The function returned |.

    Gah! Sorry posted in wrong forum. Brian Begy BugSentry - Automatic error reporting www.bugsentry.com
  12. BrianB

    ASP 0101~Unexpected error~The function returned |.

    A client has an asp 3 application that pulls data from an MS Access db. The recordset fields can be either numeric or null, but sometimes when we try to access a field (even when it contains valid data), we get the 101 error. Sometimes the same recordset works fine. Any suggestions? I'm...
  13. BrianB

    Connection to SQL Server fails using Impersontion

    when logged in to the web box can you query the db using your credentials not in asp.net? Like query manager or standalone console app ? Brian Begy BugSentry - Automatic error reporting www.bugsentry.com
  14. BrianB

    Connection to SQL Server fails using Impersontion

    So are you using integrated security on the sql connection or username/pwd? If integrated, when do you open it? Before or after AD authentication? Brian Begy BugSentry - Automatic error reporting www.bugsentry.com
  15. BrianB

    Error on Sorting Datagrid

    if e.Item.Itemindex =-1 then return else... Brian Begy BugSentry - Automatic error reporting www.bugsentry.com

Part and Inventory Search

Back
Top