2011-09-06 103 views
-1

我想在我的消息框中顯示文本框文本不斷出現錯誤。消息框中包含textbox.text

MessageBox.Show(textBox1.text + "Saved As PDF"); 

,誤差

Error 1 'System.Windows.Forms.TextBox' does not contain a definition for 
    'text' and no extension method 'text' accepting a first argument of type 
    'System.Windows.Forms.TextBox' could be found (are you missing a using 
    directive or an assembly reference?) 
    R:\Engineer\Russell Saari\CONFIGURATOR MODELS\MLD028 Userform (C# Coding)\WindowsFormsApplication2\MLD028D Actuator Form Complete.cs 118 38 WindowsFormsApplication 
+0

什麼是錯誤? – ChrisF

+0

查看Brandon的回答。你應該在你的問題中包含這個。使用[編輯](http://stackoverflow.com/posts/7325662/edit)鏈接。 – ChrisF

回答

9

屬性一般用大寫字母開頭。

嘗試

MessageBox.Show(textBox1.Text + "Saved As PDF"); 

(注意.TextT是大寫)

+0

+1打我吧 –

+0

試過同樣的錯誤? –

+2

@Russell,我幾乎可以肯定你在同一行代碼中沒有得到相同的錯誤。你發佈的錯誤基本上說TextBox沒有一個名爲'text'的屬性。這是正確的,它有一個名爲'Text'的屬性。你記得重建你的項目嗎?你能否在你的問題中添加新的錯誤信息? (如ChrisF所說,使用您的問題下面的'編輯'鏈接)。 – Brandon

4

你不說是什麼錯誤,但首先,讓我們使你的代碼編譯。 Text應該大寫。

MessageBox.Show(textBox1.Text + "Saved As PDF");