Word stops woking on exit

 

For some reason my Word stopped working. (Word 2007 on Windows 7 RC)

If I try to exit it would blow up. If I clicked on a Word documentit wouldn’t open it. And if I did manage to open a document by doing File Open,but I try to highlight something to change, it would highlight.

Looking on the Net I found someone who had the answer:

1. Open up Regedit

2. In Regedit navigate toHKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Word\Data

3. Right mouse click on the "Data" folder anddelete it.

4. Open up Word, close it.

 

What I did instead is rename the folder to Data.save in caseI needed, but I didn’t need it.

Now Word is happy again.

So how did my Word get messed up? I believe Outlook had a problem with aplug in while starting. Since I use Word as the default editor within Outlook,Word also crashed. Maybe that’s what cause the entry in the registry to becorrupt.

 

Currently rated 5.0 by 1 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Speeding up your Windows start up

OK, so we all know that one way to speed up your start up is not to have so many programs that fire up when you log in to your computer. However, when you look at what is starting up you decide that you rather just wait the extra time because the stuff that is there you need or you rather keep there.

Yesterday I found a work around to this problem. A little piece of software called Startup Delayer. With it you can keep all those programs but delay when they start. You can serialize their start up so that they won’t all take precious resources at your start up.

Have a look at it. Let me know how it works for you.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Word 2007 crashes on exit

For the longest time I had this problem with MS Word 2007 crashing when exiting.

I did what I thought were the normal things. The first thing is I removed all the templates. That didn’t work. Then of course, I uninstalled it and reinstalled it. That didn’t work either. I finally found the solution to my problem. It was a corrupt registry entry. I found the solution here.

If you have a similar problem I would suggest that you first start with the templates since templates are usually the cause of this type of problems.

In Word 2007 to find the template directory do the following:

1)      Click the Microsoft Office Button (Big round button on the top left corner)

2)      Click Word Options. You will find all the way at the bottom of the dialog (next to the Exit Word)

3)      On the next dialog that opens, click on Advance from the left hand side navigation.

4)      On the right hand side scrolled all the way to the bottom. You will see a section titled “General” which is the second to last section.

5)      Click on the “File Locations…” button. You will see where your templates are located.

6)      Close Word and either rename the templates in the directory(ies) or copy them to a different location

7)      Now restart Word and see if that fixes your problem.

If your problem is not fixed, then try the URL above for the registry entry fix.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Master Ski Racing


Masters Introductory Video from USSA Alpine Masters on Vimeo.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Firefox 3 RC1

I’ve been testing Firefox 3 Release Candidate 1 today. To make sure it wouldn’t overwrite my existing installation of Firefox 2, I installed the portable edition which can be downloaded from here.

Firefox 3 is all that you have probably read already. It is much faster than 2.0. It has some nice new features which make it a more usable browser and it has some nice security features which should make your browsing experience safer.

The features I like the best on the new Firefox are the redesign memory management and the faster execution of JavaScript. By their nature, Web 2.0 websites relied heavily on JavaScript. So these website perform incredibly better in Firefox 3. As many of you know, I created PhotoPoints. I’m in the process of slowly recoding PhotoPoints and make it a Web 2.0 site. So I was looking forward to Firefox 3 and see how the new site will perform. It makes a huge difference.

Currently rated 4.0 by 2 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Barry White and Pavarotti - My first, my last, my everything

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

What happens when the FindControl() doesn’t work?

While working in SharepPoint I needed, from an UserControl in my WebPart, find a control in the page. Of course, I tried, different level at which to apply the FindControl(). The first thing I tried was this.Parent.Page.FindControl(“controlID”). That didn’t work. Then I tried different permutations. Finally I gave up with the FindControl and decided that I would do it the old fashion way. I’ll walk the tree. Here is some sample code how to do that.

 

Control PViewer = null;               

                foreach (Control Ctrl in this.Parent.Page.Controls)

                {

                    PViewer = FindMyControl(Ctrl,”MyControlID”);

                    if (PViewer != null)

                    {

                        break;

                    }

                }

 

private Control FindMyControl (Control ctrl, string controlID)

        {

            Control Ret = null;

            foreach (Control Ctrl in ctrl.Controls)

            {

               

                if (Ctrl.ID != null && Ctrl.ID.ToLower() == controlID.ToLower())               

                {                   

                    Ret = Ctrl;

                    break;

                }

                else

                {

                    Ret = FindMyControl (Ctrl,controlID);

                    if (Ret != null)

                    {

                        break;

                    }

                }

            }

            return Ret;

        }

 

Of course if you examine the code you will notice that I’m walking the tree recursively calling the FindMyControl method over and over again until I find the control I’m looking for.

Don’t forget the test for null in the if (Ctrl.ID != null && Ctrl.ID.ToLower() == controlID.ToLower()) statement. Of course make sure the test for null comes first. J

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

12 days of Christmas - Enjoy

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

There Just Won't Be a Christmas This Year

A friend of mine wrote this song and Catherine Smitko sings it.

Audio will begin 42 seconds into the video

Consider supporting our troops. Only $0.99 you will be supporting the Intrepid Fallen Heroes fund.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Aksel Lund Svindal - World Cup season might end early

 

It looks as if Aksel Svindal is out for the season. This was a horrific accident. I wish him well.

Mr. Svindal is one of the most talented racers in the circuit. It is always a joy to watch him race.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5