-
14
获取驱动所支持的表名信息(Delphi),编程学习源码,很好的参考资料。(Get the driver supports table name information (Delphi), programmed learning source, a good reference.)
- 2014-02-07 11:06:17下载
- 积分:1
-
delphiSMS接受发送,借鉴别人的代码
delphiSMS接受发送,借鉴别人的代码-delphiSMS accept this, learn from other people"s code
- 2022-07-20 22:47:59下载
- 积分:1
-
campo
easy algorithm to 3d representation, and example of plotter vector fields.
- 2009-09-16 08:18:05下载
- 积分:1
-
dot matrix led ư ith atmega16
dot matrix led ư ith atmega16
- 2022-02-25 07:01:27下载
- 积分:1
-
水木清华BBS精华
水木清华BBS精华-Shuimu Tsinghua BBS essence.
- 2022-07-28 16:27:54下载
- 积分:1
-
3
说明: 新建一个应用程序,并添加两个Label控件,三个Edit控件,四个Button按钮。其中两个edit输入框用于输入整数,一个Edit输入框用于输出结果;Label标签控件用于显示当前所做的运算(例如:当单击加法按钮时即做加法运算,则label标签显示”+”号。);四个Button按钮分别完成加、减、乘、除运算。
编写程序,输入两个整数,顺序执行两个数的加、减、乘、除计算结果并输出。
(Create a new application, and add two Label controls, three Edit controls, four Button button. Two of them used to edit input box enter an integer, an input box for Edit output Label label control used to display the current operation done (for example: When you click that button to do adder addition operations, the labels show label " + " sign.) four Button button respectively add, subtract, multiply, with the exception of computing. Programming, enter the two integers, the order of the implementation of both the number of add, subtract, multiply, with the exception of the calculation results and output.)
- 2009-04-17 19:01:07下载
- 积分:1
-
delphi中的皮肤资源,利用该控件可以做出漂亮的delphi界面
delphi中的皮肤资源,利用该控件可以做出漂亮的delphi界面-delphi in skin resources, make use of the controls can make beautiful interface delphi
- 2022-01-21 01:09:16下载
- 积分:1
-
Delphi 使用Word作为自动化服务器
这个程序演示了使用Word作为自动化服务器,Delphi地自动化控制器是如何将一个查询结果插入到word文档中,返回应用参数.这个调用在英文和法文版的 Word中相同。对德文版的Word,这个过程名是翻译后的。如果这个过程不存在,存在一个不同的Word翻译版本,还可以插入中文Word,运行效果如图所示。
- 2022-04-29 13:18:27下载
- 积分:1
-
ACM
说明: Delphi经典控件:ACM音频控件下载(Delphi classic control: ACM audio control download)
- 2020-07-04 18:00:20下载
- 积分:1
-
Windows 剪贴板高级编程-Delphi源码实例
Windows 剪贴板高级编程-Delphi源码实例,其实也不是什么高级编程,挺基础的剪贴板应用。学习如何在Delphi环境下读取Windows剪贴板的内容。在编写一些系统辅助类的软件中,可使用到这些小技巧。以下代码:将剪贴板内容读取出来,在代码的执行放入一个按钮事件中:
procedure TForm1.Button2Click(Sender: TObject);
var
DataRec: TDataRecord;
Data: THandle;
PData: Pointer;
begin
Data := Clipboard.GetAsHandle(CF_CUSTOMFORMAT);
if Data = 0 then Exit;
PData := GlobalLock(Data);
Move(PData^, DataRec, GlobalSize(Data));
GlobalUnlock(Data);
with DataRec do
ShowMessage(Name + #13#10 + Sex + #13#10 + Hobby);
end;
- 2022-04-22 08:40:48下载
- 积分:1