沒有命令可以查看CPU溫度,可以通過第三方軟件魯大師查看CPU溫度:
站在用戶的角度思考問題,與客戶深入溝通,找到固安網(wǎng)站設(shè)計與固安網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋固安地區(qū)。
百度搜索魯大師,并進(jìn)行下載安裝;
運(yùn)行已安裝的軟件的,在界面中就能看到CPU溫度:
m是流體質(zhì)量流量嗎,流體密度這個沒有用到,限制條件是啥沒說。
根據(jù)你現(xiàn)在提供的情況,算出來的值在:
61.66657
61.66557
之間
chart控件,可能需要。net4.0以上,在工具欄的數(shù)據(jù)分組找,找不到就是沒有。
簡單的曲線也可以用picture控件
Public Function GetCPUTemp() As Double
Dim i As Integer
Dim mCPU As Variant
Dim u As Variant
Dim s As String
Set mCPU = GetObject("WINMGMTS:{impersonationLevel=impersonate}!root\wmi").ExecQuery("SELECT CurrentTemperature From MSAcpi_ThermalZoneTemperature")
For Each u In mCPU
s = s u.CurrentTemperature
Next
Set mCPU = Nothing
GetCPUTemp = (s - 2732) / 10
End Function
Private Sub Form_Load()
Timer1.Interval = 500
End Sub
Private Sub Timer1_Timer()
Print GetCPUTemp()
End Sub
這個要用GDI+畫。要看你.net版本。
以下是VS2005中的一段代碼。
Me.PictureBox1.Height = 450
Me.PictureBox1.Width = 880
Dim gr As Graphics '定義畫布
Dim bp As New Bitmap(880, 450) '定義位圖,并進(jìn)行賦值
Dim p As New Pen(Color.Black) '定義畫筆
p.Width = 2 '寬度2
p.DashStyle = Drawing2D.DashStyle.Solid '樣式直線
PictureBox1.Image = bp
gr = Graphics.FromImage(PictureBox1.Image)
gr.FillRectangle(Brushes.White, New Rectangle(0, 0, PictureBox1.Width, PictureBox1.Height))
gr.DrawLine(p, a, b, a, .Height - b) '繪制縱坐標(biāo)
gr.DrawLine(p, a, .Height - b, .Width - a, .Height - b) '繪制橫坐標(biāo)
DataGridViewCellStyle方法不通用,區(qū)域性設(shè)置太麻煩了。
以下是程序方法:
可以先將數(shù)據(jù)源放入一張表中,不要直接綁定。新表是可以改string的。
那個列必須是string,不能是single
代碼寫在cellendedit的過程中,每次用戶退出單元格編輯后引發(fā)
dim a1 as single
dim a2 as string
Try
a1=csng(當(dāng)前單元格值)
Catch ex As Exception
MessageBox.Show("輸入條件不符合要求!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Exit Sub
End Try
if a11 then
a2=formate(a1,"0.0000")
else
....
endif
完事后a2賦值給當(dāng)前單元格即可。