If RadioButtonAC144.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/144
ElseIf RadioButtonAC72.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/72
ElseIf RadioButtonAC48.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/48
ElseIf RadioButtonAC35.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/35
ElseIf RadioButtonAC32.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/32
ElseIf RadioButtonAC24.Checked = True Then
TextBoxACScale.Text = TextBoxACReal.Text/24
End If
這是我的代碼,我有多個頁面(標籤)與此類似,所以這是一個PITA改變了這一切,但如果它是唯一的辦法那就這樣吧,但是我只是需要在TextBoxACScale.Text中顯示的結果最多隻顯示2位小數。單擊計算按鈕時將實現此代碼。2位小數結果在VB
http://stackoverflow.com/questions/5168592/force-a-string-to-2-decimal-places VB.net和C#是相同的。使用String.Format –
你不能用整數分割文本。你必須將文本轉換爲數字,進行分割,然後轉換回來。 – ja72
現在一切正常。我改變了剩下的部分。作爲領導與文本的分工,這樣的工作很好。 – Michael