Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This preps the file as desired:
Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub Where would I find the syntax to disengage the F9 key too? Thank you, Arturo |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Look at excel vba help for the onkey function.
-- Regards, Tom Ogilvy "Arturo" wrote in message ... This preps the file as desired: Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub Where would I find the syntax to disengage the F9 key too? Thank you, Arturo |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you once again Tom...
Sub testOFF() Application.OnKey "{F9}", "" End Sub Sub testON() Application.OnKey "{F9}" End Sub "Tom Ogilvy" wrote: Look at excel vba help for the onkey function. -- Regards, Tom Ogilvy "Arturo" wrote in message ... This preps the file as desired: Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub Where would I find the syntax to disengage the F9 key too? Thank you, Arturo |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hey thr,
where do you invoked testOFF/ON from?? i've somethin like below Private Sub Workbook_Open() MsgBox "open" Application.OnKey "{~}", "EnterKey" End Sub Sub EnterKey() MsgBox "enter key" Call ActiveCell.Offset(ActiveSheet.Target.Row + 1, ActiveSheet.Target.Column) End Sub in the above code, enterkey is not being invoked. where should the application.onKey assignment be done. appreciate your inputs. thanks "Arturo" wrote: Thank you once again Tom... Sub testOFF() Application.OnKey "{F9}", "" End Sub Sub testON() Application.OnKey "{F9}" End Sub "Tom Ogilvy" wrote: Look at excel vba help for the onkey function. -- Regards, Tom Ogilvy "Arturo" wrote in message ... This preps the file as desired: Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub Where would I find the syntax to disengage the F9 key too? Thank you, Arturo |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
but where from testOFF/testON are invoked??
"Arturo" wrote: Thank you once again Tom... Sub testOFF() Application.OnKey "{F9}", "" End Sub Sub testON() Application.OnKey "{F9}" End Sub "Tom Ogilvy" wrote: Look at excel vba help for the onkey function. -- Regards, Tom Ogilvy "Arturo" wrote in message ... This preps the file as desired: Private Sub Workbook_Open() Application.Calculation = xlCalculationManual End Sub Where would I find the syntax to disengage the F9 key too? Thank you, Arturo |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Disengage function that prompts same entry from other cell | Excel Discussion (Misc queries) | |||
How to use workbook_open()? | Excel Programming | |||
Workbook_Open | Excel Programming | |||
Workbook_Open | Excel Programming | |||
Help with Workbook_Open | Excel Programming |