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: *

  1. 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...
  2. 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...
  3. 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.
  4. 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...
  5. 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...
  6. 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...
  7. 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.
  8. 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"...
  9. 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"...
  10. 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...
  11. 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) {...
  12. 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 |...
  13. supermatchgame

    Tutorial on transforming XML to XML

    Can anyone recommend a tutorial that explains how I can transform XML from an input schema to XML for an output schema? All the examples I find on google just deal with turning XML into HTML.
  14. supermatchgame

    Debugging in Visual Studio 2005

    I've written a c# class library and deployed it to Share Point 2007 as a web part. Now I'm trying to debug it. I've started the remote debugger on the server that MOSS2007 lives on and set a breakpoint on the code on my laptop, but the break point never gets hit. I was reading about the PDB...
  15. supermatchgame

    Referencing External Assemblies not in GAC

    I've written a couple of methods in a C# class library using an API .dll provided by a partner company. I want to call these methods from within an Orchestration. Now the way I understand it is that everything that Biztalk references must be installed in the GAC. Is this statement correct? The...
  16. supermatchgame

    Strong naming DLL file

    Sorry if this is off topic, but I'm guessing that the people who use this forum regularly will know the answer. I have a .dll file from a supplier and I have referenced it in a C# class library. I've called methods etc. but when I try to build the library VS2005 says Assembly generation failed...
  17. supermatchgame

    SQL Trigger only fires once on multiple update

    I have written a trigger on a table that will fire whenever an insert happens. The trigger is set to insert the current date into a seperate table whenever the insert happens. So if I insert 17 new rows into my trigger table, I would expect the trigger to fire 17 times and insert 17 rows with...
  18. supermatchgame

    Append Results of SQL Query to Table

    Every night I import 4 tables from an Oracle database into a SQL Server database. I drop a that holds the results of a query run against these 4 tables, and then run a 'SELECT INTO' query to re-build the table afresh every night. What I would like to do now is not rebuild this table every...
  19. supermatchgame

    Very noddy counting query

    I have a table with about 70,000 rows in it. Each of these rows has a score, and there are 11 distinct scores. How can I display each score and the number of rows that have this score in transact sql?
  20. supermatchgame

    Import from Oracle fails when scheduled

    I'm trying to import some tables from Oracle to SQL. I start by using the SQL Import wizard to select source (I'm using Oracle Provider for OLE DB) and destination, select tables etc. and then I save the package to SQL Server. I run the job as sa on the SQL server, click finish, the package gets...

Part and Inventory Search

Back
Top