
Delphi
文章平均质量分 54
yfy_47
http://hi.baidu.com/yfy_47
展开
-
Delphi 整型数据类型 位与数值范围
Integer -2147483648..2147483647 signed 32-bit Cardinal 0..4294967295 unsigned 32-bit Shortint -128..127原创 2011-06-27 18:07:00 · 4977 阅读 · 0 评论 -
Delphi Application.MessageBox详解
Application.MessageBox详解引数:1. Text:要显示的讯息2. Caption:讯息视窗的标题列文字3. Flags:讯息旗标 3.1. 可指定讯息视窗上的图示 3.2. 可指定讯息视窗出现的按钮 3.3. 可指定预设Focus在哪一个按钮 3.4. 可指定是否 Modal 3.5. 其他原创 2012-04-05 13:46:59 · 639 阅读 · 0 评论 -
Delphi 调用C/C++的DLL
VC中DLL声名格式: Extern “C” void __declspec(dllexport) __stdcall ShowMess(HWND hwnd, char* mess);输出格式为:_ShowMess@8,“8”为函数参数字节数为了避免名称分裂,可采用以下方法解决:1.声明中不加__stdcall,采用VC默认格式__cdecl,但在Del原创 2012-04-11 16:00:32 · 1757 阅读 · 0 评论