摘要: delphi 创建DCOM应用服务器程序, view—type library 弹出 project1.tlb对话框,添加新的方法、属性等后,点击上面的刷新按钮, 按F12或点击delphi开发工具面板上的 toggle form/unit 按钮,切换到project1_tlb.pas代码编辑窗口, 阅读全文
posted @ 2021-01-15 17:22 此木为柴 阅读(132) 评论(0) 推荐(0) 编辑
摘要: delphi中 CLX Application 是指跨平台的应用:VCL-Visual Component Library 可视组件库CLX-Component Library for Cross Platform 跨平台组件库 引用来源:https://wenku.baidu.com/view/f 阅读全文
posted @ 2021-01-15 17:20 此木为柴 阅读(159) 评论(0) 推荐(0) 编辑
摘要: delphi 创建DCOM应用服务器程序,tlb中要定义function函数的话,参数的标识要勾选out、retval。否则默认是创建的procedure过程。 阅读全文
posted @ 2021-01-15 17:18 此木为柴 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 引用来源:https://www.cnblogs.com/itjeff/p/3441187.html 阅读全文
posted @ 2021-01-15 17:16 此木为柴 阅读(148) 评论(0) 推荐(0) 编辑
摘要: uses winsock; ①获取本机机器名称: procedure TForm1.BitBtn1Click(Sender: TObject); var wsData:twsadata; hname:string; aname:array[0..100] of Char; begin WSAStar 阅读全文
posted @ 2021-01-15 17:14 此木为柴 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 引用来源:https://www.cnblogs.com/del/archive/2007/12/05/983657.html 阅读全文
posted @ 2021-01-15 17:13 此木为柴 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 引用来源:https://www.cnblogs.com/del/archive/2008/01/15/1039998.html 阅读全文
posted @ 2021-01-15 17:11 此木为柴 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 引用来源:https://www.jb51.net/article/52395.htm?pc 注:inherited关键字,用在子类中调用父类的实现。1、如果调用的是过程,可以在方法/过程体内,采用 "inherited 过程名;" 的形式调用。如 inherited;或inherited MyPr 阅读全文
posted @ 2021-01-15 17:08 此木为柴 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 引用来源:https://www.cnblogs.com/del/archive/2007/12/05/984509.html 打开To Do 注释列表:菜单-view-to_do list 阅读全文
posted @ 2021-01-15 17:01 此木为柴 阅读(72) 评论(0) 推荐(0) 编辑
摘要: procedure TForm1.BitBtn1Click(Sender: TObject); var i:Integer; begin asm mov i,77h end; ShowMessage(IntToStr(i));//119 end; 内嵌的汇编代码用 asm……end; 代码块包裹。 阅读全文
posted @ 2021-01-15 16:59 此木为柴 阅读(99) 评论(0) 推荐(0) 编辑