Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.tables
JoAnn Paules [MVP] JoAnn Paules [MVP] is offline
external usenet poster
 
Posts: 2,113
Default How to stop cursor flicker in Word?

Oh yeah. It's been up in the 90's for the last two weeks without much of a
break. It's 6:38 pm now and it's still in the high 80's/low 90's. I take it
you're feeling the heat also?

--

JoAnn Paules
MVP Microsoft [Publisher]




"Jean-Guy Marcil" NoSpam@LeaveMeAlone wrote in message
...
JoAnn Paules [MVP] was telling us:
JoAnn Paules [MVP] nous racontait que :

I see that you got it fixed but wouldn't you rather have a flickering
cursor than a cursing flicker? ;-)

(Sorry)


Is the sun beating down hard in your area as well? ;-)

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
ISTOO
Word MVP site:
http://www.word.mvps.org



  #2   Report Post  
Posted to microsoft.public.word.tables
George Riley George Riley is offline
external usenet poster
 
Posts: 6
Default How to stop cursor flicker in Word?

Sad to say it did not after all, solve the problem. It certainly made it
better in that it lasts a shorter time. It's still happening tho'. Any other
ideas?

Here's hope for cooler weather all round. (77oF at 12:20 AM thank goodness)
Thanks,
George

"JoAnn Paules [MVP]" wrote:

Oh yeah. It's been up in the 90's for the last two weeks without much of a
break. It's 6:38 pm now and it's still in the high 80's/low 90's. I take it
you're feeling the heat also?

--

JoAnn Paules
MVP Microsoft [Publisher]




"Jean-Guy Marcil" NoSpam@LeaveMeAlone wrote in message
...
JoAnn Paules [MVP] was telling us:
JoAnn Paules [MVP] nous racontait que :

I see that you got it fixed but wouldn't you rather have a flickering
cursor than a cursing flicker? ;-)

(Sorry)


Is the sun beating down hard in your area as well? ;-)

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
ISTOO
Word MVP site:
http://www.word.mvps.org




  #3   Report Post  
Posted to microsoft.public.word.tables
Helmut Weber Helmut Weber is offline
external usenet poster
 
Posts: 139
Default How to stop cursor flicker in Word?

Hi George,

maybe something changed or is changing the blinking time.

Have a look at GetCaretBlinkTime and SetCaretBlinkTime

Option Explicit
' -----------------------

Declare Function SetCaretBlinkTime Lib "user32" _
(ByVal wMSeconds As Long) As Long
Declare Function GetCaretBlinkTime Lib "user32" () As Long

' ---------------

Sub Test539()
MsgBox GetCaretBlinkTime
SetCaretBlinkTime (500) ' half a second is a common value
End Sub

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

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


  #4   Report Post  
Posted to microsoft.public.word.tables
George Riley George Riley is offline
external usenet poster
 
Posts: 6
Default How to stop cursor flicker in Word?

Helmut,

The cursor blink rate is normal until something happens (see next paragraph)
then the cursor procedes to blink rapidly for as much as 1.75 minutes then
goes back to the original normal blink rate. When the cursor blinks rapidly,
it appears solid with rapid and apparently inconsistent blinks off (as with
the spellchecker running).

This happens when: You change from the Word window and back, when something
is typed *and* the cursor is moved, when you backspace to delete.

This does not happen when you type something but do not move the cursor, it
does not happen when you move the corsor if you have not typed something, it
stops when you save.

Turning off spell and grammar checking helped as did clearing the "Label
text with smart tags" tickbox (toolsautocorrect options Smart Tags tab).
Turning off "Allow background saves" had no apparent effect.

It seems like it's checking something. Will that change the blink rate? Or
is the screen update causing the cursor to blink? This doesn't stop (for a
long time) when the spell ad grammar checking is on.

Thanks,
George Riley


"Helmut Weber" wrote:

Hi George,

maybe something changed or is changing the blinking time.

Have a look at GetCaretBlinkTime and SetCaretBlinkTime
r
Option Explicit
' -----------------------

Declare Function SetCaretBlinkTime Lib "user32" _
(ByVal wMSeconds As Long) As Long
Declare Function GetCaretBlinkTime Lib "user32" () As Long

'---------------

Sub Test539()
MsgBox GetCaretBlinkTime
SetCaretBlinkTime (500) ' half a second is a common value
End Sub

--
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.word.tables
JoAnn Paules [MVP] JoAnn Paules [MVP] is offline
external usenet poster
 
Posts: 2,113
Default How to stop cursor flicker in Word?

Are you using the default cursor or some sort of variation downloaded from
the web?

--

JoAnn Paules
MVP Microsoft [Publisher]




"George Riley" wrote in message
...
Helmut,

The cursor blink rate is normal until something happens (see next
paragraph)
then the cursor procedes to blink rapidly for as much as 1.75 minutes then
goes back to the original normal blink rate. When the cursor blinks
rapidly,
it appears solid with rapid and apparently inconsistent blinks off (as
with
the spellchecker running).

This happens when: You change from the Word window and back, when
something
is typed *and* the cursor is moved, when you backspace to delete.

