A
Alexander
Hi to all.
I have something as:
function my_f()
dim Characters_Quantity as long
StatusBar = "Retrieving the document size..."
Characters_Quantity = ActiveDocument.Characters.Count
end function
In long document it could take some time. I want to include in StatusBar
some kind of custom counter (means in seconds like: 1, 2, 3...) so while
code counting my StatusBar would looks like:
Retrieving the document size... 1
Retrieving the document size... 2
Retrieving the document size... 3
.. . .
What should I write instead of X?
StatusBar = "Retrieving the document size..." & X
(Windows 95; Word6; very basic libraries included (or Word97))
Tnx in advance,
Alex
PS
Is there any better (faster) way to count characters quantity in acitve
document?
I have something as:
function my_f()
dim Characters_Quantity as long
StatusBar = "Retrieving the document size..."
Characters_Quantity = ActiveDocument.Characters.Count
end function
In long document it could take some time. I want to include in StatusBar
some kind of custom counter (means in seconds like: 1, 2, 3...) so while
code counting my StatusBar would looks like:
Retrieving the document size... 1
Retrieving the document size... 2
Retrieving the document size... 3
.. . .
What should I write instead of X?
StatusBar = "Retrieving the document size..." & X
(Windows 95; Word6; very basic libraries included (or Word97))
Tnx in advance,
Alex
PS
Is there any better (faster) way to count characters quantity in acitve
document?