-
java写的一个可收发EMAIL的类.可用其中的方法直接收发EMAIL.
java写的一个可收发EMAIL的类.可用其中的方法直接收发EMAIL.-wrote a java can send and receive e-mail and the like. The method can be used directly TX EMAIL.
- 2022-02-01 20:13:47下载
- 积分:1
-
C#个人理财管理程序
C#个人理财管理程序,功能模块:系统登录、注销与切换帐户、个人财务管理、系统维护、实用工具、窗口视图、使用帮助等。每个模块下细分有子功能。VS2005下可直接编译源代码。
- 2022-02-15 23:45:54下载
- 积分:1
-
cuda 并行编程代码
CUDA 是一种并行编程模型和软件环境,用于应对这种挑战,同时保证熟悉 C 语言等标准编程语言的程序员能够迅速掌握 CUDA。CUDA 的核心有三个重要抽象概念:线程组层次结构、共享存储器、屏蔽同步(barrier synchronization),可轻松将其作为 C 语言的最小扩展级公开给程序员。这本关于GPU高性能编程的代码对于初学GPU编程的学者来说是非常难得的,它通过程序实例让初学者更好地理解GPU编程。
- 2022-04-10 15:46:25下载
- 积分:1
-
用JBUILDER和SQL2
用JBUILDER和SQL2-with JBUILDER and SQL2
- 2022-01-23 11:17:46下载
- 积分:1
-
用C编写设备驱动程序的示例
用C编写设备驱动程序的示例-C device drivers example
- 2022-02-14 16:37:06下载
- 积分:1
-
二维三角网讲稿,详细讲解如何生成三角网及其主要的引用
二维三角网讲稿,详细讲解如何生成三角网及其主要的引用-Two-dimensional triangulation of the script in detail on how to generate triangulation and its main reference
- 2022-02-21 16:53:00下载
- 积分:1
-
几何体的体积表面积计算
几何体的体积表面积计算-geometric size of the surface area calculation
- 2022-02-05 19:14:33下载
- 积分:1
-
Delphi将TableToClass 表文件转换成类文件
Delphi将TableToClass 表文件转换成类文件,//刷新数据库procedure RefreshDB;
//读取数据库名称列表
function ReadDBNameList: TStringList;
//读取数据表名称列表
function ReadTableNameList: TStringList;
function TableToClassInfo(ATableName: string): TStrings;
//取得SQLServer字段的类型,返回相应Delphi变量类型
function GetColumnType(AType: integer): string;
//取得SQLServer字段的类型,返回相应字符串
function GetDBColumnType(AType: integer): string;
//仅生成类信息
procedure GenerateClassInfo;
//生成Unit文件
procedure GenerateUnitFile;
procedure TableToClassInfo1(ATableName: string; var AClassList1, AClassList2: TStringList);
//取得保存的文件名,没有扩展名
function GetFileName(AFileName: string): string;
//保存文件
procedure SaveToFile(AList: TStringList = nil);
//取取选择数据表的数量
- 2022-03-24 10:52:12下载
- 积分:1
-
用简单的语言来增强权威的行政长官与一个模块的源代码…
用易语言做的CE源码带提升权限模块用易语言做的CE源码带提升权限模块-With easy language to enhance the authority of the CE source code with a module for easy language to enhance the authority of the CE source code with a module
- 2023-06-16 09:05:03下载
- 积分:1
-
Delphi 设置打印纸大小
Delphi 设置打印纸张大小,手动设置打印纸的长度和宽度,自定义纸张。相关代码:
procedure TForm1.SetPaperSize(cx, cy: Integer);
var
a,b,c: array[0..255]of char;
bb: Cardinal;
ee: PDEVMODE;
begin
printer.PrinterIndex := printer.PrinterIndex;
printer.GetPrinter(a,b,c,bb);
ee:= GlobalLock(bb);
ee^.dmPaperSize := DMPAPER_USER;
ee^.dmPaperLength := cy*10;
ee^.dmPaperWidth := cx*10;
ee^.dmFields :=ee^.dmFields or DM_PAPERSIZE or
DM_PAPERWIDTH or
DM_PAPERLENGTH;
ee^.dmFields := ee^.dmFields or DMBIN_MANUAL;
ee^.dmDefaultSource :=DMBIN_MANUAL;
GlobalUnlock(bb);
printer.PrinterIndex := printer.PrinterIndex;
end;
- 2023-01-17 00:20:03下载
- 积分:1