Help With Help.

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

Hi,

Wow, thanks for the quick responses to my question yesterday. Now I have
a new problem. When I reinstalled Excel after my hard disk crash, something
went wrong with the Help files. When I press F1 for help, a white window
pops up, like it's supposed to, but then it freezes. Doesn't go any further.
When I close it, another window pops up saying, `Program is not responding
....'

Sometimes I can get to help by highlighting a word and pressing F1, but
then the font in the window is twice as big as it used to be, and the file
doesn't seem complete. This is true of both Excel Help file and VBA help
files.

Right now, I'm specifically trying to find proper syntax for the
capitalize function. I thought this would work:

Worksheets(1).Cells(2, 2) = vbProperCase(Worksheets(1).Cells(2, 2)

but it doesn't.

Any idea what's going on??

Sam
 
Hi Sam,

don't know about help.

Sub Test5555()
Dim sTmp As String
sTmp = Worksheets(1).Cells(1, 1).Value
sTmp = StrConv(sTmp, vbProperCase)
Worksheets(1).Cells(1, 1).Value = sTmp
End Sub

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
 
Be cdarefull with this one Helmut.

Will change any formulas to values.

This won't.....................

Sub Test5555()
Dim sTmp As String
sTmp = Worksheets(1).Cells(1, 1).Formula
sTmp = StrConv(sTmp, vbProperCase)
Worksheets(1).Cells(1, 1).Formula = sTmp
End Sub


Gord Dibben MS Excel MVP
 
Hi Gord,

always learning.

Thank you.

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
 

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

Back
Top