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 dencom 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. calgarychinese

    How to include XML in XML file?

    Hi there I guess this question has been asked to death - so here I bring it up again..... I have this XML page and right now there is an <about> tag that contains information the page name and copyright information. However the copyright information contains something like 1998-2006 and so...
  2. calgarychinese

    Debug with Microsoft Development Environment

    Hi there Before I was able to use Microsoft Devleopment Environment to debug my asp code. I did that by going to Microsoft Development Environment 6.0, go to Debug menu -> Processes, and will see inetinfo.exe and then I can attach it. But lately, (and I don't know if it's got anything to do...
  3. calgarychinese

    Debug with Microsoft Development Environment

    Hi there Before I was able to use Microsoft Devleopment Environment to debug my asp code. I did that by going to Microsoft Development Environment 6.0, go to Debug menu -> Processes, and will see inetinfo.exe and then I can attach it. But lately, (and I don't know if it's got anything to do...
  4. calgarychinese

    Norton internet security with VPN?

    Hi there I've always had been connecting to the company's VPN from home. Yesterday it worked fine. Last night I installed the NOrton Internet Security and Norton Anti Virus. This morning when I tried the VPN I got Error 800: unable to establish the vpn connection. Does it sound like the...
  5. calgarychinese

    can't create new txt file

    Hi there Used to be able to right click in the windows explorer, and then select New, and then the Notepad will come up so I can create a blank .txt file. It's all of a sudden missing.... Does anyone know how I can add the Notepad back to the context menu? Thanks (If my question is unclear...
  6. calgarychinese

    what version of IIS am I running?

    Hi there What is the way to find out what version of IIS am I running? Today I came across this page http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/55051d7c-d65b-451e-96e5-3ee5d49e3022.mspx?mfr=true and I'm worried because for the application that I'm writing to...
  7. calgarychinese

    What to do with RDS?

    Hi there I got this application (big one, like 150 asp pages or so) that I'm maintaining now and that has been in production for a long time. What worries me the most is the technology it uses. It uses client side RDS which Microsoft has since stopped supporting. So the application is fine...
  8. calgarychinese

    ASP method to generate CDDB DiscID?

    Hi there I have downloaded the DiscIDCalc program from CDDB. I've used it a lot because I've written my own application for my CD collections (keeping track of the track information of each CD, track duration etc). I've already got all my CDs into the application, I'm now just going through each...
  9. calgarychinese

    About window.dialogArguments

    Hi there If I'm in a page and am trying to call a modal window dialog, I'll pass in some parameters. Now I do in javascript the following: var objParam = new Object(); objParam.argParam1 = "A"; objParam.argParam2 = "B"; And in the modal window I process it like this in vbscript: dim a, b a =...
  10. calgarychinese

    Datafld Bound control problem

    Hi there I have a table on my asp page that is bound to SQL Server. The table is like this <tbody> <tr> <td><div id="column1" datafld="EmployeeID" </div></td> <td><div id="column2" datafld="LastName" </div></td> <td><div id="column3" datafld="FirstName" </div></td> <td><div id="column4"...
  11. calgarychinese

    Conditional where...?

    Hi there I'm trying to generate a report. User will give a date as a filter. There are 2 tables to consider, A and B. Both contain a date field against which the user-provided date is checked. I want to do it so if the record for an employee is found in B, then use the B's date field as the...
  12. calgarychinese

    Another question about SetTimeOut

    If I have a code like the following: line 1 line 2 line 3 call window.SetTimeOut("MyFunction()", 1000) line 4 line 5 line 6 Am I correct that while the system will wait 1000msec before executing MyFunction, lines 4 to 6 won't wait? I hope to actually delay lines 4 to 6 as well, but they're...
  13. calgarychinese

    SetTimeOut

    Hi there I have a function I need to delay, so normally I would do call SetTimeOut(MyFunction(), 100) to delay it. However MyFunction returns a value that I need. I don't know how to trap it..... Any help? Thanks

Part and Inventory Search

Back
Top