Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
Sam Sam is offline
external usenet poster
 
Posts: 5
Default Help With Help.

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


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 163
Default Help With Help.

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"
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Help With Help.

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

On Fri, 25 May 2007 22:38:39 +0200, Helmut Weber
wrote:

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


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 163
Default Help With Help.

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"


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Help With Help.

Sam, sometimes when I don't get what I am looking for from the VBA or Excel
help files, I just go to Google and type in something like Proper Case VBA.
Here is one of the sites that came up for me.

http://msdn2.microsoft.com/en-us/lib...ffice.10).aspx

A lot of times there is better information on the net than in the help files.

"Sam" wrote:

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





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



All times are GMT +1. The time now is 11:12 PM.

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

About Us

"It's about Microsoft Excel"