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!

Recent content by vecjjk

  1. vecjjk

    How to make all tables "read only"?

    Thanks to all of you for your help. Kilot's solution seemed to work very well for what I need, and was quick and easy. I'm sure that Liz's solution would work too, but there is one table that I need to leave updateable, so I can't lock the entire directory (neglected to mention that in my...
  2. vecjjk

    How to make all tables "read only"?

    We are in the process of replacing our Paradox database with something else. There are no plans to convert the data into the new system, so our users will still need access to the data in Paradox for historical purposes. Management is concerned that if we leave the application "as is", the...
  3. vecjjk

    INSERT INTO stumper...

    I believe that "user" is a reserved word in SQL.
  4. vecjjk

    Changing my XP hard drive

    wolluf, I got this working again by first installing the Windows Installer CleanUp Utility then using it to "clean up" Word. Then I reinstalled like you suggested, and it worked ! Here is the link to the Microsoft support page for the Windows Installing CleanUp Utility...
  5. vecjjk

    Changing my XP hard drive

    My location is c:\Program Files\Microsoft Office\Office10. It does have WINWORD.EXE in there, and the icon looks correct. However, double clicking it produces the same error. From within Word, I ran Help / Detect and Repair, selected "restore my shortcuts while repairing", but did not...
  6. vecjjk

    Changing my XP hard drive

    I used the sofware that came with the new hard drive to "clone" the old one, and everything was good, except that Microsoft Word brings up an error when I try to open it: 'An error occurred and this feature is no longer functioning properly. Please run Setup and select "Repair..." to restore...
  7. vecjjk

    Inclusion operator in SQL???

    Regarding the plus sign way, you just put the plus sign on the key from the table that might be missing the record. In your example, it would be: SELECT d.Child_ID, D1."Date", d2.Goal_ID, d2."Hour", d2.Score, d."Last_Name"+", "+d."First_Name"+" - "+d.Child_ID as SName FROM "Children.db" d...
  8. vecjjk

    Inclusion operator in SQL???

    I believe it is a plus sign within parenthesis (+)
  9. vecjjk

    formatted external IO error

    Maybe the code is trying to read past the end of the file? Does the READ statement have an END= clause on it?
  10. vecjjk

    Subroutine Arguments

    Talyrond, I think that parameter is a return label. Inside the subroutine, you should see a RETURN statement, but you should also see a RETURN 1 statement. The RETURN 1 statement tells the calling routine to jump to the label passed in for that last parameter upon return from the...
  11. vecjjk

    sysInfo question

    Thanks Lance. I'll give this a try.
  12. vecjjk

    sysInfo question

    I'm seeing a strange problem when using the sysInfo procedure. I have a user with a very long username (16 characters). My application logs each user as they start the application, documenting various items from sysInfo, one of which is the userName. When this guy logs in though, the value...
  13. vecjjk

    Make the computer thinking ... seems to be

    I'm not sure if this will work, but try writing the backspace character using the CHAR function, like write(*,'(a1,a)',advance='NO') '\',CHAR(8) (I think 8 is the correct value for backspace, but you may want to double check).
  14. vecjjk

    reading until end of file

    As I indicated above, I had the wrong keyword. It should be END.
  15. vecjjk

    Seemingly unfixable problem with Access application

    Pete, I pretty much had this same issue with a Paradox application. You might check out Microsoft articles Q299603 and Q272582. We ended up changing the OpLocksDisabled value in the registry under the key HKEY_LOCAL_MACHINE\System\CCS\Services\Mrxsmb\Parameters to "0x1" as Q299603...

Part and Inventory Search

Back
Top