'現在値のバイト配列を取得 Dim praceByte As Byte() = client.Request("現在値", 1, 60000) 'バイト配列を文字列に変換して画面に表示 Dim priceText As String = Encoding.Default.GetString(praceByte).Trim Dim dotIndex As Integer = priceText.IndexOf(".") If dotIndex > -1 Then '小数点があれば小数点以下を破棄 priceText = priceText.Substring(0, dotIndex) End If 現在値.Text = priceText