Author Topic: VS Debugger and List of Strings  (Read 901 times)

ddddd13

  • Full Member
  • ***
  • Posts: 118
    • View Profile
VS Debugger and List of Strings
« on: July 09, 2019, 08:10:28 AM »
Archie;

VS Debugger was closing and reopening when trying to debug. It would close the window after 18seconds and then reopen. Scary! Now it quit. Any ideas?

Also, it seems I can only have one list of strings in a Sub or solution. Can you shed any light on this, or point me to a link?

Thanks,
Dave

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5322
    • View Profile
    • AdvancedHMI
Re: VS Debugger and List of Strings
« Reply #1 on: July 13, 2019, 11:53:58 AM »
I had VS2019 close and restart on me a couple times.

How are you declaring more than 1 list of strings?

ddddd13

  • Full Member
  • ***
  • Posts: 118
    • View Profile
Re: VS Debugger and List of Strings
« Reply #2 on: July 13, 2019, 12:48:08 PM »
Yes.

Thanks,
Dave

Archie

  • Administrator
  • Hero Member
  • *****
  • Posts: 5322
    • View Profile
    • AdvancedHMI
Re: VS Debugger and List of Strings
« Reply #3 on: July 13, 2019, 12:59:25 PM »
Are you doing this:

Dim StringList1 as new List(Of String)
Dim StringList2 as new List(Of String)

ddddd13

  • Full Member
  • ***
  • Posts: 118
    • View Profile
Re: VS Debugger and List of Strings
« Reply #4 on: July 13, 2019, 01:24:08 PM »
Archie;

I have 4 lists. They are as follows.
    Dim EMPLOYEES As New List(Of String)
    Dim MACHINENUM As New List(Of String)
    Dim parameter As New List(Of String)
    Dim EpicorData As New List(Of String)

Thanks,
Dave