⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 softdatatype.pas

📁 从网友处得到的蓝图财务进销存源程序
💻 PAS
字号:
unit SoftDataType;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ExtCtrls;

type
  TSoftDataType = class(TComponent)
  private
    FConnStr: string;
    { Private declarations }
  public
    { Public declarations }
    procedure FSetConn(AValue: string);
    function FGetConn: string;
    property Conn: string read FGetConn write FSetConn;
end;

implementation

{ TSoftDataType }

function TSoftDataType.FGetConn: string;
begin
  Result := FConnStr;
end;

procedure TSoftDataType.FSetConn(AValue: string);
begin
  FConnStr := AValue;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -