В VBA, насколько я понимаю, все глобальные переменные - междокументные.
Иногда это неудобно. Нельзя ли "прикрепить" переменные к каждому отдельному документу, возможно, используя объектную технологию ?
Variables Collection Object
See Also Properties Methods Events Specifics
Documents (Document)
Variables (Variable)
A collection of Variable objects that represent the variables added to a document or template. Document variables are used to preserve macro settings in between macro sessions.
Using the Variables Collection
Use the Variables property to return the Variables collection. The following example displays the number of variables in the document named "Sales.doc."
- Код: Выделить всё
MsgBox Documents("Sales.doc").Variables.Count & " variables"
Use the Add method to add a variable to a document. The following example adds a document variable named "Temp" with a value of 12 to the active document.
- Код: Выделить всё
ActiveDocument.Variables.Add Name:="Temp", Value:="12"
If you try to add a document variable with a name that already exists in the Variables collection, an error occurs. To avoid this error, you can enumerate the collection before adding any new variables. If the Blue document variable already exists in the active document, the following example sets its value to 6. If this variable doesn't already exist, this example adds it to the document and sets it to 6.
- Код: Выделить всё
For Each aVar In ActiveDocument.Variables
If aVar.Name = "Blue" Then num = aVar.Index
Next aVar
If num = 0 Then
ActiveDocument.Variables.Add Name:="Blue", Value:=6
Else
ActiveDocument.Variables(num).Value = 6
End If
Use Variables(index), where index is the document variable name or the index number, to return a single Variable object. The following example displays the value of the Temp document variable in the active document.
- Код: Выделить всё
MsgBox ActiveDocument.Variables("Temp").Value
The index number represents the position of the document variable in the Variables collection. The first variable added to the Variables collection is index number 1; the second variable added to the collection is index number 2, and so on. The following example displays the name of the first document variable in the active document.
- Код: Выделить всё
MsgBox ActiveDocument.Variables(1).Name
To add a variable to a template, open the template as a document by using the OpenAsDocument method. The following example stores the user name (from the Options dialog box) in the template attached to the active document.
- Код: Выделить всё
ScreenUpdating = False
With ActiveDocument.AttachedTemplate.OpenAsDocument
.Variables.Add Name:="UserName", Value:= Application.UserName
.Close SaveChanges:=wdSaveChanges
End With
batmax писал(а):Спасибо, конечно, НО...
Variables Collection - у тебя какая версия VBA ? У меня в 6.3 такого нигде нету. (Я программирую в Автокаде 2000-2004 и Офисе 2000).
TEH3OP писал(а):Некогда проверять, так что не отвечаю что так точно можно делать.
Что если к каждому документу Property добавить, которое будет возвращать значение Private переменной уровня модуля данного документа.
Попробуйте -- вдруг...
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 100