I start my server perfectly but, when I enable the freezeCheck and put it on kill, if then I close the application and want to start it again i get an error starting the application with a class cast exception.
Unable to cast object of type 'System.String' to type 'System.Windows.Forms.ComboBox'
I solved this issue to navigate to the "state.json" in the longbow installation directory and there I saw 2 lines the freezecheck on false and the mode on true.
When I manually changed the freezeCheckMode to false then I could start up the application again.
{
"name": "freezeCheck",
"value": 300,
"enabled": false
},
{
"name": "freezeCheckMode",
"value": "kill",
"enabled": true
}
I start my server perfectly but, when I enable the freezeCheck and put it on kill, if then I close the application and want to start it again i get an error starting the application with a class cast exception.
Unable to cast object of type 'System.String' to type 'System.Windows.Forms.ComboBox'
I solved this issue to navigate to the "state.json" in the longbow installation directory and there I saw 2 lines the freezecheck on false and the mode on true.
When I manually changed the freezeCheckMode to false then I could start up the application again.