Here is the code anyhow. I noticed that it is not working exactly as stated because of the code below.... I just need to see what I have to tweek for it to work...
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim UForm As UserForm33
Dim Sel_Row As Long
Dim Cont_Item As MSForms.Control
Dim Col_Name As String
Dim ListBox_Item As MSForms.ListBox
Dim Cnt1 As Integer
Dim Cnt2 As Integer
Dim Flag
Cancel = True
Set UForm = New UserForm33
Sel_Row = Target.Row
'POPULATE THE USERFORM FIELDS
'TEXT BOXES
UForm.TextBox4.Value = Me.Range("A" & Sel_Row).Value
UForm.TextBox2.Value = Me.Range("B" & Sel_Row).Value
UForm.TextBox5.Value = Me.Range("F" & Sel_Row).Value
UForm.TextBox6.Value = Me.Range("G" & Sel_Row).Value
UForm.TextBox7.Value = Me.Range("N" & Sel_Row).Value
UForm.TextBox3.Value = Me.Range("C" & Sel_Row).Value
UForm.TextBox10.Value = Me.Range("H" & Sel_Row).Value
' OPTION BUTTONS
'POPULATE LIST BOXES
UForm.ListBox1.List = Sheet4.Range("E2:E11").Value
UForm.ListBox4.List = Sheet4.Range("C2:C5").Value
UForm.ListBox5.List = Sheet4.Range("G2:G8").Value
UForm.ListBox6.List = Sheet4.Range("M2:M4").Value
UForm.ListBox7.List = Sheet4.Range("O2:O8").Value
UForm.ListBox8.List = Sheet4.Range("P2

8").Value
'SELECT IN LISTS
For Each Cont_Item In UForm.Controls
If TypeName(Cont_Item) = "ListBox" Then
Set ListBox_Item = Cont_Item
Col_Name = ""
Select Case Cont_Item.Name
Case UForm.ListBox1.Name
Col_Name = "O"
Case UForm.ListBox4.Name
Col_Name = "E"
Case UForm.ListBox5.Name
Col_Name = "D"
End Select
End If
Next Cont_Item
Manual_Quit = False
UForm.Show
If Manual_Quit Then
Exit Sub
End If
'POPULATE FROM USERFORM
'TEXT BOXES
Me.Range("A" & Sel_Row).Value = UForm.TextBox4.Value
Me.Range("B" & Sel_Row).Value = UForm.TextBox2.Value
Me.Range("F" & Sel_Row).Value = UForm.TextBox5.Value
Me.Range("G" & Sel_Row).Value = UForm.TextBox6.Value
Me.Range("N" & Sel_Row).Value = UForm.TextBox7.Value
Me.Range("C" & Sel_Row).Value = UForm.TextBox3.Value
Me.Range("H" & Sel_Row).Value = UForm.TextBox10.Value
'OPTION BUTTONS
'LIST BOXES
For Each Cont_Item In UForm.Controls
If TypeName(Cont_Item) = "ListBox" Then
Set ListBox_Item = Cont_Item
Col_Name = ""
Select Case Cont_Item.Name
Case UForm.ListBox1.Name
Col_Name = "O"
Case UForm.ListBox4.Name
Col_Name = "E"
Case UForm.ListBox5.Name
Col_Name = "D"
Case UForm.ListBox6.Name
Col_Name = "L"
Case UForm.ListBox7.Name
Col_Name = "H"
Case UForm.ListBox8.Name
Col_Name = "H"
End Select
' Deleting the 9 rows below,,, will not give me an error... however, List boxes are not being entered into the cells
For Cnt2 = 0 To ListBox_Item.ListCount - 1
If ListBox_Item.Selected(Cnt2) = True Then
Me.Range(Col_Name & Sel_Row).Value = ListBox_Item.List(Cnt2)
Exit For
End If
Next Cnt2
Set ListBox_Item = Nothing
End If
Next Cont_Item
Set UForm = Nothing
End Sub