프로젝트시작
This commit is contained in:
@@ -0,0 +1,14 @@
|
|||||||
|
object Form1: TForm1
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Caption = #47700#51064#54268
|
||||||
|
ClientHeight = 932
|
||||||
|
ClientWidth = 1048
|
||||||
|
Color = clBtnFace
|
||||||
|
Font.Charset = DEFAULT_CHARSET
|
||||||
|
Font.Color = clWindowText
|
||||||
|
Font.Height = -12
|
||||||
|
Font.Name = 'Segoe UI'
|
||||||
|
Font.Style = []
|
||||||
|
TextHeight = 15
|
||||||
|
end
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
unit MainUnit;
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
||||||
|
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
|
||||||
|
|
||||||
|
type
|
||||||
|
TForm1 = class(TForm)
|
||||||
|
private
|
||||||
|
{ Private declarations }
|
||||||
|
public
|
||||||
|
{ Public declarations }
|
||||||
|
end;
|
||||||
|
|
||||||
|
var
|
||||||
|
Form1: TForm1;
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
{$R *.dfm}
|
||||||
|
|
||||||
|
end.
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
object Form1: TForm1
|
||||||
|
Left = 0
|
||||||
|
Top = 0
|
||||||
|
Caption = 'Form1'
|
||||||
|
ClientHeight = 670
|
||||||
|
ClientWidth = 815
|
||||||
|
Color = clBtnFace
|
||||||
|
Font.Charset = DEFAULT_CHARSET
|
||||||
|
Font.Color = clWindowText
|
||||||
|
Font.Height = -12
|
||||||
|
Font.Name = 'Segoe UI'
|
||||||
|
Font.Style = []
|
||||||
|
TextHeight = 15
|
||||||
|
end
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
program 데이타셋데모;
|
||||||
|
|
||||||
|
uses
|
||||||
|
Vcl.Forms,
|
||||||
|
MainUnit in '..\form\MainUnit.pas' {Form1};
|
||||||
|
|
||||||
|
{$R *.res}
|
||||||
|
|
||||||
|
begin
|
||||||
|
Application.Initialize;
|
||||||
|
Application.MainFormOnTaskbar := True;
|
||||||
|
Application.CreateForm(TForm1, Form1);
|
||||||
|
Application.Run;
|
||||||
|
end.
|
||||||
+1117
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<BorlandProject>
|
||||||
|
<Transactions>
|
||||||
|
<Transaction>2024-12-01 10:40:31.665,=C:\Delphi\Libraries\Unit1.pas</Transaction>
|
||||||
|
<Transaction>2024-12-01 10:41:57.933,D:\Delphi\Project\델파이스터디\dataset_demo-241201\source\form\MainUnit.pas=C:\Delphi\Libraries\Unit1.pas</Transaction>
|
||||||
|
<Transaction>2024-12-01 10:41:57.933,D:\Delphi\Project\델파이스터디\dataset_demo-241201\source\form\MainUnit.dfm=C:\Delphi\Libraries\Unit1.dfm</Transaction>
|
||||||
|
<Transaction>2024-12-01 10:42:41.276,D:\Delphi\Project\델파이스터디\dataset_demo-241201\source\데이타셋데모\데이타셋데모.dproj=C:\Delphi\Libraries\Project1.dproj</Transaction>
|
||||||
|
</Transactions>
|
||||||
|
</BorlandProject>
|
||||||
Reference in New Issue
Block a user