D
Dave Neve
Hello
Helmet gave me some code as usual and I have managed to create a second
macro from the original to handle characters instead of words (one small
step for man, one gaint leap for nevekind)
The macro is a follows
_____________________________________________
Sub GOL()
' GOL Macro (Go one letter)
' Macro créée le 11/02/2006 par Dave Neve
'
Dim l As Long
Application.ScreenUpdating = False
ActiveWindow.View.ShowHiddenText = True
l = 1
With Selection.Cells(1).Range
While .Characters(l).Font.Hidden = False
l = l + 1
Wend
.Characters(l).Font.Hidden = False
End With
ActiveWindow.View.ShowHiddenText = False
Application.ScreenUpdating = True
End Sub
_____________________________________________________________________________________________
The problems comes when I reach the end of the last word but don't
necessarily know as I can't remember how many words are in the cell.
I click on the macro again and nothing happens, probably cos there is a
space character.
But the next click is 'fatal'.
There is an error that the 'collection object'(not sure of exact term in
English) can't be found and worse still, this seems to trigger Word to
activate 'show masked text' in the whole table which I then have to untick
manually.
Can anyone help please?
Thanks
Helmet gave me some code as usual and I have managed to create a second
macro from the original to handle characters instead of words (one small
step for man, one gaint leap for nevekind)
The macro is a follows
_____________________________________________
Sub GOL()
' GOL Macro (Go one letter)
' Macro créée le 11/02/2006 par Dave Neve
'
Dim l As Long
Application.ScreenUpdating = False
ActiveWindow.View.ShowHiddenText = True
l = 1
With Selection.Cells(1).Range
While .Characters(l).Font.Hidden = False
l = l + 1
Wend
.Characters(l).Font.Hidden = False
End With
ActiveWindow.View.ShowHiddenText = False
Application.ScreenUpdating = True
End Sub
_____________________________________________________________________________________________
The problems comes when I reach the end of the last word but don't
necessarily know as I can't remember how many words are in the cell.
I click on the macro again and nothing happens, probably cos there is a
space character.
But the next click is 'fatal'.
There is an error that the 'collection object'(not sure of exact term in
English) can't be found and worse still, this seems to trigger Word to
activate 'show masked text' in the whole table which I then have to untick
manually.
Can anyone help please?
Thanks