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 Mike Lewis 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. 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!
  16. supermatchgame

    XPATH query - one statement works and one doesn't

    I have an xml fragment from the start of a file: <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"...
  17. supermatchgame

    Automatically resize divs in two column layout

    I'm using a standard header --> two columns (30 / 70 split) --> footer CSS layout for the forms that I am working on. I'm having problems keeping both the nav and content divs the same height. I can make them both the same height (i.e. 500px) in the style sheet. But if I do this the forms that...
  18. supermatchgame

    Help with Javascript to highlight DataGrid items

    Hi Dan, No, this didn't work for me. I've kinda given up with the idea of highlighting the row (although it would be great) because I'm not too hot with Java and don't see how I can debug the script that I insert into the HTML of my page. It annoys me that this is so difficult - I would have...
  19. supermatchgame

    Help with Javascript to highlight DataGrid items

    Hi, I got some javascript from a web page that highlights the different rows in a datagrid when I roll my mouse over them: <script language="javascript" type="text/javascript"> startHighlight = function() { if (document.all && document.getElementById) {...
  20. supermatchgame

    Picking out alternative names in duplicate rows

    Hi, I have some data in SQL that looks like this: ID | FORENAME | SURNAME | ALTERNATIVENAME 1 | JOHN | BLOGGS | DENNIS 1 | JOHN | BLOGGS | FRANK What I would like to do is to get this all into one row, similar to this: ID | FORENAME | SURNAME | ALTERNATIVENAME1 |...

Part and Inventory Search

Back
Top