delphi 窗口置顶及uniquery.locateEx的用法
摘要:窗口置顶: SetWindowPos(Form_showerr.Handle,HWND_TOPMOST,0,0,0,0,SWP_NOMOVE or SWP_NOSIZE); 数据集的locate方法: uses memdata; DataModule1.UniQuery_hklist.LocateE
阅读全文
Steema TeeChart Pro VCL FMX 2017.20 Full Suorce在Delphi XE10下的安装
摘要:一、首先将压缩包TeeChart Pro VCL FMX 2017.20 FS.rar解压到一个目录,比如 E:\Application\Steema TeeChart Pro VCL FMX 2017.20 FS目录下; 二、关闭所有Delphi IDE; 三、运行E:\Application\S
阅读全文
Delphi XE7下如何创建一个Android模拟器调试?
摘要:Delphi XE7下如何创建一个Android模拟器调试? Delphi XE7下如何创建一个Android模拟器调试? 1 2 3 4 5 6 7 分步阅读 1 2 3 4 5 6 7 1 2 3 4 5 6 7 利用Delphi XE7我们可以进行多种设备程序的开发,尤其是移动开发应用程序得到
阅读全文
关于使用UniForm以其他控件为Parent时应该注意的问题
摘要:关于使用UniForm以其他控件为Parent时应该注意的问题: 1,不能在其他组件的oncreate,onbeforeshow,onshow等事件中来生成这样的uniform,否则其上的组件不能显示; 2、这样的uniform在Parent上的位置不能与其他组件重叠,否则会发生一样的问题。 出现这
阅读全文
关于MySQL的TinyInt数据类型在Delphi中作为Boolean类型的一个要注意的问题
摘要:关于MySQL的TinyInt数据类型在Delphi中作为Boolean类型的一个要注意的问题: 在定义TinyInt类型字段时,若要作为Delphi中作为Boolean类型,则该字段的长度必须为1!
阅读全文
Gnostice PDFtoolkit VCL的安装
摘要:Installation and Uninstallation For New Users Close all open applications including the IDE. Run the setup and follow the instructions on the screen.F
阅读全文
UNIDAC的安装
摘要:UNIDAC的安装1、在source目录中找到对应Delphi版本目录的make.bat文件,修改其中的 set IdeDir="D:\Application\DelphiXE2指到你的delphi实际安装目录2、运行make.bat3、把产生于bin目录的*.bpl文件拷贝到(分别对应32位和64
阅读全文
使用UNIDAC连接oracle时的参数设置
摘要:在uniconnection1里设置: server项位hostip:port:sid,如10.53.x.XX:1521:or10g 然后在Options里设置: charset:utf8 direct:true homename:OraDb10g_home1 UseUnicode:true
阅读全文
使用Navicat连接oracle时出现unsupported server character set ZHS16GBK的解决之道
摘要:原文网址http://blog.mn886.net/chenjianhua/show/ba1dc6f835be403ea159b0a5e2685ff2/index.html ORA-12737:Instant Client Light:unsupported server character set
阅读全文
RealThinClient SDK 学习笔记(1)
摘要:从客户端调用远程函数的两种方法 1: RtcClientModule1.Prepare('select'); // call the "select" function on the Server RtcClientModule1.Param.asText['table']:='biolife';
阅读全文
delphi中httpencode使用注意事项
摘要:delphi中httpencode使用注意事项 一、uses delphi中httpencode使用注意事项 一、uses delphi中httpencode使用注意事项 一、uses HTTPApp二、使用前要用UTF8Encode转换成utf-8编码HTTPEncode(UTF8Encode(T
阅读全文
如何在unigui中用代码展开一棵树?
摘要:procedure expandtree(tree:tunitreeview);begin UniSession.AddJS('setTimeout("' + Tree1.JSName + '.expandAll()", 500)');end;
阅读全文
按下回车触发点击
摘要:function keypress(sender, e, eOpts){ if (event.keyCode==13){top.document.getElementById(top.UniLogin.btn1.getId()).click();}}
阅读全文
【转】如何在html与delphi间交互代码
摘要:【转】如何在html与delphi间交互代码 (2015-11-19 22:16:24) 转载▼ 【转】如何在html与delphi间交互代码 转载▼ 标签: it 分类: uniGUI it uniGUI总群中台中cmj朋友为我们总结了如下内容,对于利用delphi+uniGUI开发应用,可以说是
阅读全文
UNIDBgrid里动态添加clientevents实现回车替换TAB
摘要://GRID里回车替换TABfunction cellkeydown(sender, td, cellIndex, record, tr, rowIndex, e, eOpts){ if (e.getKey()==13){var a=sender.editingPlugin;a.startEdit(
阅读全文
在unigui中为组件添加hint
摘要://改变hint的样式procedure TUniForm1.UniFormShow(Sender: TObject);var i: Integer;begin for I := 0 to Self.ControlCount - 1 do begin with TUniFormControl(Sel
阅读全文
eDocEngine_3.0.4.273的手动安装
摘要:1、安装FastReport 5; 2、编译Shared3(如对Delphi2007,打开gtSharedD11.groupproj项目文件),将产生的bpl、dcp文件分别拷贝到C:\Users\Public\Documents\RAD Studio\5.0目录的bpl、dcp目录下; 3、打开F
阅读全文
在Treeview中节点的data属性中保存记录类型及其消除的办法
摘要:一、保存记录类型在data指针中: procedure TForm1.getheaditems(pp:TfrxBand;hnode:THeadTreeNode;var i:Integer;var j:Integer;var zh,tmph:Integer;var tree:TTreeView);ty
阅读全文