摘要: 今天用Delphi编写了个dll,用到了TStringList来传递多参数,如下:[delphi] view plaincopyfunctionDBM_SetParam(procName:string;paramValues:TStringList=nil):Boolean;stdcall;vari:integer;begintryif(paramValues<>nil)thenbeginfori:=0toparamValues.Count-1dobeginGParameters.AddParameter;GParameters[i].Value:=paramValues[i];e 阅读全文
posted @ 2013-05-10 11:16 风雪江山 阅读(986) 评论(0) 推荐(0)