Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Word error message:insufficient memory  (Read 24051 times)

0 Members and 1 Guest are viewing this topic.

BC_Programmer


    Mastermind
  • Typing is no substitute for thinking.
  • Thanked: 1140
    • Yes
    • Yes
    • BC-Programming.com
  • Certifications: List
  • Computer: Specs
  • Experience: Beginner
  • OS: Windows 11
Re: Word error message:insufficient memory
« Reply #15 on: June 25, 2008, 12:58:04 PM »
I cannot do a Scandisk or Defrag.

Are we talking about Memory or Disk space? Because a save operation, surprisingly, requires free space on the disk.
I was trying to dereference Null Pointers before it was cool.

denisaf

    Topic Starter


    Hopeful

    Re: Word error message:insufficient memory
    « Reply #16 on: June 25, 2008, 04:27:19 PM »
    There is no problem with disk space. memory is supposedly the problem, according to the error messages.
    quote author=denisaf link=topic=59876.msg378484#msg378484 date=1214199692]
    SYSTEM PROPERTIES Performance tab says 192.0 MB of RAM
    Windows manages Virtual Memory
    disk C:\ 74.5 GB with 14.5 GB used

    [/quote]
    Virtual memory is set to 'Let windows manage my virtual memory settings'

    I have also had this memory problem when trying to run some DOS Basic application programs

    RegCure
    XoftSpySE
    Ad-AwareSE are installed

    Broni


      Mastermind
    • Kraków my love :)
    • Thanked: 614
      • Computer Help Forum
    • Computer: Specs
    • Experience: Experienced
    • OS: Windows 8
    Re: Word error message:insufficient memory
    « Reply #17 on: June 25, 2008, 06:53:20 PM »
    Try setting virtual memory to fixed number: 384MB. Set min, and max to the same number.

    BTW, BC_Programmer...good question, and another example of M$ not even understanding a difference between hard drive space, and RAM. I've seen some M$ errors, complaining about low memory, and the solution ended up with low disk space.

    denisaf

      Topic Starter


      Hopeful

      Re: Word error message:insufficient memory
      « Reply #18 on: June 25, 2008, 07:25:38 PM »
      Disk space is clearly not a problem on this PC. I did have that problem on my previous PC some years ago. I have set virtual memory min max to 384 MB. I notice the tab had hard disk c:\-4199 MB free. Is that indicative of the problem? After rebooting with the new virtual memory settings, I tried a ScanDisk and got the usual error message about not enough available memory.

      Broni


        Mastermind
      • Kraków my love :)
      • Thanked: 614
        • Computer Help Forum
      • Computer: Specs
      • Experience: Experienced
      • OS: Windows 8
      Re: Word error message:insufficient memory
      « Reply #19 on: June 25, 2008, 07:58:31 PM »
      You say:
      Quote
      disk C:\ 74.5 GB with 14.5 GB used
      then:
      Quote
      I notice the tab had hard disk c:\-4199 MB free
      Which one is it?
      Open My Computer, right click on C, and click "Properties". What does it say?

      denisaf

        Topic Starter


        Hopeful

        Re: Word error message:insufficient memory
        « Reply #20 on: June 25, 2008, 08:20:50 PM »
        Properties gives the figures in the first quote, which conflicts with the figures in the second quote. I have no idea where the second figure comes from. The people who provided me with this PC copied all the files from the old PC onto this one. Is it possible that Windows is looking at the file relating to the small disk on the old PC rather than the much larger disk on the current PC.  There was a normal.dot file for both the current PC and from the old PC.

        Broni


          Mastermind
        • Kraków my love :)
        • Thanked: 614
          • Computer Help Forum
        • Computer: Specs
        • Experience: Experienced
        • OS: Windows 8
        Re: Word error message:insufficient memory
        « Reply #21 on: June 25, 2008, 08:22:40 PM »
        Quote
        I have no idea where the second figure comes from
        Where can you see it?

        denisaf

          Topic Starter


          Hopeful

          Re: Word error message:insufficient memory
          « Reply #22 on: June 25, 2008, 08:31:42 PM »
          System Properties box Performance tab click Virtual memory Hard disk window reads
          C:\ -4088MB Free

          denisaf

            Topic Starter


            Hopeful

            Re: Word error message:insufficient memory
            « Reply #23 on: June 26, 2008, 03:43:21 AM »
            I have another PC with windows 98SE. I went through the same routine with that one and got the Hard Disk window message 'C:\ 6117 MB Free'. This seems to confirm that PC1 is accessing the wrong file to find out what the free memory is.

            Broni


              Mastermind
            • Kraków my love :)
            • Thanked: 614
              • Computer Help Forum
            • Computer: Specs
            • Experience: Experienced
            • OS: Windows 8
            Re: Word error message:insufficient memory
            « Reply #24 on: June 26, 2008, 05:13:13 PM »
            What Word version is it? All updates applied?

            denisaf

              Topic Starter


              Hopeful

              Re: Word error message:insufficient memory
              « Reply #25 on: June 26, 2008, 05:29:44 PM »
              It is Word 2000. I recently reinstalled Office 2000 after a file corruption made Word inoperable. I have looked at what folders are in old-c (the set of files copied from the disk of the old PC). It has Office and Windows folders. Is it possible that files in these old folders are being use instead of in the current ones? Should I send the old Windows to the recycle bin?

              Broni


                Mastermind
              • Kraków my love :)
              • Thanked: 614
                • Computer Help Forum
              • Computer: Specs
              • Experience: Experienced
              • OS: Windows 8
              Re: Word error message:insufficient memory
              « Reply #26 on: June 26, 2008, 06:48:07 PM »
              Possible. Get rid of those folders.
              After that, you may reinstall Office again. This time, remember to manually remove Office folder, before reinstalling it again.

              BC_Programmer


                Mastermind
              • Typing is no substitute for thinking.
              • Thanked: 1140
                • Yes
                • Yes
                • BC-Programming.com
              • Certifications: List
              • Computer: Specs
              • Experience: Beginner
              • OS: Windows 11
              Re: Word error message:insufficient memory
              « Reply #27 on: June 26, 2008, 09:54:13 PM »
              the reason the two free space calculations are different is because the "correct" one is using the GetDiskFreeSpaceEx function, which returns a 64-bit value. for some reason the other one is calling GetDiskFreeSpace, which is a single  32-bit value, when used on a drive that contains too much free space, the first bit (the sign bit) is set, and the entire upper 32-bits of the value is lost. Thus the negative and the seemingly unrelated number afterwards.


              I just figured it might be disk space because that would prevent defrag from running, and would lead to problems saving files.


              It is Word 2000. I recently reinstalled Office 2000 after a file corruption made Word inoperable. I have looked at what folders are in old-c (the set of files copied from the disk of the old PC). It has Office and Windows folders. Is it possible that files in these old folders are being use instead of in the current ones? Should I send the old Windows to the recycle bin?

              If at some point you accidentally started one of the office applications from the executable on that disk, it might have rewritten some registry settings to point to it's new location on the old C drive (now D: or some other letter I'm guessing? or a separate folder on your current C:?

              This seems to be a problem "deeper" then office... especially when scandisk and defrag won't run, but give Broni's suggestion a shot. who knows?

              I was trying to dereference Null Pointers before it was cool.

              denisaf

                Topic Starter


                Hopeful

                Re: Word error message:insufficient memory
                « Reply #28 on: June 29, 2008, 05:39:25 PM »
                I removed Windows and Office from the old-c folder and then rebooted. The Hard disk box in Virtual Memory tab gave c:\-3666MB Free. I noted that the figure was slightly different. My Computer says c: has 60.3GB free. I tried a DiskScan and got the usual error message of not enough free memory. I have had this problem for years when I was not using Office so it seems that the operational Windows has been corrupted by having the old Windows. 

                denisaf

                  Topic Starter


                  Hopeful

                  Re: Word error message:insufficient memory
                  « Reply #29 on: June 29, 2008, 08:29:53 PM »
                  There is one other point I should mention in relation to the long term problem. I have been unable to manually organize a ScanDisk for years (as I have mentioned) but it did not worry me too much because on occasions the PC froze and I have to do an unusual Windows shutdown. This was recognized in the reboot by automatically doing a Scandisk.