Propiedad Resource.Initials (Project)
Obtiene o establece las iniciales de un recurso. String de lectura y escritura.
Sintaxis
expresión. Initials
Expresión Variable que representa un objeto Resource .
Ejemplo:
En el ejemplo siguiente se establecen las iniciales de cada recurso del proyecto activo de acuerdo con los espacios que contenga el nombre del recurso. Por ejemplo, un recurso llamado "Química Nobel" recibe las iniciales "QN".
Sub SetInitialsBasedOnName()
Dim I As Integer ' Index used in For loop
Dim R As Resource ' Resource used in For Each loop
Dim NewInits As String ' The new initials of the resource
' Cycle through the resources of the active project.
For Each R In ActiveProject.Resources
' Initialize with first character of name.
NewInits = Mid(R.Name, 1, 1)
' Look for spaces in the resource's name.
For I = 1 To Len(R.Name)
' If not first character, and space is found, then add initial.
If I > 1 And Mid(R.Name, I, 1) = Chr(32) Then
If I + 1 <= Len(R.Name) Then
NewInits = NewInits & Mid(R.Name, I + 1, 1)
End If
End If
Next I
' Give the resource its new initials.
R.Initials = NewInits
Next R
End Sub
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.