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

    Limit Uploaded Image Size

    Hello - I'm running into a problem where images that are being uploaded through my form are causing the page to timeout and not finish executing. I am assuming it is being caused by the image file size being too large. To resolve this, I'd like to limit the size of the image that can be...
  2. roadcone20

    Sum values - but only if from latest date

    THANK YOU! That works perfectly - and makes sense. I really appreciate your help!
  3. roadcone20

    Sum values - but only if from latest date

    Ultimately what I want is the latest date by calendrical value. In order to find what the latest date was here, I've placed <xsl:sort/> to sort on the ReceiptDate node and then taking the last value, which should be the latest date. (At least, this is what I [i]think[/] I've done - it seems like...
  4. roadcone20

    Sum values - but only if from latest date

    Sorry, here's my existing xsl. Like I said, I've only been able to determine the last date. Not sure where to take it from there, or if there's a better way to handle what I'm trying to do. Thanks! <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"...
  5. roadcone20

    Sum values - but only if from latest date

    Hi All - I'm attempting to sum up some values in XML using an XSL transformation. I'm having some trouble, as I'm really new to XSL. Here's an example of the potential XML: <PurchaseOrderLineItems> <PurchaseOrderLineItem> <Quantity>2</Quantity> <Price>50.00</Price>...
  6. roadcone20

    Can I put PHP code inside PHP code???

    Are you getting an error message or something?
  7. roadcone20

    how to open page that has query string AND target _blank

    Looks like you have something wrong with the " and ' marks. You don't have an open/close quote for each set. Should the third double quote be a single quote?
  8. roadcone20

    Conditional HTML output not working

    Looks like sleipnir214 beat me to it here :)
  9. roadcone20

    Conditional HTML output not working

    Try using == (double equal sign) instead of = (single equal sign) in your if statement. Why are you comparing 1 to 1 anyway? That will always equate to true, anyway.
  10. roadcone20

    deleting files

    At first glance, it looks like your comparison operators are incorrect. !== is not 'not equal to.' For string comparison, try using the strcmp function: i.e. if ( strcmp( (substr($values,-3), 'jpg' ) )
  11. roadcone20

    $_SERVER['REMOTE USER']

    I think it's simply that you're missing an underscore: Try changing: $user=$_SERVER['REMOTE USER']; to $user=$_SERVER['REMOTE[COLOR=red]_[/color red]USER'];
  12. roadcone20

    outlook/bb not updating

    There's another option within the "Email Reconciliation" that you can check. Open the email view and click the trackwheel again to bring up the menu, then select "Options." Select "Email Reconciliation" from there and it will open another screen. On that screen there's a field called "Delete...
  13. roadcone20

    No Provider

    I'm not sure I understand your question...
  14. roadcone20

    Calendar wireless sync

    Hey folks, I have a user who is running on the 4.0 software and has the calendar's wireless synchronization turned on. The trouble is when he accepts meeting requests from his blackberry, the message that would be sent to the organizer tries to send but never does (ends up getting a red X next...
  15. roadcone20

    Webpart security

    Hi. I'm testing out Sharpoint's features and I'm having trouble with webparts. Maybe someone here can help. I've written a few webparts that are working fine, but my issue is security. If I want only certain users to be able to see/use a webpart, how do I do this? Is it even possible to do...
  16. roadcone20

    Trouble accessing email inbox using ASP

    Hey, first time poster here. I have a question about a script I'm trying to write in ASP. Basically at this point all I want to do is access the inbox of an email account. I wrote this script and it works when &quot;email name&quot; (in the code below) is set to my own email, but it gives me...

Part and Inventory Search

Back
Top