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 SkipVought 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. kevink

    Creating a namespace for use with <msxsl:script>

    Can I anyone point me in the right direction for creating namespaces? I'm using msxml3.dll - and want to embed a script into the XSLT stylesheet. The SDK says to use <msxsl:script> for this - but you need to create your own namespace for this ... which begs the question, how do I create a...
  2. kevink

    Error: No such interface supported

    Has anyone seen this error before when trying to use CreateRecordset? CreateRecordset error '80004002' No such interface supported It runs fine on WinNT 4.0 SP6a, but gives the above error on Win2K, SP2. It the last part of an index server search. Thanks Kevin
  3. kevink

    Accessing Index Server from a COM object

    I'm trying to write a COM object that will return the results from an index server search. The search works fine from ASP, but when I put it into the COM object, I get a &quot;Type Mismatch&quot; error. -------------- Public Function myData (ByRef varData As Variant) As Variant Redim...
  4. kevink

    Type Mismatch when using COM component

    Thanks John, That was one of my errors - I've got a few simple COM objects working with arrays now. I still have a problem with my main one - that of using Index Server within a COM object. Using Index Server from the ASP page works fine - put the function into a COM component and I'm back...
  5. kevink

    Type Mismatch when using COM component

    I have a component which opens a db connection and returns the recordset as an array.  When the function is in the ASP page directly, everything works fine,  however when the function is compiled as COM object, I get a &quot;Type mistmatch&quot; error when I try and assign the results to an...
  6. kevink

    Joining three form fields (request.form) to insert into one SQL field

    Hi Sarah, If I follow the question correctly, you can just join the strings together: E.g. myDate = request.form(&quot;day&quot;) & &quot;/&quot; & request.form(&quot;month&quot;) & &quot;/&quot; request.form(&quot;year&quot;) Just don't forget that VBSCript and Access generally stores the...
  7. kevink

    Drop down menu

    Try enclosing the option value in single quotes i.e. response.write &quot;<option value='&quot; & rs(0) & &quot;'>&quot; & rs(0) & &quot;</option>&quot; If that doesn't work, then try using server.URLEncode to encode the option value: response.write &quot;<option value='&quot; &...
  8. kevink

    Any good books for ADO and VB6?

    Can anyone recommend a good book for ADO and VB6 please? Anything in the intermediate/advanced category would be great. I've read &quot;Beginning Visual Basic 6 Database Programming ~ John Connell&quot;, but that only contains a few chapters on ADO and I would like some more information. TIA...
  9. kevink

    ASP non-starter - HELP!

    Definitely need to see some code, but your code should look like this: 'open recordset - objRS Do until objRS.EOF ''Loop until the end of recordset 'Do your stuff objRS.movenext 'move to the next record Loop HTH, Kevin
  10. kevink

    CTRL + F12 opens Netscape

    When I press CTRL + F12 under Win Me. it opens up Netscape Navigator. Is there any way I can change or disable this? TIA Kevin
  11. kevink

    Maximum number of records in Access 2K

    Does anyone know what is the maximum number of records that Access 2000 can handle in a single table? Or where I can find the information? I've searched the Microsoft MSDN site to no avail. TIA, Kevin
  12. kevink

    Downloading a database automatically

    I would like to write a COM object that would dial up (via a modem) to my server at a set time every day and download a database (using VB6 on Win 98/NT/2000). Can anyone give me pointers on how to do this? Or even any books which would help? I've written COM object before - its just the...
  13. kevink

    Log shutdown/start up in Win 98

    Is there any way to capture a shutdown event in Win 98? I want to log when the computer is started/shutdown. TIA Kevin
  14. kevink

    PHP vs ASP

    In my opinion there is no real difference between PHP and ASP - depends which platform you want to develop for. PHP is cheaper and easier to learn if you come from a C background, ASP can be written in JScript or VBScript (easy if you come from a VB background). Incidentally, Jscript seems to...
  15. kevink

    request.form problem

    Have you tried Response.Write Request.Form(&quot;qty&quot; &amp; j) HTH
  16. kevink

    Tracking links and logging to CSV file

    I have a password protected on my site from which authorised users can download software updates etc. I would now like to track what each user downloads - e.g. when &quot;user 1&quot; downloads &quot;file a&quot;, then this is written to a CSV file. How can I do this each time a user clicks on...
  17. kevink

    Tracking links and logging to CSV file

    I have a password protected on my site from which authorised users can download software updates etc. I would now like to track what each user downloads - e.g. when &quot;user 1&quot; downloads &quot;file a&quot;, then this is written to a CSV file. How can I do this each time a user clicks on...
  18. kevink

    Problems Using SQL &quot;LIKE&quot;

    Hmm .. it won't work unless the search phrase is exactly the same as the record entry .... Have you tried other ideas - like creating drop down lists which are exactly the record entry etc., or does it have to be a search form? If it has to be a seach form, then the only way I can think off is...
  19. kevink

    Problems Using SQL &quot;LIKE&quot;

    Try objRS.Filter = &quot;journal like &quot; & &quot;'%&quot; & &quot;journal&quot; & &quot;%'&quot; HTH, Kevin
  20. kevink

    Send email and messages using a form

    DO you have CDONTS or ASPMail on the server? You will need some mail object installed to send email. The rest is easy: 'example code for ASPMail Set Mailer = Server.CreateObject(&quot;SMTPsvg.Mailer&quot;) Mailer.FromName = request.form(&quot;name&quot;) Mailer.FromAddress=...

Part and Inventory Search

Back
Top