Hi,@RogerSchlueter-7899. Welcome to Microsoft Q&A.
The problem may be due to ListBox item binding requiring the property of the bound object to be a public field or property. In your structure, evt uses public fields instead of properties, which is causing the binding to fail. To resolve this, you could convert the fields to properties.
Public Class evt
Public Property Beginning As Date
Public Property CategoryID As Integer
Public Property Title As String
End Class
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.