Bug with change case

S

scotty321

Does anybody know how to report a bug to Microsoft, regarding Microsoft
Office 2004?

Here's the bug that is driving our clients batty, who use Microsoft
Word to handle their transcription business:

When you hit command-option-C to "change case", Microsoft Word toggles
through all the different cases -- EXCEPT IT SKIPS OVER sentence case
unless you have highlighted an ending punctuation mark. Many times,
there isn't an ending punctuation mark at all -- the sentence might
have a hyphen at the end of it, for example. But we still want
Microsoft Word to turn the highlighted words into "sentence case"
(where only the first word is capitalized). Microsoft Word shouldn't
be "guessing" whether a group of highlighted words is a sentence or
not, simply based on the final punctuation... comand-option-C should
just cycle through all the different case options available to us.

Can I report this anywhere?

Thanks,
Scott
 
R

Rebecca Harriss [MSFT]

Does anybody know how to report a bug to Microsoft, regarding Microsoft
Office 2004?

Here's the bug that is driving our clients batty, who use Microsoft
Word to handle their transcription business:

When you hit command-option-C to "change case", Microsoft Word toggles
through all the different cases -- EXCEPT IT SKIPS OVER sentence case
unless you have highlighted an ending punctuation mark. Many times,
there isn't an ending punctuation mark at all -- the sentence might
have a hyphen at the end of it, for example. But we still want
Microsoft Word to turn the highlighted words into "sentence case"
(where only the first word is capitalized). Microsoft Word shouldn't
be "guessing" whether a group of highlighted words is a sentence or
not, simply based on the final punctuation... comand-option-C should
just cycle through all the different case options available to us.

Can I report this anywhere?

Thanks,
Scott

Thanks for the report. I¹ll pass this along to the Word team.

Thanks,
Rebecca
Rebecca Harriss
Microsoft Corporation
Macintosh Business Unit, Entourage Test

This posting is provided ³AS IS² with no warranties, and confers no rights.
 
J

John McGhie [MVP - Word and Word Macintosh]

Hi Scotty:

Two problems:

1) The following macro will produce Sentence Case. Install it in the
Normal template and assign it to Command + Option + C.

Sub SentCase()
'
' SentCase Macro
' Macro recorded 5 October 2005 by John McGhie
'
Selection.Range.Case = wdTitleSentence
End Sub

2) Sentence case is not available in Word if the selected text is not
recognised as a sentence by Word. That's the *real* problem: even if
sentence case were available, it would do nothing. Most users of Word would
prefer it that way :)

The following change to the macro will do what you want, but you need to
warn your users that they need to be accurate with their selection :)

Sub SentCase()
'
' SentCase Macro
' Macro recorded 5 October 2005 by John McGhie
'

Selection.Characters(1).Case = wdUpperCase

End Sub

Cheers


Does anybody know how to report a bug to Microsoft, regarding Microsoft
Office 2004?

Here's the bug that is driving our clients batty, who use Microsoft
Word to handle their transcription business:

When you hit command-option-C to "change case", Microsoft Word toggles
through all the different cases -- EXCEPT IT SKIPS OVER sentence case
unless you have highlighted an ending punctuation mark. Many times,
there isn't an ending punctuation mark at all -- the sentence might
have a hyphen at the end of it, for example. But we still want
Microsoft Word to turn the highlighted words into "sentence case"
(where only the first word is capitalized). Microsoft Word shouldn't
be "guessing" whether a group of highlighted words is a sentence or
not, simply based on the final punctuation... comand-option-C should
just cycle through all the different case options available to us.

Can I report this anywhere?

Thanks,
Scott

--

Please reply to the newsgroup to maintain the thread. Please do not email
me unless I ask you to.

John McGhie <[email protected]>
Microsoft MVP, Word and Word for Macintosh. Consultant Technical Writer
Sydney, Australia +61 4 1209 1410
 
A

Alexander Ljubimov

Does anybody know how to report a bug to Microsoft, regarding Microsoft
Office 2004?

Here's the bug that is driving our clients batty, who use Microsoft
Word to handle their transcription business:

When you hit command-option-C to "change case", Microsoft Word toggles
through all the different cases -- EXCEPT IT SKIPS OVER sentence case
unless you have highlighted an ending punctuation mark. Many times,
there isn't an ending punctuation mark at all -- the sentence might
have a hyphen at the end of it, for example. But we still want
Microsoft Word to turn the highlighted words into "sentence case"
(where only the first word is capitalized). Microsoft Word shouldn't
be "guessing" whether a group of highlighted words is a sentence or
not, simply based on the final punctuation... comand-option-C should
just cycle through all the different case options available to us.

Can I report this anywhere?

Thanks,
Scott
I have the same question about contacting MS Office team and a
workaround. Just customize your toolbar through Tools menu and add
"change case" to it. I then click on it after highlighting what I want
to change and get all possible options. Click again and it will be done.
Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top