Nothing else is referencing the listbox listTALLEYWHSE. This listbox is on a form named frmOrderDetailsshow and this form opens up from a double click event off of another listbox in a separate userform. The code to call up the frmOrderDetailsshow form is below:
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
'Creating this sub to double click on a value in frmEEReportOrders list box and have more detail displayed in another user form that shows release information, inventory status, AMF's
'and possible subs and possible notes.
Dim Response As VbMsgBoxResult
If Worksheets("CONTROLS").Range("A50").Value = "Do Not Allow" Then
MsgBox "No Order Details to Display. Order is not in Market. Do you wish to view Opportunities only?.", vbYesNo + vbInformation, "Not In Market"
Else
Response = MsgBox("This detail will only provide insight to what has been DELIVERED to market for the year selected." & vbNewLine & vbNewLine & "View All Order Activity for " _
& Frame1.Caption & " from " & Worksheets("Command").Range("c24").Value & " ?", vbYesNo + vbQuestion, "Confirm Request")
If Response = vbNo Then Exit Sub
frmOrderDetails.Show
End If
End Sub
I'm stumped. The workbook is too large to upload. If you have any possible workarounds or suggestions I can play with, I'll give it a go and let you know the results.
Best,
pt
Bookmarks