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

    Problem with silent install on x86 VMs (x64 are OK)

    Hello I'm trying to do silent install on an x86 VM with the following commands: net use G: "\\cristienas\Uranus\Windows\x86\NetWorker Clients\Version 7.6 SP3\networkr" /user:STROUD\<user> <password> "G:\setup.exe" /s /v"/qn /L*v """%TEMP%\networker_install.log""" The log shows failure: MSI (s)...
  2. richardii

    vbscript for copying file runs indefinitely

    I have some vbscript for copying a file - it works fine when I double-click it. However, if I try to put it under control of the Scheduled Tasks (in Windows 2000) - the task runs indefinitely (and is never successful). I've tried recoding the vbscript (as a shell call and using .CopyFile). Same...
  3. richardii

    TSQL batch separator

    I'm generating some TSQL from the Enterprise Manager and being warned that I have GO set as my TSQL batch separator. I can't change it though (the option is greyed out). I tried changing it in SQL Query Analyzer (no effect). How can I change the TSQL batch separator? Or can I 'repair' my TSQL...
  4. richardii

    Find using Reg Exp

    I'm using this code to find a string in a file. It works fine as long as the file is NOT a large binary file!! Unfortunately that's exactly what I want to look in. Any ideas what the problem might be/solution. Thanks in anticipation. Option Explicit Dim objRegExpr Dim FSO, TF, inp Dim...
  5. richardii

    Show table being processed

    Please could anyone tell me how I can show the table that's currently being processed in the loop below. I'm trying to use a pop up form to show the name of the table being linked - only the pop up only gets the focus after the loop's done. Thanks. Private Sub Command0_Click() 'now do the...
  6. richardii

    Query executes twice!

    I'm using the function below to link data from an Oracle database into access. I run it as an expression in a query based on a table that contains all the table names: Expr:imp_data([TABLE_NAME]) Function imp_data(cField) DoCmd.TransferDatabase acLink, &quot;ODBC&quot...
  7. richardii

    Please find attached some code I'd

    Please find attached some code I'd like to process. What I need to do is to add the value of Width to Left, so in this case the first instance of Left becomes 216+1024. Then I need to output the file (this part I can do!) I'm finding this a bit tricky as I think I need getline to do it, and I...
  8. richardii

    GAWK problem with reading file

    I've written a very simple gawk script that extracts error names and numbers from stored procedure *.bdy files. It works fine. However, we also have some errors in the *.spc files (Type = PKCS #7 Certificates). However I cannot make awk open these spc files. I get the message: C:\API\GAWK.EXE...
  9. richardii

    system restore

    I'm having trouble restoring my system which is &quot;blue screening&quot;. I don't know which software was responsible, and I'm happy to go back to very early states. However, when I go into safe mode and use System Resore it is prompting me saying &quot;Cannot locate Drive D:.&quot;, all the...
  10. richardii

    MCSHIELD error and slow processing

    Please don't groan!!! I receive the following error when running Framemaker after the PC has slowed down dramatically: &quot;MCSHIELD.exe has generated errors and will be closed by Windows. You will need to restart the program An Error log is being created&quot;. Virusscan shuts itself down...
  11. richardii

    Two character record seperator

    I have a text file that I want to process using RS =&quot;);&quot; Problem is that the file has &quot;)&quot; in as well, and awk is recognising &quot;)&quot; as the RS, as well as &quot;);&quot; How can I get round this? Thanks.
  12. richardii

    Runtime error

    We have a standard ASP page (with some java script for drop down menus). I can't really post it as it's for internal consumption. Before we upgraded to the latest IE (after the Nimda virus), it would say Error on page, but open fine. Now it throws up this dialog: A runtime error has occurred do...
  13. richardii

    systime() in GAWK

    I don't seem to have these two functions: systime() strftime([format [, timestamp]]) My version of gawk.exe is dated 29 May 2001, 13:16:50. If I use an earlier version these functions work, but other things don't! I suspect I need to do more than just download the exe from the intranet - can...
  14. richardii

    Lock file created when code runs in Access 2000

    I've been trying to use the following to control Access 2000 on opening my database. It works for Procedure = &quot;Hide&quot;, but as soon as I change it to Procedure = &quot;Minimize&quot;, it works once, and then create a lock file that I can't delete. I cannot then open the database again...
  15. richardii

    Number of records return &quot;type mismatch&quot;

    I have a function (below) that I've used to determine the number of records. However, when I try it at my new place of work it returns a type mismatch at line: Set rst = dbs.OpenRecordset(cTable, dbOpenSnapshot) I tried setting the references to include Microsoft DAO 3.6 Object Library - still...
  16. richardii

    Access 2000/Oracle ODBC Error

    I have set up an ODBC link to an Oracle database (8i). I receive the message: The width of a UNICODE text column must be an even number of bytes when querying data from GENEVAPRS. I've tried setting the Force Retrieval of Long columns flag in ODBC (for the Oracle driver). The registry entry...
  17. richardii

    Access 2000/Oracle ODBC Error

    I have set up an ODBC link to an Oracle database. I receive the message: &quot;The width of a UNICODE text column must be an even number of bytes&quot; when querying data from a table. Ive tried setting the Force Retrieval of Long columns flag in ODBC (for the Oracle driver). The registry...
  18. richardii

    Access 2000/Oracle ODBC Error

    I have set up an ODBC link to an Oracle database. I receive the message: &quot;The width of a UNICODE text column must be an even number of bytes&quot; when querying data from a table. Ive tried setting the Force Retrieval of Long columns flag in ODBC (for the Oracle driver). The registry...
  19. richardii

    Access 2000/Oracle ODBC Error

    I have set up an ODBC link to an Oracle database. I receive the message: &quot;The width of a UNICODE text column must be an even number of bytes&quot; when querying data from a table. Ive tried setting the Force Retrieval of Long columns flag in ODBC (for the Oracle driver). The registry...
  20. richardii

    Edit Date Stamps on files

    Does anyone know how to edit the DateCreated, DateModified, DateAccessed properties of files (in bulk, as I have 1000s of HTM files to change). There are a couple of utilities I can find like AFile Attributes. Do I take it from the existance of these, that it's not that simple - I tried vbscript...

Part and Inventory Search

Back
Top