단가($) 작업

This commit is contained in:
chi
2021-07-11 13:26:26 +09:00
parent 5316245ae5
commit 487d2ebe76
24 changed files with 988 additions and 626 deletions

View File

@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("21.07.09.1100")]
[assembly: AssemblyFileVersion("21.07.09.1100")]
[assembly: AssemblyVersion("21.07.11.1300")]
[assembly: AssemblyFileVersion("21.07.11.1300")]

View File

@@ -33,7 +33,8 @@ namespace Project
#endregion
[DisplayName("원달러환율")]
public double wondoller { get; set; }
[Description("시작 화면")]
public eFormList startForm { get; set; }
@@ -90,6 +91,7 @@ namespace Project
public override void AfterLoad()
{
if (wondoller < 1) wondoller = 1200;
if (Language.isEmpty()) Language = "Kor";
if (Password_Setup.isEmpty()) Password_Setup = "0000";
if (Password_User.isEmpty()) Password_User = "9999";

View File

@@ -133,6 +133,7 @@ namespace Project
Update_Site();
bw.RunWorkerAsync(); //background worker
UpdateControls();
//사용기록추적
Pub.CheckNRegister3(Application.ProductName, "chi", Application.ProductVersion);
@@ -323,7 +324,8 @@ namespace Project
void UpdateControls()
{
//환율재적용 - 210711
FCOMMON.info.dollertowon = Pub.setting.wondoller;
}
#endregion