Sorry, I do not have the best c# experience, I'm more into VB.netThanks Shinzuya, i can see you put the code that sets the textbox values in a try catch but this isn't where its breaking.
Code:int slot1 = Convert.ToInt32(tcpGecko.peek(0x3F9BFF40));
Here you are assuming the result back from peek is an Int32 when it often isn't.
Code:try { var slot1 = Convert.ToInt32(this.tcpGecko.peek(0x3F9BFF40)); this.numericUpDown2.Value = slot1; } catch (Exception ex) { // error }











