Ok, so I was able to get my txt boxes to show up on my excel sheet, but the listboxes won't show up, I do have the option to select multiple selections with each list box.
Code is below...I appreciate the help once again.
Code is below...I appreciate the help once again.
Code:
Private Sub cmdSubmit_Click()
Dim irow As Long
Dim ws As Worksheet
Set ws = Sheets("Results")
irow = ws.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
Application.ScreenUpdating = False
With ws
.Range("A" & irow) = TxtBxCompany.Value
.Range("B" & irow) = TxtBxWellname.Value
.Range("C" & irow) = TxtBxRun.Value
.Range("D" & irow) = TxtBxCounty.Value
.Range("E" & irow) = cbxDistrict.Value
.Range("F" & irow) = cbxLocation.Value
.Range("G" & irow) = TxtBxCustomer.Value
.Range("H" & irow) = TxtBxPhone.Value
.Range("I" & irow) = lstbxLoggingServiceType.Value
.Range("J" & irow) = lstbxAcoustic.Value
End With
TxtBxCompany.Value = ""
TxtBxWellname.Value = ""
Application.ScreenUpdating = True
Unload Me
End Sub