문제

I want to put the result of an operation (Integer) inside a TextBox (System.Windows.Forms.TextBox)

I tried using the Convert.ToString() function, but it's not working.

How can i do this?

도움이 되었습니까?

해결책

Try this..

Textbox1.Text=integervariable.Tostring();
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top