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

    Saving a Word Document in Access 97 Using Visual Basic

    I am trying to store Word Document Objects into Access 97 ole object fields using Visual Basic. If I try to store the document object in the appropriate field in the normal way, such as: rcsDoc.AddNew rcsDoc("Document") = msWord 'where msWord is a Word...
  2. nazzaro

    Using Visual Basic to save Word Document in Access 97

    I am trying to store Word Document Objects into Access 97 ole object fields using Visual Basic. If I try to store the document object in the appropriate field in the normal way, such as: rcsDoc.AddNew rcsDoc("Document") = msWord 'where msWord is a Word...
  3. nazzaro

    Response.ContentType="application/msword"

    Has anyone had experience using: <% ResponseContentType=&quot;application/msword&quot; %> to send msword content from asp pages? I'm trying to figure out a way to &quot;send&quot; the proper document template (.dot file) so it gets attached to the document opened in Word by the client. So...
  4. nazzaro

    SQL_DRIVER_NOPROMPT

    Is there any way to cause IIS 4.0 to default to using SQL_DRIVER_NOPROMPT for all ODBC connection strings (not just when a connection string is specified in code)? The situation is: IIS 4.0 on one server (Web Server) Access97 database on another server (Access Database Server) Sql Server 7 on...
  5. nazzaro

    SQL_DRIVER_NOPROMPT

    Is there any way to cause IIS 4.0 to default to using SQL_DRIVER_NOPROMPT for all ODBC connection strings (not just when a connection string is specified in code)? The situation is: IIS 4.0 on one server (Web Server) Access97 database on another server (Access Database Server) Sql Server 7 on...
  6. nazzaro

    Error connecting to access tables &quot;linked&quot; to sql server tables

    When calling asp pages that connect to data in an Access97 database with tables linked to a Sql Server 7.0 database, the following error is raised: Error #=80004005 Description = [Microsoft][ODBC Microsoft Access Driver] ODBC--connection to 'CEMDPS' failed. Source = Microsoft OLE DB Provider...
  7. nazzaro

    Table/Field Descriptions, Formats Upsizing Access to Sql Server

    Those of you with experience upsizing Access 97 to Sql Server 7.0 and linking tables to Access 97: Is there a way to retain the Table and Field descriptions and &quot;special&quot; formats (like &quot;mm/dd/yyyy&quot;, etc.) so that they appear in Access 97 (as linked to Sql Server) the way...
  8. nazzaro

    Regular Expression Question

    Is there a relatively simple way to find out the position in a string where a VbScript &quot;Regular Expression&quot; first fails? I'm using a regular expression to test an entire string, with parentheses set to &quot;capture&quot; submatch info for several substrings. The problem is that the...
  9. nazzaro

    Use of FileSystemObject TextStream

    I'm having trouble using the following VbScript (example straight from MS VbScript site): Set fso = CreateObject(&quot;Scripting.FileSystemObject&quot;) Set MyFile = fso.OpenTextFile(&quot;c:\upload\testfile.txt&quot;, ForWriting, True) MyFile.WriteLine &quot;Hello world!&quot...
  10. nazzaro

    Only General Asp Debugging Message Being Sent!!! Help!!!

    &quot;Sudddenly&quot; (no apparent changes to any configuration stuff) our IIS 4.0 has stopped sending detailed asp debugging info and started sending the general error message only! The configuration shows that the &quot;Send detailed asp debugging information&quot; radio button is selected on...
  11. nazzaro

    TextArea value property question

    I'm using an asp to fill a textarea html element &quot;dynamically&quot;, that is, I'm filling it as the server completes calculations so the user can follow the progress (I use response.flush to send Javascript to the client periodically to update the 'value' property of the textarea). Problem...
  12. nazzaro

    Access97 Field Format From Schema?

    I have an Asp application that displays basic info about a chosen database (Table names, types and descriptions) and basic info about the fields in a chosen table (Field name, type, size, format and description) I get the field Formats (i.e. &quot;mm/dd/yyyy&quot; for date types) from the...
  13. nazzaro

    Detecting changes to data in Access tables

    Is there any way (other than designing additional tables/fields) to detect the last date/time data in an Access97 table was changed?<br><br>The MSysObjects table contains a &quot;LastUpdated&quot; field, but that applies only to the last time the table DESIGN was changed?<br><br>Am I stuck here...
  14. nazzaro

    Reliable response.flush?

    It seems that there are many situations in which &quot;response.flush&quot; does not cause the buffered content to be immediately displayed (due to the way the browser handles the content, probably).<br><br>Does anyone know what the specifics are of when a browser will/will not display the...
  15. nazzaro

    Equvalent of SetTimeout for server-side?

    I am trying to impliment the equivalent of SetTimeout to execute a function on a timed interval, server-side.<br><br>Specifically, rather than include code in individual loops, I would like to check every second or so to see if the client is still connected, something like (which doesn't...
  16. nazzaro

    Slow serving of ASPs from DEC Alpha IIS

    Serving ASPs from a DEC Alpha running WindowsNT Server 4.0 running IIS 4.0 is about 3 times slower than serving same from X86 computer running WindowsNT Workstation 4.0 running Personal Web Server.<br><br>Also, after serving a couple of scripts from Alpha, web service seems to...

Part and Inventory Search

Back
Top