Gives the following message:

Чтобы избежать возможной потери данных перед загрузкой конструктора, необходимо исправить следующие ошибки: Экземпляры ошибки (1) InvalidArgument=Значение '0' недопустимо для 'SelectedIndex'. Имя параметра: SelectedIndex 1. Скрыть стек вызовов в System.Windows.Forms.ListBox.set_SelectedIndex(Int32 value) в Global.formEditClusters..ctor() в D:\Dropbox\prog\TestAssistant\TestAssistant\formEditClusters.cs:строка 198 

Although the project itself is compiled and works without errors. Where to dig?

    1 answer 1

    Apparently you are trying to set the list's SelectedIndex property in the form's designer before filling this list with values. That is, there are no items in the list, and you say "choose the first" to the list.

    • Thank you, it is. - ToxyGen