Skip to main content

Powerpoint crashes on Bootcamp running on MAC

If you are using Windows on a MAC using Bootcamp, you will not be able to use Microsoft's powerpoint. Whenevr you type anything into powerpoint it will crash.The fix is easy:
1- In control Panel, invoke "Regions and Languages", and select Keyboards and Languages Tab.



2- Press the "Change Keyboards" button.
3- Press the Add Button
4- Scroll down to English and check the "US" checkbox.

5- Press OK, Press OK again.

You are all set. Now you an use powerpoint fine. Enjoy your MAC.

Comments

Popular posts from this blog

Wave Undo

To implement Undo, the simplest way is to use a MemoryStream object in your WaveDisplayForm (MDI Child) and simply serialize the Wave (which should be marked as [Serializable] to the stream and hold on to the stream object. private MemoryStream _undoStream = new MemoryStream(); private bool _canUndo = false; public void SaveForUndo() {      BinaryFormatter bf = new BinaryFormatter();      bf.Serialize(_undoStream, wave);      _undoStream.Flush();      // This rewinds the stream so that when it is used for deserialization, it's ready to use,     // otherwise, the deserialization will start deserializing from the end of the stream and would fail.      _undoStream.Position = 0;      _canUndo = true; }   public void Undo() {      BinaryFormatter bf = new BinaryFormatter();      ...