摘要:
想要输出内容到excel速度比较快,有几个窍门:1、 在输出数据前将excel的页面刷新关闭,数据输出结束后再打开页面刷新。例如:vargExcelApp : _Application;gExcelApp.ScreenUpdating[0] := False;//输出内容。gExcelApp.ScreenUpdating[0] := True;2、减少excel中对象的深层次引用。比如不要多次的用... 阅读全文
摘要:
具体原因可以参考这篇文章“DLL/ActiveForm中的线程同步处理”www.delphibbs.com/keylife/iblog_show.asp。事实上,经试验可以在dll工程文件中加入以下语句 :Application.Initialize;if Application.Handle = 0 thenbegin Application.CreateHandle;e... 阅读全文
摘要:
1. 用Record接口,要注意Packed的区别2. cdecl和stdcall的区别3. C++导出的函数建议用C格式stdcall导出,使用Def文件定义名称4. 用VS写的API dll要注意是否引用了MFC的DLL,否则会使LoadLibrary失败,并GetLastError后返回14001Api头文件Code highlighting produced by Actipro Code... 阅读全文
摘要:
Delphi编辑器颜色设置,包括:Delphi7、Delphi2009、Delphi2010/Files/enli/编译器颜色配置.rar 阅读全文
摘要:
1. 使控件产生圆角的方法(包括Tform)procedure TfrmMessageDlg.SetBorder(AControl: TWinControl);const ConRound = 5;var LHrgn: HRGN;begin LHrgn := 0; GetWindowRgn(AControl.Handle, LHrgn); DeleteObject(LHrgn); LHrgn :=... 阅读全文
摘要:
偶然看到的,备忘一下/Files/enli/网页制作.rar 阅读全文
摘要:
TProxySettingCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->unituProxySetting;interfaceusesClasses,SysUtils;typeTProxySetting=classprivateFIsApplyProxySettingsToIE:Boolean;FIsEnableProxy:Boolean;FProxyType:Byte;FProxyHost:String;FProxyDomain:Stri 阅读全文
摘要:
FTP传输Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--unitTransferThread;//////////////////////////////////////////////////////////////////////////////... 阅读全文
摘要:
1. XML文件操作中的selectNodes使用的是Xpath语法,可以参考:http://www.w3school.com.cn/xpath/index.asp 例如这样的选择语法:selectNodes('//data/r[contains(@reportType,"季报") and (@reportType != "三季报")]') 这样{‘年报’,‘中报’,‘一季报’,‘第二季报’,‘第三季报’,‘第四季报’,‘三季报’} 中只会选择{‘一季报’,‘第二季报’,‘第三季报’,‘第四季报’}的节点代码 Code highlight 阅读全文
摘要:
这里只举个纵轴的例子,利用Delphi的VCL控件的原有代码还是比较方便的,代码如下:MouseWheelCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--procedureTfrmMain.FormMouseWheel(Sender:TObject;S... 阅读全文