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!

Recent content by supermatchgame

  1. supermatchgame

    Access value of web control during server-side event

    OK, runat = server. Thanks for the tip. Problem now is that if I set the spinner <ul> to runat=server it doesn't render properly. And if I create a <label id="lbl" runat="server"> next to it with visible=false, and then try and write a javascript function to set the value of the label to be...
  2. supermatchgame

    Line Numbers

    Not a great answer I know but have you tried the responses on this forum post? http://stackoverflow.com/questions/628565/display-lines-number-in-stack-trace-for-net-assembly-in-release-mode
  3. supermatchgame

    Access value of web control during server-side event

    Hi, I have implemented this UI Spinner (http://docs.jquery.com/UI/Spinner) on a .aspx page. The spinner is built around an HTML <ul> called s3 on the page. How can I access the value of this control on a server - side event? For example, in the Page_Load event I have tried doing Dim k as...
  4. supermatchgame

    Figuring out the percentage completion through a decision tree

    That's what we said this morning. It's ok where you have a decent amount of nodes that aren't decision points but the scripts we're working on don't really allow for this. The one that's in front of me right now has one path that goes through six decision points in a row, so I would only be able...
  5. supermatchgame

    Figuring out the percentage completion through a decision tree

    Dunno if this is the right forum, however... ...my dev team is working on a series of user scripts to talk them through certain customer processes. We want to put a percentage complete bar at the top. We're not sure, however, how to calculate the percentage completion given that there are...
  6. supermatchgame

    Better way of looking at the Windows Event Log?

    Hi, Can anyone recommend an app that makes looking at the Windows Event Log easier. For example, an app that I could pass a start and end date / time into and it shows me the number of error messages, the number of warning messages etc. Cheers, SMG.
  7. supermatchgame

    Arranging date information into a timeline

    Hello, I have a table that contains data like this: ProjectTimeID | ProjectID | PersonID | StartDate | EndDate --------------|-----------|----------|-----------|-------- 1 |1 |1 |2009-01-01 |2009-01-02 2 |2 |1 |2009-01-03 |2009-01-04 3...
  8. supermatchgame

    Send XML to MSMQ without &lt;string&gt; wrapper

    I have written some code that sends the XML from an XMLDocument into an MSMQ message. The message arrives at the queue fine but for some reason the format of the message is: <?xml version="1.0"?><string>my xml.. </string> This is causing problems because my middleware engine is expecting the...
  9. supermatchgame

    Correct way to handle errors in Web Service

    Great, thanks for this. I asked a consultant on site what he thought and he pretty much said what you did word for word. I have added an error element to each schema with a message sub-node to store the custom error message. That way if the error information needs expanding at any point I can...
  10. supermatchgame

    Correct way to handle errors in Web Service

    I am designing a 'connector' as an interface between the user and a database. The connector is a web service with a series of operations based on solicit / response. Some of the operations return data in XML format - i.e. one of them can be passed a series of integers to produce reports from...
  11. supermatchgame

    Icon set with numeric symbols

    Fair point, but; 1. I'm a terrible artist. I'd love to have icons that look professional like the ones that you see at sites like this: http://art.gnome.org/themes/icon/ 2. I only have MS Paint on my desktop, my employers won't fork out for a package like Fireworks or PaintShopPro. 3. So...
  12. supermatchgame

    Icon set with numeric symbols

    Does anyone know where I can get an open source (i.e. GPL or CC, not royalty free) icon set that contains numeric symbols? I need the numbers 1 - 5, preferably with a white backgound.
  13. supermatchgame

    XPATH - wierd problem with sub elements

    Again, thanks - missed the 'www' off the apd namespace. I need to go home...
  14. supermatchgame

    XPATH - wierd problem with sub elements

    Here's an xml fragment: <?xml version="1.0" encoding="ISO-8859-1" ?> - <DataSourceMessage xmlns="http://www.govtalk.gov.uk/Education/ISIndexDataSourceMessage" xmlns:apd="http://www.govtalk.gov.uk/people/AddressAndPersonalDetails" xmlns:bs7666="http://www.govtalk.gov.uk/people/bs7666"...
  15. supermatchgame

    XPATH query - one statement works and one doesn't

    Thankyou so much for your help - I always, always get the namespace information wrong!

Part and Inventory Search

Back
Top