代码搜索:SysUtils
找到约 10,000 项符合「SysUtils」的源代码
代码结果 10,000
www.eeworm.com/read/417291/10996828
~pas config.~pas
unit config;
interface
uses
SysUtils,forms;
type
TXQWYConfig=class
connectionstr:string;
public
class function getConnectionStr:string;
end;
implementation
class function TXQW
www.eeworm.com/read/417291/10996829
pas config.pas
unit config;
interface
uses
SysUtils,forms;
type
TXQWYConfig=class //定义连接管理类
public
class function getConnectionStr:string; //定义类的方法,得到连接字符串
end;
implementation
class function
www.eeworm.com/read/417284/10997138
~pas config.~pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=a;Persist Security Info=True;'+
'User ID=sa
www.eeworm.com/read/417284/10997141
pas config.pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=sa;Persist Security Info=True;'+
'User ID=s
www.eeworm.com/read/417283/10997379
~pas config.~pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=a;Persist Security Info=True;'+
'User ID=sa
www.eeworm.com/read/417283/10997382
pas config.pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=sa;Persist Security Info=True;'+
'User ID=s
www.eeworm.com/read/417279/10997530
~pas config.~pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=a;Persist Security Info=True;'+
'User ID=sa
www.eeworm.com/read/417279/10997534
pas config.pas
unit Config;
interface
uses
SysUtils,Classes,DB,ADODB;
const
//连接字符串
connectionStr='Provider=SQLOLEDB.1;'+
'Password=sa;Persist Security Info=True;'+
'User ID=s
www.eeworm.com/read/417148/11002271
dpr project1.dpr
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils,
GADelphi in 'GADelphi.pas';
var
ga:TGA;
lchrom,chromsize:integer;
begin
ga:=TGA.Create;
ga.Go;
readln;
end.
www.eeworm.com/read/271086/11008127
pas about.pas
unit About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs;
type
TFormAbout = class(TForm)
private
{ Private declarations }