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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by inutelinside

  1. inutelinside

    Microsoft IE ActiveX issue

    By the way, here's where I found the fix http://capitalhead.com/articles/activating-activex-controls.aspx
  2. inutelinside

    SQL Databases in Server

    Hello Y'all, How do you query all the database names in a particular server? Thanks.
  3. inutelinside

    Microsoft IE ActiveX issue

    Thanks man. I was able to work around on it via javascript. // Insert <script type="text/javascript" src="iefix.js"></script> // just below the last object of the page. objects = document.getElementsByTagName("object"); for (var i = 0; i < objects.length; i++) { objects[i].outerHTML =...
  4. inutelinside

    Microsoft IE ActiveX issue

    I think you all heard about the ActiveX related patch issue where you have to click on the object before it gets activated. Is there a work around for this for ASP classic? I have googled for these: http://msdn.microsoft.com/library/?url=/workshop/author/dhtml/overview/activating_activex.asp...
  5. inutelinside

    stored procedure error

    Hello, Temporarily disabling the count fixed the problem. CREATE PROCEDURE dbo.sp_requestsReport_KCNET @start_period datetime, @end_period datetime, @team varchar(50) AS DECLARE @soldby_name varchar(3500) DECLARE @request_id varchar(10) DECLARE @Temp_soldby_combined_tbl TABLE( request_id...
  6. inutelinside

    sql server 2000 sp4 web component not working

    Hello, Our SQL server admins upgraded our SQL to SP4 running in Windows 2000 SP3. Now, one of our component service is not working. My questions are as follows: 1. Does upgrading to SP4 reset the configurations of the SQL server to default settings? 2. The component service I mentioned...
  7. inutelinside

    stored procedure error

    TrackingID=57AA9699433C2F47 6056.SD_ICBAM V1.0.90.CDatabaseSvc.ExecuteQueryEx.0> error '80040e7b' Cannot change the ActiveConnection property of a Recordset object which has a Command object as its source. vsSQLStatement=sp_erwinReport_KTNET /researchtrackingtool/erwinReport.asp, line 243 What...
  8. inutelinside

    Unable to retrieve Request.QueryString

    I learned that when the Encoding is UTF-7 the error occurs. It solved some issues of some of our clients by using Windows European (ISO) but for some the error still subsists. What are other causes of this error?
  9. inutelinside

    How to add trusted sites in internet explorer via batch file

    Hello, I wish to add certain trusted sites to my Internet Explorer browser via batch file in the security settings. How do you do this? If you know a certain source on how to create batch files please include them thanks.
  10. inutelinside

    default html encoding

    What is default html encoding of Internet Explorer 6.0? Additional Info: Windows XP SP2
  11. inutelinside

    Unable to retrieve Request.QueryString

    Pax et Bonum! I have an ASP application and I have a problem regarding QueryString. Consider the following scenario: This the URL that links mypage1 to mypage2 http://www.myweb.com/mypage2.asp?sourceID=120 (Note: The querystring is hard-coded in the ASP) In mypage2 I use Dim strsourceID...
  12. inutelinside

    HTTP Error: 404

    Hello, We have an ASP application. We are getting the HTTP Error: 404 File intermittently. How to fix and prevent this. Thanks. Related info: Windows is 2000 SP3 IIS 5
  13. inutelinside

    HTTP Error: 404

    Hello, We have an ASP application. We are getting the HTTP Error: 404 File intermittently. How to fix and prevent this. Thanks. Related info: Windows is 2000 SP3 IIS 5
  14. inutelinside

    Download from FTP through ASP

    Is it possible to programmatically download all files from a FTP site that has user id and password through ASP Classic? Can you guys show me how... Thanks
  15. inutelinside

    Stored Procedure calling

    any alternatives? other approach?

Part and Inventory Search

Back
Top