Skip to content
This repository was archived by the owner on Jan 5, 2022. It is now read-only.

Commit 5994bcf

Browse files
authored
Update inventorylist-source.vb
Uppercase entries automatically
1 parent 448931a commit 5994bcf

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

inventorylist-source.vb

+7-7
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ End If
5151
' if worksheet is protected
5252
With ws
5353
'.Unprotect Password:="password"
54-
.Cells(iRow, 1).Value = Me.TextBoxTOOLTYPE.Value
55-
.Cells(iRow, 2).Value = Me.TextBoxSWVERSION.Value
56-
.Cells(iRow, 3).Value = Me.TextBoxDESCRIPTION.Value
57-
.Cells(iRow, 4).Value = Me.TextBoxPARTNUMBER.Value
58-
.Cells(iRow, 5).Value = Me.TextBoxTAPECD.Value
59-
.Cells(iRow, 6).Value = Me.TextBoxRELEASEIMAGE.Value
60-
.Cells(iRow, 7).Value = Me.SOFTWARELOCATION.Value
54+
.Cells(iRow, 1).Value = UCase(Me.TextBoxTOOLTYPE.Value)
55+
.Cells(iRow, 2).Value = UCase(Me.TextBoxSWVERSION.Value)
56+
.Cells(iRow, 3).Value = UCase(Me.TextBoxDESCRIPTION.Value)
57+
.Cells(iRow, 4).Value = UCase(Me.TextBoxPARTNUMBER.Value)
58+
.Cells(iRow, 5).Value = UCase(Me.TextBoxTAPECD.Value)
59+
.Cells(iRow, 6).Value = UCase(Me.TextBoxRELEASEIMAGE.Value)
60+
.Cells(iRow, 7).Value = UCase(Me.SOFTWARELOCATION.Value)
6161
'.Protect Password:="password"
6262
End With
6363

0 commit comments

Comments
 (0)