Private Sub UserForm_Initialize()
On Error GoTo EH
Dim UserArray(3)
cboTimeCard.ColumnCount = 1
'Load UserArray
UserArray(0) = "Mary"
UserArray(1) = "Jim"
UserArray(2) = "Dave"
'Load data into combo Box
cboUserNames.List() = UserArray
Exit_EH:
Exit Sub
EH:
MsgBox Err.Number & ": " & Err.Description
Resume Exit_EH
End Sub
Private Sub cboUserNames _Change()
Select Case cboUserNames
Case "Mary"
RewrapBookmark "role1", "Accountant"
Case "Dave"
RewrapBookmark "role1", "Vice President"
Case "Jim"
RewrapBookmark "role1", "Computer Specialist"
End Select
End Sub
Private Sub cmdFinish_Click()
If cboUserNames.Value = "" Then
MsgBox "User Name is a required field."
Exit Sub
End If
Selection.GoTo what:=wdGoToBookmark, Name:="role1"
Unload frmAreaOfPractice
End Sub
Sub RewrapBookmark(ByVal vBookmarkToUpdate As String, vTextToUse As String)
'coded by [email protected]
'**********************
'PURPOSE
'after data is dropped into a bookmarked location in dot
'this procedure will REWRAP the bookmark, since the bookmark
'will be lost after the data dump without REWRAP...
'this data could not be located again for edits
'used for bookmarks only, not form fields w/bookmarks
'**********************
'when accessing a bookmark, which is not accessible
'when the form is locked, the lock must be toggled
proToggleFormLock
'set bookmark range w/var passed
Dim bkRange As Range
Set bkRange = ActiveDocument.Bookmarks(vBookmarkToUpdate).Range
'vBookmarkToUpdate is the name of the bookmark to use
'vTextToUse is the data dump variable
bkRange.Text = vTextToUse
ActiveDocument.Bookmarks.Add vBookmarkToUpdate, bkRange
'toggle relock
proToggleFormLock
End Sub
Sub proToggleFormLock()
'Toggle the Protection on and off
If ActiveDocument.ProtectionType = wdAllowOnlyFormFields Then
ActiveDocument.Unprotect Password:="MyPassword"
Else
ActiveDocument.Protect Password:="MyPassword", NoReset:=True, Type:= _
wdAllowOnlyFormFields
End If
End Sub
|