From 0cc71611d0f6762a1c8012af8b044767ce613a49 Mon Sep 17 00:00:00 2001 From: SeungHo Yang Date: Wed, 20 Aug 2025 20:43:34 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B0=80=EA=B2=A9=EC=97=90=20=EA=B0=92?= =?UTF-8?q?=EC=9D=B4=20=EC=97=86=EB=8A=94=20=EA=B2=BD=EC=9A=B0=20=EB=B0=9C?= =?UTF-8?q?=EC=83=9D=ED=95=98=EB=8A=94=20null=20=EC=98=A4=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ISBN_Check/Main/Form1.cs | 1 + ISBN_Check/Main/Properties/AssemblyInfo.cs | 4 ++-- ISBN_Check/Main/Yes24.cs | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ISBN_Check/Main/Form1.cs b/ISBN_Check/Main/Form1.cs index 84dd836..df842d4 100644 --- a/ISBN_Check/Main/Form1.cs +++ b/ISBN_Check/Main/Form1.cs @@ -20,6 +20,7 @@ namespace ISBN_Check_test public Form1() { InitializeComponent(); + this.dataGridView1.EditMode = DataGridViewEditMode.EditOnKeystrokeOrF2; this.Text = $"{Application.ProductName} ver {Application.ProductVersion}"; } private void Form1_Load(object sender, EventArgs e) diff --git a/ISBN_Check/Main/Properties/AssemblyInfo.cs b/ISBN_Check/Main/Properties/AssemblyInfo.cs index 8c8d630..3960f8b 100644 --- a/ISBN_Check/Main/Properties/AssemblyInfo.cs +++ b/ISBN_Check/Main/Properties/AssemblyInfo.cs @@ -31,6 +31,6 @@ using System.Runtime.InteropServices; // // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 // 기본값으로 할 수 있습니다. -[assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.1")] // [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.1")] diff --git a/ISBN_Check/Main/Yes24.cs b/ISBN_Check/Main/Yes24.cs index de6ef87..6486707 100644 --- a/ISBN_Check/Main/Yes24.cs +++ b/ISBN_Check/Main/Yes24.cs @@ -126,7 +126,7 @@ namespace ISBN_Check_test string[,] grid = new string[dataGridView1.Rows.Count, 6]; for (int a = 0; a < dataGridView1.Rows.Count; a++) { - string price = dataGridView1.Rows[a].Cells["price"].Value.ToString(); + string price = dataGridView1.Rows[a].Cells["price"].Value?.ToString() ?? string.Empty; int count = a + 1; grid[a, 0] = count.ToString(); grid[a, 1] = dataGridView1.Rows[a].Cells["after_book_name"].Value.ToString();