上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 37 下一页
  2009年2月3日
摘要: 多个资源文件释放的问题 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061113192259243.html 已经做好了一个资源文件,里面包含有若干二进制文件,我有TResourceStream来实现资源的释放,问题就在这里,我现在用的格式是 if... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(213) 评论(0) 推荐(0)
摘要: 关于汉字生成拼音的的函数 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114182436234.html 怎么把一个调用一个函数就能把一个汉字生成拼音 比如输入"青霉素"生成"qms" 知道的请告诉我一下,谢了! 来自超级猛料的函数: ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(215) 评论(0) 推荐(0)
摘要: MID DlL窗体与Application.Messagebox 结合后控件失效??? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114101124242.html 现在若干窗体,封装成DLL窗体(MDI子窗体). 现发现一个大问题: 如果MDI子窗体上有表格控... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(159) 评论(0) 推荐(0)
摘要: 如何把一个bin文件捆绑到一个可执行文件exe中? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114120737241.html 如何把一个bin文件捆绑到一个可执行文件exe中?而且可以读bin文件里的内容进行处理?请教各位大侠了,谢谢! 利用资源文件就可以 对,用resource... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(218) 评论(0) 推荐(0)
摘要: 经试验createprocess+sw_hide不能隐藏那些经过修改的绿色软件,有没有办法可以将绿软也隐藏呢? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114144853240.html 试验了多个软件,都不能隐藏,只好在运行过后再用showwindow(h,sw_hide)再隐藏一... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(260) 评论(0) 推荐(0)
摘要: windows.setparent可以将一个窗口显示到别的位置上,可是如果我只是想将这个窗口上的内容复制一份并显示在别的位置,该如何做呢? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114145117239.html 万分感谢回答的朋友! 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(706) 评论(0) 推荐(0)
摘要: 控制外部软件的启动及运行,如何将它的闪现窗体也隐藏呢? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114145807238.html 需要控制的外部软件的运行情况我了如指掌,所以可以用postmessage的办法全面控制它的运行,也可以用showwindow的show_hide隐藏它的... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(166) 评论(0) 推荐(0)
摘要: 如何获取每个进程的I/0的读写字节数???? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114150952237.html 1、进程的I/O字节数用什么可得到呢?晕。。。。。 2、98下用GETPROCESSTIMES而想得到进程使用率,为何就不行呢? 从WMI获取。想要什... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(172) 评论(0) 推荐(0)
摘要: WM_DROPFILES消息怎么用?一个界面上怎么让多个组件同时支持windows外部文件拖拽。DragAcceptFiles。 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114152826236.html unit Unit1; interface uses ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(984) 评论(0) 推荐(0)
摘要: 关于汉字生成拼音的的函数 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114182415235.html 怎么把一个调用一个函数就能把一个汉字生成拼音 比如输入"青霉素"生成"qms" 知道的请告诉我一下,谢了! 来自超级猛料的函数: ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(304) 评论(0) 推荐(0)
摘要: 如何用findwindowex遍历某个窗口里的所有子窗口? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115233321224.html 如何用findwindowex遍历某个窗口里的所有子窗口? 用EnumWindows 同意老之,枚举窗口 这么晚还没睡?楼上... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(3232) 评论(0) 推荐(0)
摘要: 运行两个或多个实例 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061116093635223.html 如何避免一个程序同时运行两个或多个实例? 参考:http://www.zahui.com/html/2/5251.htm 使用互斥对象让程序只运行一次 “... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(225) 评论(0) 推荐(0)
摘要: 用DELPHI代码的方式清理cookies,如何实现,比较急,高分送出。分不够,再给加,顶者有分 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061116105108222.html 用DELPHI代码的方式清理cookies,如何实现,比较急,高分送出。分不够,再给加,顶者有分 原理: ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(127) 评论(0) 推荐(0)
摘要: 后台服务怎样与前台交互? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061116113741221.html ShellWindow: IShellWindows; ShellWindow := CoShellWindows.Create; ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(321) 评论(0) 推荐(0)
摘要: RAS谁用过 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115103312230.html 我看windows sdk中有RasEnumEntries的说明,怎么调用,需要引用那个单元? 拨号连接的枚举哈。想用吗?我可以提供一些帮助 好多年以前做了一个多点远程库房管理,当时还没有... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(186) 评论(0) 推荐(0)
摘要: 我在delphi中用shellExecute启动了一个程序(ftp);然后想做一个等待,只到ftp进程结束,再继续下面的操作,请问如何监控这个进程是否已结束? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115114909229.html 如题,例如: ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(321) 评论(0) 推荐(0)
摘要: SendMessage到浏览器焦点输入框没有作用? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115123755228.html 使用SendMessage(GetFocus,WM_SETTEXT,0,longint(PChar('123456'))); 当前焦点是浏览器的一... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(455) 评论(0) 推荐(0)
摘要: 创建共享目录权限问题 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115131918227.html 我想通过代码实现设置一个文件夹为共享目录,然后怎么用代码写共享目录权限呢,例如完全控制,只读,修改等,希望能给我一个完整的代码小例子,谢谢各位老大 api, 注册表 ... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(618) 评论(0) 推荐(0)
摘要: 如何反查.DLL的函数?谢谢。。。 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115213413226.html 如题。扣谢。 1.用depends.exe工具来查 2.如果要自己写程序的话,那就从dll的pe头,分析导出表 有很多工具,ExeScope,Dum... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(142) 评论(0) 推荐(0)
摘要: PostMessage的疑问? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114212346233.html 以前已经知道使用消息函数PostMessage或SendMessage就可以给别的程序发消息,觉得很容易。 像“按键精灵”此类软件,也应该是使用发消息,模... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(371) 评论(0) 推荐(0)
摘要: 关于WinExec的问题? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061114224727232.html 下面为A程序调用B程序,弹出B的登陆界面,自动填入用户名密码来自动登陆B procedure TForm1.Image1Click(Sender: T... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(273) 评论(0) 推荐(0)
摘要: 消息Hook hook Focus 事件时遇到的问题 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115102712231.html 我想实现一个功能: 安装一个全局消息HOOK,捕获桌面上任意输入框的获得焦点和失去焦点的事件,为了便于测试我先写了一个线程hook做测试,hoo... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(500) 评论(1) 推荐(0)
摘要: Delphi调用VC编译的DLL Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061115223555225.html 尝试用Delphi调用VC编译的DLL,DLL接口函数中定义一般类型的参数时,可以正常调用,但是当在接口函数中定义回调函数时,在Delphi中将函数指针传入接口函数时总是报错... 阅读全文
posted @ 2009-02-03 09:47 delphi2007 阅读(271) 评论(0) 推荐(0)
摘要: 有关动态调用DLL的问题,请教。 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061117201842206.html DLL代码如下: library DLLSplitString; uses SysUtils, ... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(188) 评论(0) 推荐(0)
摘要: 使用LoadLibrary()调用DLL,使用FreeLibrary()释放之后出现访问报错 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061117215431205.html 动态链接库代码如下: library DLLSplitString; uses... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(2207) 评论(0) 推荐(0)
摘要: 帮帮我吗 Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061118103215204.html 我的后台数据库为ACCESS,有两张表,如下 学生基本信息表:学生学号(主),学生姓名,性别,出生日期,班号,联系电话,入校日期,备注; 学生成绩表:考试编号(主),所在班号,学... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(93) 评论(0) 推荐(0)
摘要: 特殊功能,实现方法! Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061118141925203.html 有没有一种简单的方法,可以监视一个exe文件是否运行或死掉,一但发现 立即重启此exe程序.改注册表能不能实现???... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(138) 评论(0) 推荐(0)
摘要: 如何找到网页图片地址并下载到本地保存? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061118142631202.html 我想做个学flashget那样浮动窗口,然后,拉动图片到这个窗口,然后,下载这张图片,并将图片下载的本地的地址反馈给Edit1.text!! 有高... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(599) 评论(0) 推荐(0)
摘要: 我在DLL中建立了一个TImage,但调用时出现错误"Cannot assign a TFont to a TFont" Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061118180523201.html DLL中的函数: Function InitImage(tar:TWin... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(489) 评论(0) 推荐(0)
摘要: 如何结束另一个程序的进程? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiAPI/html/delphi_20061116114828220.html 请问如何用Delphi程序结束另一个程序的进程?(请注意:是结束进程,而不仅仅是关闭程序) SEND一个WM_CLOSE或WM_DESTROY消息到此进程去 或者用Te... 阅读全文
posted @ 2009-02-03 09:44 delphi2007 阅读(421) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 37 下一页