看板 Programming 關於我們 聯絡資訊
※ 引述《jiannrong@kkcity.com.tw ( )》之銘言: : 以下這一段語法,我想用於C++ express 2005 的.Net表單上,所以必須轉成CLR語法 : 只是我現在卡在For Each obj As Object In Me.Controls 不知道該怎麼寫才能在 : C++內跑 : 麻煩各位協助,謝謝 : For Each obj As Object In Me.Controls : If TypeOf obj Is TextBox Then : obj.Text = "" : End If : Next for(int i = 0; i < Me.Controls.Count; i++) { if (Me.Controls.Item[i].GetType() == Type.GetType("TextBox")) { Me.Controls.Item[i].Text = string.Empty; } } -- ============================= 夏有涼風 冬有雪 http://itsoho.myweb.hinet.net ============================= -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 59.126.181.10