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 strongm 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. Johnnie100

    VB COM+ CreateObject takes 37 seconds ?!

    We are having a problem with a COM+ component(written in VB) whereby when you log on to a client, the first instantiation of the object on the COM+ server is taking 37 seconds. If the application is closed and reloaded, all subsequent CreateObject calls only take 2 seconds. What is happening...
  2. Johnnie100

    IIS5 Basic Authentication

    I am using basic authentication on my IIS5 MI intranet site to: (i) authenticate the user (ii) obtain their windows Login which is used to link to the user's application specific ID Users from the site's default domain are able successfully enter the site on submission of valid credentials...
  3. Johnnie100

    Server.Createobject Failure

    I am writing web-based reporting which uses ASP pages calling an ActiveX dll written in VB6, running on a Win2K Advanced Server platform. The application has been running fine for about a month until the back end of last week when it suddently started throwing the error below everytime the ASP...
  4. Johnnie100

    ActiveX Component In IE4

    Hi. I created a custom ocx in VB6 to be executed by client-side script to read a registry setting on a client running IE4 (SP2). The ocx is apartment threaded and I used the MS Package and Deployment wizard to create a cab-based installation package that will be downloaded from the server. I...
  5. Johnnie100

    Registry Key Value On Remote PC

    Hi, I am writing a web reporting application to be used in a multi-site intranet environment. Each site has it's own data and the application needs to inspect a registry entry on the client PC to determine the correct data repository. Does anyone know of a reliable way of reading the registry on...
  6. Johnnie100

    CR Viewer - incorrect bar chart display in asp crystal 8 application

    Sorry all. I have now identified my error which was due to a subtle difference in data values passed to the ASP version
  7. Johnnie100

    CR Viewer - incorrect bar chart display in asp crystal 8 application

    Hello, I am trying to populate a CR8 bar chart report which uses an ADO recordset. I am using identical code in VB and ASP to generate the recordset and call the report. When called from VB version of the application we have multiple bars on the graph and it looks to populate correctly. When...
  8. Johnnie100

    Web browser control - gifs in VB form

    Hello, We are have some gifs that we'd like displaying in a VB form. There are two ways that I know of displaying a gif in a VB form: 1. run them through an AVI converter, but we've tried this and it seems to distort the colours of the gifs - does anyone know of any great AVI converters out...
  9. Johnnie100

    Animated Gif in VB

    Does anyone know how to get an animated gif on a vb form to animate Thanks in advance
  10. Johnnie100

    Smiley face icons

    I am writing an amendment to a VB application and am displaying the customer waiting times - what I'd also like to do is give an indication through a smiley face icon (or something similar) of the amount of time a customer has been waiting. i.e. 1. customer waiting less than 10 seconds -...
  11. Johnnie100

    Connecting to database

    I have followed your advice and written the query to the HTML page but it looks fine. I have also taken the query from the HTML page, copied it into an SQL window and ran the query, again this is fine. It is something perculiar about connecting to the recordset using: adoRsWebCrawler.Open...
  12. Johnnie100

    Connecting to database

    I am trying to connect to a database and return a recordset using the following code: dim ReturnCount 'Define db connection variables dim adoConn dim sConn dim strQuery dim adoRsWebCrawler 'Create connection object set adoConn =server.CreateObject("ADODB.Connection") 'Create...
  13. Johnnie100

    Error handling in ASP

    I've got a class in ASP and instantiate an object with it. Within the class is no error handling as yet. I understand that VBScript error handling is similar to that in VB - I have tried using the same sort of error handling but am getting a syntax error. Any help would be gratefully...
  14. Johnnie100

    server.scripttimeout on a webcrawler

    Yeah but isn't there a maximum value one can put in for the server.ScriptTimeout?
  15. Johnnie100

    select case statement

    I am using the select case statement and moved some code over from a VB app to an ASP class and the select case statement seems to operate differently - giving me a run time error for the statement below - can I code something similar in VBScript? I have looked on the net and in various books...
  16. Johnnie100

    server.scripttimeout on a webcrawler

    Hello and help, I keep getting a server.ScriptTimeout when I pass information to an ASP page. The ASP page is a webcrawler that obviously takes longer to execute than the default of 90 seconds. I want the ASP script to run for over an hour once the starting information has been received from...
  17. Johnnie100

    Read in a URL as string - Webcrawler

    Hello and help, I am building a webcrawler and have written it in VBScript/ASP but when I come to run it a get a server.ScriptTimeout error - I have increased the time but feel that perhaps ASP is the wrong development environment in which to code - do you agree or is there a way around this...
  18. Johnnie100

    How can I search for " in a string using the InStr function

    Hello and help, I have some records that are separated by a ", when I try and search for this character in ASP it seems to bring back different results than when I use it in VB. The code I am using to find the location of the quotation mark is: ll = InStr(sl + 6, MainStr...
  19. Johnnie100

    Passing variables from an instantiated class to an ASP page

    I am writing an ASP page and am using a class I developed in VB (easier to debug when manipulating text strings), are there any tips out there in general when using a class developed in VB to be transferred into ASP? The main point I'm writing about however, is I am trying to use a public...
  20. Johnnie100

    Pop a VB application to front of screen

    Hello, I am writing a new telephony application and need it to pop to the front of the users screen whenever a new call appears, for forms within a vb app we could use the z order function but how does one achieve this on an application, rather than a form, level? Any help or pointers greatly...

Part and Inventory Search

Back
Top