2007年12月14日
摘要: uses DBGridEhImpExp; procedure TInvoiceManager.ppmSaveSelectionClick(Sender: TObject); var ExpClass:TDBGridEhExportClass; Ext:String; begin SaveDialog1.FileName := 'file1'; if (ActiveControl is T... 阅读全文
posted @ 2007-12-14 17:18 BROTHER 阅读(606) 评论(0) 推荐(0)
摘要: Delphi中DBChart的应用: 1.绑定数据 ADOQuery1.Active:=True; DBChart1.Series[0].DataSource:=ADOQuery1; DBChart1.Series[0].XLabelSource:='FiledName'; DBChart1.Series[0].YValues.ValueSource:='FieldName'; 2.切换图表类... 阅读全文
posted @ 2007-12-14 12:43 BROTHER 阅读(9216) 评论(3) 推荐(1)