Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In a specific application I have (in xl2003) - I need to always have the
Tools, Options, Comments set to Comment & Indicator. Ordinarily, this setting as set (default) to Comment Indicator Only. What is the best method for insuring this setting is ON during the time my application is open and running and is Set to OFF (that is Comment Indicator Only) when exiting from my app? For now any comments are RESTRICTED to only one sheet named "WorkingReport" (w/o the ""'s, of course). Thanks in advance for your assitance... |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Right-click the sheet tab of WorkingReport, select "View Code" and paste the code below into the
window that appears. HTH, Bernie MS Excel MVP Private Sub Worksheet_Activate() Application.DisplayCommentIndicator = xlCommentAndIndicator End Sub Private Sub Worksheet_Deactivate() Application.DisplayCommentIndicator = xlCommentIndicatorOnly End Sub "JMay" wrote in message ... In a specific application I have (in xl2003) - I need to always have the Tools, Options, Comments set to Comment & Indicator. Ordinarily, this setting as set (default) to Comment Indicator Only. What is the best method for insuring this setting is ON during the time my application is open and running and is Set to OFF (that is Comment Indicator Only) when exiting from my app? For now any comments are RESTRICTED to only one sheet named "WorkingReport" (w/o the ""'s, of course). Thanks in advance for your assitance... |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
And if you don't want to change a user's default setting:
Public DCI As XlCommentDisplayMode Private Sub Worksheet_Activate() DCI = Application.DisplayCommentIndicator Application.DisplayCommentIndicator = xlCommentAndIndicator End Sub Private Sub Worksheet_Deactivate() Application.DisplayCommentIndicator = DCI End Sub HTH, Bernie MS Excel MVP "JMay" wrote in message ... In a specific application I have (in xl2003) - I need to always have the Tools, Options, Comments set to Comment & Indicator. Ordinarily, this setting as set (default) to Comment Indicator Only. What is the best method for insuring this setting is ON during the time my application is open and running and is Set to OFF (that is Comment Indicator Only) when exiting from my app? For now any comments are RESTRICTED to only one sheet named "WorkingReport" (w/o the ""'s, of course). Thanks in advance for your assitance... |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Right-click the sheet tab of WorkingReport, select "View Code" and paste the code below into the
window that appears. HTH, Bernie MS Excel MVP Private Sub Worksheet_Activate() Application.DisplayCommentIndicator = xlCommentAndIndicator End Sub Private Sub Worksheet_Deactivate() Application.DisplayCommentIndicator = xlCommentIndicatorOnly End Sub "JMay" wrote in message ... In a specific application I have (in xl2003) - I need to always have the Tools, Options, Comments set to Comment & Indicator. Ordinarily, this setting as set (default) to Comment Indicator Only. What is the best method for insuring this setting is ON during the time my application is open and running and is Set to OFF (that is Comment Indicator Only) when exiting from my app? For now any comments are RESTRICTED to only one sheet named "WorkingReport" (w/o the ""'s, of course). Thanks in advance for your assitance... |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
And if you don't want to change a user's default setting:
Public DCI As XlCommentDisplayMode Private Sub Worksheet_Activate() DCI = Application.DisplayCommentIndicator Application.DisplayCommentIndicator = xlCommentAndIndicator End Sub Private Sub Worksheet_Deactivate() Application.DisplayCommentIndicator = DCI End Sub HTH, Bernie MS Excel MVP "JMay" wrote in message ... In a specific application I have (in xl2003) - I need to always have the Tools, Options, Comments set to Comment & Indicator. Ordinarily, this setting as set (default) to Comment Indicator Only. What is the best method for insuring this setting is ON during the time my application is open and running and is Set to OFF (that is Comment Indicator Only) when exiting from my app? For now any comments are RESTRICTED to only one sheet named "WorkingReport" (w/o the ""'s, of course). Thanks in advance for your assitance... |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Send data from userform to specific cell on specific sheet? | Excel Programming | |||
Link from a specific Cell in Excel to a specific para. in Word | Excel Worksheet Functions | |||
Form a circle (ie. color specific cells) given specific radius | Excel Programming | |||
Highlight a row if a specific cell is specific numbers/words | Excel Worksheet Functions | |||
How do I make a cell date specific to input a value on a specific. | Excel Discussion (Misc queries) |