0
A
回答
2
也許你想這樣的:
MessageBox::Show("The value of guess is " + guess.ToString());
或
MessageBox::Show(String.Format("The value of guess is {0}", guess));
+0
非常感謝,完美工作,剛開始使用Windows窗體,有點不同不像基本的C++。 – 2011-04-07 01:54:01
+1
在拼接之前,需要將猜測變量轉換爲字符串。 – 2011-04-07 01:54:02
+0
只要將它寫成MessageBox :: Show(「猜測的值是」+猜測)就可以正常工作。它顯示正確。 – 2011-04-07 01:59:05
0
使用MessageBox::Show("The value of guess is "+guess.ToString());
相關問題
- 1. Windows窗體問題
- 2. Windows窗體,窗體的圖標問題
- 3. Drag'n'drop到Windows窗體問題
- 4. Windows窗體和ShowDialog問題
- 5. 與Windows窗體的問題
- 6. Windows窗體解析問題
- 7. C#Windows窗體標籤字體問題
- 8. Windows窗體的字體問題2
- 9. Windows窗體主題
- 10. Windows窗體Windows 8主題
- 11. Windows aero玻璃窗體文本問題
- 12. Windows窗體類部分公開問題
- 13. 問題System.ExecutionEngineException而從Windows窗體
- 14. windows窗體WebBrowser:閃爍問題
- 15. C#windows窗體組合框問題
- 16. Windows窗體用戶控件問題
- 17. C#Windows窗體數據庫問題
- 18. Windows窗體:DataGridView綁定問題
- 19. Windows窗體可見性問題
- 20. C# - 在Windows窗體keydown事件問題
- 21. windows窗體驗證問題(.net2.0)
- 22. Windows窗體UI線程問題c#
- 23. Windows窗體中的閃爍問題
- 24. Windows窗體組合框問題
- 25. 有問題的組合框Windows窗體
- 26. Windows窗體中的繪畫問題
- 27. VB.NET中的Windows窗體問題
- 28. 問題關於c#中windows窗體的Treeview控件問題#
- 29. 窗體Visiblity問題
- 30. C#窗體窗體:Mdi父窗體和子窗體問題
您使用的(C,C#或C++)>什麼語言 – 2011-04-07 01:53:16
我使用Visual C++ – 2011-04-07 02:00:27