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

📄 pfibconditionsedit.pas

📁 FIBPlus is a component suite intended for work with InterBase. It is direct, fast and flexible Inter
💻 PAS
字号:
{***************************************************************}
{ FIBPlus - component library for direct access to Firebird and }
{ Interbase databases                                           }
{                                                               }
{    FIBPlus is based in part on the product                    }
{    Free IB Components, written by Gregory H. Deatz for        }
{    Hoagland, Longo, Moran, Dunst & Doukas Company.            }
{    mailto:gdeatz@hlmdd.com                                    }
{                                                               }
{    Copyright (c) 1998-2001 Serge Buzadzhy                     }
{    Contact: buzz@devrace.com                                  }
{                                                               }
{ ------------------------------------------------------------- }
{    FIBPlus home page      : http://www.fibplus.net/           }
{    FIBPlus support e-mail : fibplus@devrace.com               }
{ ------------------------------------------------------------- }
{                                                               }
{  Please see the file License.txt for full license information }
{***************************************************************}

unit pFIBConditionsEdit;

interface

{$I FIBPlus.inc}
uses
  Windows, Messages, SysUtils,
  Classes, Graphics, Controls, Forms,
  Dialogs, ComCtrls, ExtCtrls, StdCtrls, pFIBProps, fraConditionsEdit
  {$IFDEF LINUX}
    ,VKCodes
  {$ENDIF}
  ;

type
  TfrmEditCheckStrings = class(TForm)
    fraEdConditions1: TfraEdConditions;
    procedure FormCreate(Sender: TObject);
  private
  public

  end;


function EditConditions(Value:TConditions):boolean;

implementation
uses
  StrUtil, FIBConsts;

{$R *.dfm}

function EditConditions(Value:TConditions):boolean;
var
 frm: TfrmEditCheckStrings;
begin
 frm:= TfrmEditCheckStrings.Create(nil);
 with frm do
 try
  fraEdConditions1.PrepareFrame(Value);
  Result:=ShowModal=mrOk;
  if Result then
  begin
    fraEdConditions1.ApplyChanges;
{    Value.Clear;
    for i:=0 to Pred(ListView1.Items.Count) do
    begin
     Value.AddCondition(ListView1.Items[i].Caption,FTexts[i],ListView1.Items[i].Checked)
    end;}
  end;
 finally
  frm.Free;
 end;
end;


procedure TfrmEditCheckStrings.FormCreate(Sender: TObject);
begin
  Caption := FPConditionsCaption;
end;

end.

⌨️ 快捷键说明

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