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

    Unable to find a dll in system32

    I've got a VB6 app that uses a dll called "decrypt" which basically just decrypts some licence keys. This dll sits in the windows/system32 folder and i'm referencing it in VB6 using the following. Private Declare Function IsLicenseKey Lib "decrypt.dll" Alias "IsLicenseKey" (ByVal chrLicenseKey...
  2. agentwalker

    Membership and createUser

    Bit of a follow on question. I'm trying to use the Membership.GetUser() to check if the new user i'm trying to enter has a matching loginName with an existing user and if so force them to pick another. However it seems that Membership.GetUser is case sensitive so I could register some with a...
  3. agentwalker

    Membership and createUser

    Think I might have answered my own question here. Also changed the LastActivityDate in the Users table and that seems to do the trick.
  4. agentwalker

    Membership and createUser

    i'm using the membership class to create a new use like so Membership.CreateUser(username,password); All this is working fine however once it creates the user it setting there online status to true. SO on another page the new user is showing up as online. Any ideas how I can stop it from...
  5. agentwalker

    XSLT and dynamic table creation

    Little update: Managed to work out the coding needed for my last bit so all good and well.. Thanks again mate
  6. agentwalker

    XSLT and dynamic table creation

    right back in action after the format, remind me never to install a 64bit OS again. Just tested you last bit of code and after altering my parentNodeConcat and currentNodeConcat by removing the position bits its seems to be working fine. Thanks This xslt is now producing the following html...
  7. agentwalker

    XSLT and dynamic table creation

    thanks mate will work through your suggestion later tonight or tomorrow as i'm in the middle of a format :( just a little note that might alter your suggestion. I wouldn't rely of the css-class='CarePlanProbGroup' attribute as this might not be in the xml. same with any other css-class...
  8. agentwalker

    XSLT and dynamic table creation

    using xmlspy
  9. agentwalker

    XSLT and dynamic table creation

    thanks mate for the reply. just tried the code and was still display the G1** for all, i've added an extr ../ onto the parentNodeParameter and that now seems to be calculating the number correctly :) is there now a way I can collate the id's for seperate problems and pass them to the...
  10. agentwalker

    XSLT and dynamic table creation

    tried the change with a slight alteration as I need the group now the dataset. <xsl:param name="CombinedData" select="concat($parentNodeConcat,count(ancestor::gr:group)+1)"/> But its just giving me the number of ancestors which will always be 3 as you can see from the XML theres always 2...
  11. agentwalker

    XSLT and dynamic table creation

    just tried that and getting d1 for all the ID's now :( heres the xslt i've got so far. The line with your change is on about 83 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:now2now="http://www.testnow.com/now2now/webservice/care"...
  12. agentwalker

    XSLT and dynamic table creation

    Back again, managed to sort the above problem out once I understood things a little better. But here's a new problem. <?xml version="1.0" encoding="utf-8"?> <now2now xmlns="http://www.cse-servelec.com/now2now/genericrenderer"...
  13. agentwalker

    XSLT and dynamic table creation

    The data-cols attribute can be present on any dataset element and can have any numerical value. By default it is 1. The best way to describe things is Group = think of this like a holding table, like a table with one row and one column (really should be a div). Dataset = think of this like a...
  14. agentwalker

    XSLT and dynamic table creation

    My xml looks something like this <group collapse-flagged-groups="Y" collapse-flagged-datasets="Y" css-class="CarePlanProbGroup" javascript-function="highlight(this)"> <dataset collapse-this="Y" data-cols="2"> <data label-text="Created / Modified By:">Jim Davidson On 23 October 2007...
  15. agentwalker

    XSLT problem

    Thanks was the apply-templates match="" that was the problem , switched this to select and alls fine. I'll blame it of a friday afternoon as I started off with things fine. ignore the namespaces i've changed them to protect the company's own namespace so slapped some random stuff in there to...
  16. agentwalker

    XSLT problem

    Hi, I've got a problem when using templates where by if I apply the template to a certain node which is a child of another node it will also output the contents of all the other child nodes. heres my xml <myApp xmlns="http://www.atestnamespace.com" > <data clientnnn="1234567890"...
  17. agentwalker

    ASP / COM problem

    Managed to sort it today at work. In the end it was the Security Config for MSDTC which wasn't allowing transactions.
  18. agentwalker

    ASP / COM problem

    just a little bit more info: It seems the problem is related to COM's which attempt to make a database connection. I've tried creating a simple COM i.e. one which returns a string and that works ok. Also Can confirm that all the COM's and ASP are fine so its got to be something else that i've...
  19. agentwalker

    ASP / COM problem

    Well been working on an application involving asp and COM's which has been working fine. On Friday I was messing around with a print service in .Net and was having problems with it and eventually got it in a state where the service for it was stuck in a 'starting' state. To fix this I tried a...

Part and Inventory Search

Back
Top