Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 91
Default F11 Crashes Excel

In the spreadsheet I'm developing the F11 key is causing concern,
especially if pressed. (Or, when someone presses it...!)

You either get (after Excel struggles a bit) -

Excel cannot complete this task with available resources. Choose less
data or close other applications.

Or the much worse -

Microsoft Excel has encountered a problem and needs to
close. We are sorry for the inconvenience.

This happens on every computer (tested = 4), not just mine.

I've no idea what F11 is meant to do - but can it be disabled?

Thanks - Kirk

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27
Default F11 Crashes Excel

Hi Kirk;
Sounds like you need to make sure all of the Office Updates have been
applied to your computer. A lot of times applying the patches will fix
problems like this one.

Thanks,

"kirkm" wrote:

In the spreadsheet I'm developing the F11 key is causing concern,
especially if pressed. (Or, when someone presses it...!)

You either get (after Excel struggles a bit) -

Excel cannot complete this task with available resources. Choose less
data or close other applications.

Or the much worse -

Microsoft Excel has encountered a problem and needs to
close. We are sorry for the inconvenience.

This happens on every computer (tested = 4), not just mine.

I've no idea what F11 is meant to do - but can it be disabled?

Thanks - Kirk


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default F11 Crashes Excel

F11 is going to try to build a chart for you.

If you have a giant selection--or a single cell in a giant used worksheet, it
can take quite awhile to build that chart.

Maybe you can kill F11 with a macro in your personal.xls workbook:

Option Explicit
Sub disableF11()
Application.OnKey "{f11}", ""
End Sub

This would toggle it back to normal.

Sub enableF11()
Application.OnKey "{f11}"
End Sub

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

kirkm wrote:

In the spreadsheet I'm developing the F11 key is causing concern,
especially if pressed. (Or, when someone presses it...!)

You either get (after Excel struggles a bit) -

Excel cannot complete this task with available resources. Choose less
data or close other applications.

Or the much worse -

Microsoft Excel has encountered a problem and needs to
close. We are sorry for the inconvenience.

This happens on every computer (tested = 4), not just mine.

I've no idea what F11 is meant to do - but can it be disabled?

Thanks - Kirk


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 200 crashes Jeremy Ricketts Excel Discussion (Misc queries) 1 September 24th 06 07:49 PM
Excel Crashes on me Andrew Excel Discussion (Misc queries) 5 August 31st 06 01:28 PM
Excel XP Crashes Jeff Pines Excel Discussion (Misc queries) 6 February 14th 06 05:50 PM
Excel Crashes Hezingen Excel Discussion (Misc queries) 0 December 5th 05 03:47 PM
Excel 97 crashes Tom Excel Programming 1 June 20th 04 10:15 PM


All times are GMT +1. The time now is 06:55 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"