procedure ttfchart.timer1timer(sender: tobject);
var
amount:double;
begin
self.caption:='現在的溫度是'+floattostr(roundto(main.valuet,-2))+'攝氏度';
with chart1 do
begin
with series[0] do
if count>(10000/timer1.interval) then
begin
delete(0);
addxy(i,main.valuet,'',clteecolor);
with chart1.bottomaxis do
begin
amount:=roundto(((maximum-minimum)/count),-1);
setminmax(minimum+amount,maximum+amount);
end;
end
else
addxy(i,main.valuet,'',clteecolor);
end;
mainform.leddisplay1.number:=trunc(main.valuet/10);
mainform.leddisplay2.number:=trunc((main.valuet-trunc(main.valuet/10)*10));
i := i + timer1.interval/1000;
end;
TChart控制項的BUG?
在delphi6中使用tchart控制項畫圖時,發現當tchart包含多個tpointseries時有bug。我的情況是這樣的,第乙個 tpointseries上面有相對固定的點,這些點都會在x,y軸上顯示對應的座標。而第二個tpointseries我是不想讓他顯示,另外做了特殊處理。但是當第二個t...
關於HtmlForm控制項
htmlform 控制項是設計動態網頁的乙個相當重要的元件,通過該 控制項可以在clien端和server端進行資料傳送。製作網頁經常會遇到表單資料的處理,通過htmlform 控制項可以將client端的資料上傳至server端處理。如果網頁內的確認按鈕被按下去後,所有form控制項所包起來的資料...
關於mfc控制項
假如是 cedit m e1 就是把編輯框控制項與乙個控制項類變數關聯起來 cstring str m e1.getwindowtex str 獲取這個編輯框中的字串 m e1.setreadonly true 設定這個編輯框為唯讀 還有很多能讀取和設定這個編輯框的函式,自己慢慢看吧 這時繫結的就不...