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 TouchToneTommy 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

    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...
  3. 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...
  4. 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"...
  5. 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...
  6. agentwalker

    Date and time in different fields and formats Comparison

    in one of my tables there are two datetime fields. One holds the date in the format of 25/08/2007 and the other holds just the time like so 13:25:00. Now in the second table the date and time is all in one field like so 25 Aug 2007 13:25:00 What i'm trying to do so get the date and time out of...
  7. agentwalker

    SQL Help with Joins

    Firstly here the bit of sql i'm playing with DECLARE @BedNum INT, @Leave bit, @Sleep bit, @WardCode VarChar(10), @BayCode VarChar(10) SET @WardCode = 'W20' SET @BayCode = 'W20_B1' SELECT IB.* FROM ImsBed IB LEFT JOIN BedClosure IBC ON IBC.WardCode = IB.WardCode AND IBC.BayCode =...
  8. agentwalker

    asp and active x dll's

    just having a play with these and got a problem i'm not sure how to fix. i've create two Active X dll's (below) This in Component Services is listed as "myApps.Names" and the method as you can see is DisplayNames() Code: Function displayName() As String Dim myName As String myName =...

Part and Inventory Search

Back
Top