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: *

  • Users: Torp23
  • Content: Threads
  • Order by date
  1. Torp23

    ReDim an Array

    Simplest thing and can't get it to work. This doesn't work: WhilePrintingRecords; numbervar PlanCounter; Global numbervar array PlanTotalArray; Redim PlanTotalArray[PlanCounter]; This DOES work (but of course the project won't work this way): WhilePrintingRecords...
  2. Torp23

    Getting rid of nulls in a view result statement

    I have a view that contains nulls in a column when there is no data. I am calling the view from an ASP page with a select statement and a where clause that specifies the selection of records that match a text string. The query returns all the records that match the string, but also all nulls...
  3. Torp23

    'LIKE' search in XSL

    I have an XSL file that filters a recordset to send back to the calling code. The page works fine, but I can't get it to do a 'LIKE' search or 'wildcard' search. Here is the active line that I am trying to change: <xsl:for-each select=&quot;root/pd_peopleview[@fname=($fname)]&quot;> I am...
  4. Torp23

    Filling options in a drop-down box

    I am trying to fill a combo (drop-down) box based on a XML 'data island' in my ASP page. All the examples that I find use an XML format where all the fields of the record are seperate elements in the data island, but I am pulling this recordset from SQL2000 with the &quot;...FOR XML&quot...
  5. Torp23

    DOM and SQL2000

    My goal is to read an XML file that is created from SQL2000 into a DOM I am reading the XML and XSL files into seperate DOM objects as follows: Set source = Server.CreateObject(&quot;MSXML2.DOMDocument&quot;) source.async = false source.load(xmlurl) Once the DOM objects are defined they...
  6. Torp23

    loading an XML file from SQL2000

    Why can't I substitute an XML file being produced from SQL2000 for one that is hard-coded? I used the 'EXPLICIT' function to make sure all the items are elements and I ran it in a browser by itself so that I am sure the format matches the hard-coded file exactly. But when I run the ASP page to...
  7. Torp23

    Applying XSD to an XML file

    I have an XML file that is generated from SQL2000 that works just fine, but I need the output of that file to show each item as an element instead of as an attribute of the main element which is the default. I have been trying to apply an XSD schema that I have developed (based off a text book...
  8. Torp23

    Doesn't work on some machines

    I am developing a new intranet page in XML for our company and as I walk around to the other workstations in the IT Dept to test some of it, I am finding that 2 of the 6 computers I have tried it doesn't come up. One computer gave me a &quot;you are not authorized to view...&quot; error and the...
  9. Torp23

    Caché ODBC driver

    We have a computer running a Caché database on the VMS operating system and need to access this database from another machine with SQL Server 2000 running on it. Does anyone know of a driver to allow this access into Caché? Scott Schuman Medical Associates Menomonee Falls, WI
  10. Torp23

    Inconsistant ODBC connection

    I have an ASP page that calls an ODBC DSN (to a MS Access 2000 database) to create a connection object to use in the code. On the development machine, this code always works, but on my production server it does not always work. Sometimes it will run the code without error and other times it...
  11. Torp23

    Inconsistant ODBC connection

    I have an ASP page that calls an ODBC DSN (to a MS Access 2000 database) to create a connection object to use in the code. On the development machine, this code always works, but on my production server it does not always work. Sometimes it will run the code without error and other times it...
  12. Torp23

    Inconsistant ODBC connection

    I have an ASP page that calls an ODBC DSN (to a MS Access 2000 database) to create a connection object to use in the code. On the development machine, this code always works, but on my production server it does not always work. Sometimes it will run the code without error and other times it...
  13. Torp23

    Setup of Internet mail

    I have Exchange 5.5 w/ SP4 and am trying to set up internet mail service and when clicking &quot;next>&quot; on the screen that asks for the name of the exchange server I get the error message: &quot;Internet Mail Service require the DNS domain name to be configured on <server name>&quot;. I...
  14. Torp23

    Automating emails through Exchange 5.5

    I am an MCP and need some advice/direction. I am trying to add an email service to my web site where members will receive email confirmation of their registration and periodic bulletins, etc... I am a VB 6 programmer and will be doing this in COM objects and I have Exchange 5.5 w/SP2 running on...
  15. Torp23

    Automated email through Exchange 5.5

    I am an MCP and need some advice/direction. I am trying to add an email service to my web site where members will receive email confirmation of their registration and periodic bulletins, etc... I am a VB 6 programmer and will be doing this in COM objects and I have Exchange 5.5 w/SP2 running on...
  16. Torp23

    Programming an email service

    I am an MCP and need some advice/direction. I am trying to add an email service to my web site where members will receive email confirmation of their registration and periodic bulletins, etc... I am a VB 6 programmer and will be doing this in COM objects and I have Exchange 5.5 w/SP2 running on...
  17. Torp23

    Configuring mail

    I bought a URL (from buydomains.com), bought a static IP address from an ISP, and installed Exchange 5.5 and IIS 4 on an NT4 server and updated with SPs to the highest ones I could find (although Exchange 5.5 might need a newer one). I already have a working web site off of my IIS installation...
  18. Torp23

    Configuring mail

    I bought a URL (from buydomains.com), bought a static IP address from an ISP, and installed Exchange 5.5 and IIS 4 on an NT4 server and updated with SPs to the highest ones I could find (although Exchange 5.5 might need a newer one). I already have a working web site off of my IIS installation...

Part and Inventory Search

Back
Top