42 lines
892 B
ObjectPascal
42 lines
892 B
ObjectPascal
|
|
unit IssueListTeams;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
|
||
|
|
Dialogs, IssueListForm, ImgList, ComCtrls, ToolWin, ExtCtrls, StdCtrls,
|
||
|
|
cxMaskEdit, cxDropDownEdit, cxLookupEdit, cxDBLookupComboBox, cxControls,
|
||
|
|
cxContainer, cxEdit, cxTextEdit, cxDBEdit, DBCtrls, cxDBLookupEdit,
|
||
|
|
cxNavigator;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrmTeams = class(TfrmBasic)
|
||
|
|
Label9: TLabel;
|
||
|
|
cxDBTextEdit1: TcxDBTextEdit;
|
||
|
|
Label5: TLabel;
|
||
|
|
cxDBLookupComboBox3: TcxDBLookupComboBox;
|
||
|
|
Label1: TLabel;
|
||
|
|
cxDBLookupComboBox1: TcxDBLookupComboBox;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
var
|
||
|
|
frmTeams: TfrmTeams;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
uses
|
||
|
|
IssueListForms, IssueListConst, IssueListData;
|
||
|
|
|
||
|
|
initialization
|
||
|
|
|
||
|
|
FormManager.RegisterForm(TeamsFormID, TfrmTeams, 'PROJECT TEAMS');
|
||
|
|
|
||
|
|
end.
|
||
|
|
|