Easter79 Easter79
2年前
tstringlist详细用法
TStringList类是在Delphi使用最厂的一个对像,我们这里一起来看看TStringList的详细用法.先把要讨论的几个属性列出来:1、CommaText2、Delimiter&DelimitedText3、Names&Values&ValueFromIndexTStrings是一个抽象类,在实际开发中,是
Easter79 Easter79
2年前
swing开发测试工具
要项目测试需要,使用swing编写个工具,给需要的人,留下代码:)界面如下:!(http://static.oschina.net/uploads/space/2016/1102/224313_1MMG_559291.png)用java写界面,真费事,使用delphi,分分钟的事情。特点:1、给JTextArea增加行数显示2、给
Stella981 Stella981
2年前
Delphi 自定义窗口过程WinProc
unitScWndProc;interfaceusesForms,Messages;constDDGM_FOOMSGWM_USER;//自定义消息implementationuseswindows,sysutils,D
Easter79 Easter79
2年前
TMS WEB Core v1.2预览版:新的Electron应用程序支持
2019年2月20日,星期三几个月前,我们已经开始与Electron进行(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Ftmssoftware.com%2Fsite%2Fblog.asp%3Fpost%3D495)实验。在工作概念验证之后,我们的目标是为Delphi开发人
Stella981 Stella981
2年前
Delphi 中的 XMLDocument 类详解(16)
unitUnit1;interfaceusesWindows,Messages,SysUtils,Variants,Classes,Graphics,Controls,Forms,Dialogs,xmldom,XMLIntf,msxmldom,XMLDoc,
Stella981 Stella981
2年前
Delphi中Chrome Chromium、Cef3学习笔记(三)
原文   http://blog.csdn.net/xtfnpgy/article/details/46635871Delphi与JS的交互问题:一、执行简单的JS上一篇已经讲过:chrm1.browser.MainFrame.ExecuteJavaScript('alert("abc");','about:blank',0);c
Stella981 Stella981
2年前
Delphi 深入浅出VCL(4)
!(https://oscimg.oschina.net/oscnet/6e33228bc6ef397f081a0d87f71640db59a.png)!(https://oscimg.oschina.net/oscnet/2fdb0007c14f3c13e7e63d1d7b925ee1988.png)!(https://oscimg.o
Stella981 Stella981
2年前
Delphi XE2 之 FireMonkey 入门(39)
TScrollBox是不少控件(TMemo、TListBox、TStringGrid、TTreeView、TImageViewer等)的基础,所以先学.TVertScrollBox只比TScrollBox少了竖滚动条.TFramedScrollBox、TFramedVertScrollBox只是套用了不同的样式,
Stella981 Stella981
2年前
Delphi中TStringList类常用属性方法详解
//TStringList常用方法与属性:varList:TStringList;i:Integer;beginList:TStringList.Create;List.Add('Strings1');{添加}List.Add(
Stella981 Stella981
2年前
Delphi中调用API函数经验点滴(三)
三、防止多次载入应用程序实例  某些应用程序需要禁止用户载入多次实例。比如,控制面板中的应用程序,不管用户打开多少次,同一应用程序只有一个实例,而且每一次试图重复打开都会自动激活已经存在的实例。  WindowsAPI提供了函数FindWindow,可以是应用程序在启动时检查自己是否已经存在。  该函数在Delphi中的语法