This does not happen when you type something but do not move the cursor,
it
does not happen when you move the corsor if you have not typed something,
it
stops when you save.

Turning off spell and grammar checking helped as did clearing the "Label
text with smart tags" tickbox (toolsautocorrect options Smart Tags tab).
Turning off "Allow background saves" had no apparent effect.

It seems like it's checking something. Will that change the blink rate?
Or
is the screen update causing the cursor to blink? This doesn't stop (for
a
long time) when the spell ad grammar checking is on.

Thanks,
George Riley


"Helmut Weber" wrote:

Hi George,

maybe something changed or is changing the blinking time.

Have a look at GetCaretBlinkTime and SetCaretBlinkTime
r
Option Explicit
' -----------------------

Declare Function SetCaretBlinkTime Lib "user32" _
(ByVal wMSeconds As Long) As Long
Declare Function GetCaretBlinkTime Lib "user32" () As Long

'---------------

Sub Test539()
MsgBox GetCaretBlinkTime
SetCaretBlinkTime (500) ' half a second is a common value
End Sub

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

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







  #6   Report Post  
Posted to microsoft.public.word.tables
George Riley George Riley is offline
external usenet poster
 
Posts: 6
Default How to stop cursor flicker in Word?

JoAnn,
I'm just using the default cursor.
George

"JoAnn Paules [MVP]" wrote:

Are you using the default cursor or some sort of variation downloaded from
the web?

--

JoAnn Paules
MVP Microsoft [Publisher]




"George Riley" wrote in message
...
Helmut,

The cursor blink rate is normal until something happens (see next
paragraph)
then the cursor procedes to blink rapidly for as much as 1.75 minutes then
goes back to the original normal blink rate. When the cursor blinks
rapidly,
it appears solid with rapid and apparently inconsistent blinks off (as
with
the spellchecker running).

This happens when: You change from the Word window and back, when
something
is typed *and* the cursor is moved, when you backspace to delete.

This does not happen when you type something but do not move the cursor,
it
does not happen when you move the corsor if you have not typed something,
it
stops when you save.

Turning off spell and grammar checking helped as did clearing the "Label
text with smart tags" tickbox (toolsautocorrect options Smart Tags tab).
Turning off "Allow background saves" had no apparent effect.

It seems like it's checking something. Will that change the blink rate?
Or
is the screen update causing the cursor to blink? This doesn't stop (for
a
long time) when the spell ad grammar checking is on.

Thanks,
George Riley


"Helmut Weber" wrote:

Hi George,

maybe something changed or is changing the blinking time.

Have a look at GetCaretBlinkTime and SetCaretBlinkTime
r
Option Explicit
' -----------------------

Declare Function SetCaretBlinkTime Lib "user32" _
(ByVal wMSeconds As Long) As Long
Declare Function GetCaretBlinkTime Lib "user32" () As Long

'---------------

Sub Test539()
MsgBox GetCaretBlinkTime
SetCaretBlinkTime (500) ' half a second is a common value
End Sub

--
Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

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






  #7   Report Post  
Posted to microsoft.public.word.tables
Klaus Linke Klaus Linke is offline
external usenet poster
 
Posts: 413
Default How to stop cursor flicker in Word?

This happens when: You change from the Word window and back,

That would be pretty normal (since, if the document is large, Word needs to
swap it back into memory, which takes time and ressources).

when something is typed *and* the cursor is moved, when you
backspace to delete.


Do you have any add-ins loaded that might do something in the background?
You see COM-Add-Ins in the Help menu Info System Info Office Word
COM-Add-Ins

Another thing that might help a bit would be to work in Normal view and to
turn off background pagination (Tools Options General).

Regards,
Klaus


  #8   Report Post  
Posted to microsoft.public.word.tables
Jean-Guy Marcil Jean-Guy Marcil is offline
external usenet poster
 
Posts: 67
Default How to stop cursor flicker in Word?

JoAnn Paules [MVP] was telling us:
JoAnn Paules [MVP] nous racontait que :

Oh yeah. It's been up in the 90's for the last two weeks without much
of a break. It's 6:38 pm now and it's still in the high 80's/low
90's. I take it you're feeling the heat also?


Yeah, but we get the occasional short violent storm to cool things down...

--
Salut!
_______________________________________
Jean-Guy Marcil - Word MVP
ISTOO
Word MVP site:
http://www.word.mvps.org


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Reveal codes in a word document FUN101 Microsoft Word Help 4 May 16th 23 08:47 PM
Why dont MS just f**king re-write Word from scratch? Its dogsh*t Word Hater Microsoft Word Help 33 May 5th 23 02:52 PM
Change paper size; Word changes to invalid margins OhioTech New Users 10 July 6th 06 02:00 PM
How can Word display full path of a file in the title bar? SAsif Microsoft Word Help 1 January 26th 06 04:32 PM
In Word, how can I see all files (*.*) in "save as"? citizen53 New Users 8 April 4th 05 04:56 PM


All times are GMT +1. The time now is 01:35 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"