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: ChrisQuick
  • Content: Threads
  • Order by date
  1. ChrisQuick

    Returning an error code on WScript.Quit

    I have an asp page that uses WSH to run a vbs file named "main.vbs". This in turn runs additional vbs files including one named "groups.vbs". I am trying to get the "groups.vbs" to return an error code on exit back to the main and display it, but the response...
  2. ChrisQuick

    Problem Running WSh from ASP Page

    am trying to run a vbs file from an ASP page. The line with the .Run throws the error "Permission Denied" Here is the code: Set objWshShell = Server.CreateObject("WScript.Shell") strWshCommand = "d:\vbs\main.vbs 0 " & intUserId Response.Write strWshCommand...
  3. ChrisQuick

    Dynamically defined sound with ASP??

    I am looking for advice, code samples and or components capable of building a sound only movie on the fly in ASP. The sound files are currently in MS wave format. cquick@callingpost.com Geographic Information System (GIS), ASP, some Oracle
  4. ChrisQuick

    Problem generating SQL Scripts

    I have a bunch of stored procedures in a database call it ABC. When I hightlight one or more stored procedure names in ABC and right-click and go to Generate SQL scripts from it I get the error: "csquick is not a valid user in database "XYZ". I am not trying to script anything...
  5. ChrisQuick

    writeln in NS 6 causes problem

    I am opening a window and using writeln to write some frame tags. Then I reference the first frame and try to write to it. Problem: This works fine in IE 5.0, and 5.5. It also works in netscape 4.76 BUT blows up in NS 6.1. Here is the error: Win1.document has no properties line 172. Code...
  6. ChrisQuick

    Problem with SP and TEXT Column Type

    I have a table in SQL Server 7. One of the fields is a type Text so we can store strings larger than 8000 characters. We are using a stored procedure to insert new records: The SP: CREATE PROCEDURE dbo.ENS_InsertNewScenarioWithMap ( @UserID int, @NewScenarioName varchar(50)...
  7. ChrisQuick

    Click and Drag a DHTML Circle?

    Has anyone seen or heard of a DHTML effect for defining a Circle via a Click (to set the center point) and Drag (to set the radius). I've found a few DHTML examples for spinning images around the mouse cursors but that have not been able to adapt them. cquick@callingpost.com Geographic...
  8. ChrisQuick

    Click and Drag a DHTML Circle?????

    Has anyone seen or heard of a DHTML effect for defining a Circle via a Click (to set the center point) and Drag (to set the radius). I've found a few DHTML examples for spinning images around the mouse cursors but that have not been able to adapt them. cquick@callingpost.com Geographic...
  9. ChrisQuick

    Set Expiration Date for JS files

    Is there a way to set an expiration date for js files?? cquick@callingpost.com Geographic Information System (GIS), ASP, some Oracle
  10. ChrisQuick

    FileSystemObject on Windows 2K

    I have the following code for reading a textfile line by line and replacing each double quote with two, and then writing the new line to a new file. <% Option Explicit Response.Buffer = True Response.Expires = 0 Response.ExpiresAbsolute = Now() - 1 Response.CacheControl =...
  11. ChrisQuick

    Reg Expresion to parse XML??

    I have an application that is returning database information as XML. For example: <FIELDS NAME=&quot;SMITH&quot; ADDRESS=&quot;123 SOME ST&quot;/> <FIELDS NAME=&quot;JONES&quot; ADDRESS=&quot;778 SOMEOTHER RD&quot;/> I am trying to write a javascript function that will pull all of the Address...
  12. ChrisQuick

    Connect SQl Server 2000 to 7.0

    Hi, I have a new machine running SQl Server 2000. We have an existing database running on SQl Server 7. I know it *should* be possible to connect from 2000 to 7. Can anyone give me some suggestions, and how to information? cquick@geotg.com Geographic Information System (GIS), ASP, some Oracle
  13. ChrisQuick

    I have a procedure in SQL Server 2

    I have a procedure in SQL Server 2000 written to support on Online Complaint Tracking program. The procedure runs OK in SQL Query Analyzer, but when used with ADO in ASP, produces the error: [Microsoft][ODBC SQL Server Driver][SQL Server]String or binary data would be truncated. -2147217833...
  14. ChrisQuick

    SQL Server 2000 trigger problem

    I have a collection of tables used for an online discussion forum. We have 3 tables: SupportForums - List of Forums. SupportForumTopics - List of Messages, by forum. SupportForumsReplies - List of Message replies by Forum & Topic. I have the following trigger on the table...
  15. ChrisQuick

    Help with SQL Server 2000 Stored Procedure

    I have a stored procedure I am working on for an online support database. I want to use a Stored Procedure in SQL Server 2000 to add the Profile and Contact information of a customer at the same time. I have two tables: Contacts, UserProfile. The primary key in Contacts (contact_id) is an...
  16. ChrisQuick

    Make SQL 2000 case sensative

    Hi: I've just spent the better part of two days creating a SQL Server 2000 database only to discover that it does not appear to be case sensative when checking equality in character columns. Is there any way to retroactively make the database case sensative? cquick@geotg.com Geographic...
  17. ChrisQuick

    Installation Problems with 4.5

    We installed Cold Fusion Server 4.5 on a Windows NT 4.0 Server running IIS 4.0 and JRun 2.3.3. Every effort to access the Administrator or the &quot;Test Your ColdFusion Installation&quot; failed with a: Error 500 - Internal Server Error when trying to browse ColdFusion files. We tried...
  18. ChrisQuick

    Open New Window in NS 6.01 Issue

    I am opening a new window with this code: Win1 = window.open(&quot;&quot;,&quot;QueryWindow&quot;,&quot;width=575,height=120,scrollbars=yes,resizable=yes&quot;); For some reason, NS 6.01 is ignoring the scrollbars=yes attribute.. Any thoughts? cquick@geotg.com Geographic Information System...
  19. ChrisQuick

    Problem with New Window in NS 6

    I am opening a new window with this code: Win1 = window.open(&quot;&quot;,&quot;QueryWindow&quot;,&quot;width=575,height=120,scrollbars=yes,resizable=yes&quot;); For some reason, NS 6 is ignoring the scrollbars=yes attribute.. Any thoughts? cquick@geotg.com Geographic Information System (GIS)...
  20. ChrisQuick

    Array Sorting?

    Assuming that have an array with last name, age and city for 3 people in this order: 'SMITH','30','ATLANTA' 'JONES','28','LAS VEGAS' 'ADAMS','40',''ORLANDO' and I wanted to sort based on the city name, how would I do this? Would it be possible to write a function to sort an array using the...

Part and Inventory Search

Back
Top