摘要:
首先看看Delphi的官方文档中关于refresh的说明Refetches data from the database to update a dataset抯 view of data.procedure Refresh;DescriptionCall Refresh to ensure tha 阅读全文
摘要:
1.RGB转换为Tcolor function RGBToColor(R,G,B: byte): Tcolor;begin Result := B Shl 16 or G shl 8 or R;end; 2.Tcolor转换为RGB proceudre Tform1.Button1Clink(Sen 阅读全文
摘要:
procedure T屏幕取色器.img1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if Button = mbLeft then begin img1.Vis 阅读全文