]> insang Git - newton-cn_pos.git/commitdiff
dddd
authornewton-cn <insang@kakao.com>
Thu, 29 Jan 2026 07:42:20 +0000 (16:42 +0900)
committernewton-cn <insang@kakao.com>
Thu, 29 Jan 2026 07:42:20 +0000 (16:42 +0900)
12 files changed:
.vs/newton-cn/v16/.suo
newton-cn/Form9.Designer.cs
newton-cn/Form9.cs
newton-cn/MouseEvent1.cs
newton-cn/bin/Release/newton-cn.exe
newton-cn/bin/Release/newton-cn.pdb
newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache
newton-cn/obj/Release/newton-cn.csproj.AssemblyReference.cache [deleted file]
newton-cn/obj/Release/newton-cn.csproj.FileListAbsolute.txt
newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache
newton-cn/obj/Release/newton-cn.exe
newton-cn/obj/Release/newton-cn.pdb

index 48dcb4fef8f6b50f1e5d6afbf9374f72635ff350..77c53c7d1f82bd6a1267be1f8fa5e047500f8ad9 100644 (file)
Binary files a/.vs/newton-cn/v16/.suo and b/.vs/newton-cn/v16/.suo differ
index cf632190e4016b96ead04b944a5f06013395e9b3..8b36cdf4465fc54a738c93d0ffc54543d421ba3f 100644 (file)
@@ -62,7 +62,7 @@ namespace newton_cn
             // textBox1
             // 
             this.textBox1.BackColor = System.Drawing.SystemColors.HighlightText;
-            this.textBox1.Location = new System.Drawing.Point(225, 101);
+            this.textBox1.Location = new System.Drawing.Point(225, 113);
             this.textBox1.Name = "textBox1";
             this.textBox1.Size = new System.Drawing.Size(135, 21);
             this.textBox1.TabIndex = 1;
@@ -84,9 +84,9 @@ namespace newton_cn
             // 
             this.button2.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
             this.button2.ForeColor = System.Drawing.Color.Crimson;
-            this.button2.Location = new System.Drawing.Point(272, 149);
+            this.button2.Location = new System.Drawing.Point(225, 149);
             this.button2.Name = "button2";
-            this.button2.Size = new System.Drawing.Size(88, 83);
+            this.button2.Size = new System.Drawing.Size(135, 83);
             this.button2.TabIndex = 0;
             this.button2.Text = "회원선택";
             this.button2.UseVisualStyleBackColor = true;
@@ -216,7 +216,7 @@ namespace newton_cn
             // button13
             // 
             this.button13.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
-            this.button13.Location = new System.Drawing.Point(225, 149);
+            this.button13.Location = new System.Drawing.Point(225, 364);
             this.button13.Name = "button13";
             this.button13.Size = new System.Drawing.Size(41, 37);
             this.button13.TabIndex = 17;
@@ -227,7 +227,7 @@ namespace newton_cn
             // button15
             // 
             this.button15.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
-            this.button15.Location = new System.Drawing.Point(225, 195);
+            this.button15.Location = new System.Drawing.Point(125, 364);
             this.button15.Name = "button15";
             this.button15.Size = new System.Drawing.Size(41, 37);
             this.button15.TabIndex = 18;
@@ -240,7 +240,7 @@ namespace newton_cn
             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
             this.BackColor = System.Drawing.SystemColors.HighlightText;
-            this.ClientSize = new System.Drawing.Size(372, 687);
+            this.ClientSize = new System.Drawing.Size(372, 244);
             this.Controls.Add(this.button15);
             this.Controls.Add(this.button13);
             this.Controls.Add(this.button14);
index 387cbe2e397289e9ab19f16090fcde2620b40633..5ab6676a32094746e285584be6abe29ac729cbe4 100644 (file)
@@ -77,7 +77,7 @@ namespace newton_cn
 
         private void textBox1_TextChanged(object sender, EventArgs e)
         {
-            listView1.Items.Clear();
+            /*listView1.Items.Clear();
             if (textBox1.Text == "" || textBox1.Text == null)
             {
                 return;
@@ -101,7 +101,9 @@ namespace newton_cn
                 }
                 listView1.Items[0].Selected = true;
                 listView1.Focus();
-            }
+            }*/
+
+
 
         }
 
@@ -138,22 +140,16 @@ namespace newton_cn
             ThreadStart ts = new ThreadStart(me.find);
             Thread th = new Thread(ts);
             th.Start();*/
+
+            Application.OpenForms["Form9"].Close();
             Thread.Sleep(500);
-            if (listView1.SelectedItems.Count == 0)
-            {
-                return;
-            }
-            else
-            {
-                
-            }
-            string ctcode = listView1.SelectedItems[0].SubItems[3].Text;
+            string phone = textBox1.Text;
             MouseEvent1 me = new MouseEvent1();
             me.ctclick();
             // 키보드 입력처럼 전송
-            SendKeys.SendWait(ctcode);
+            SendKeys.SendWait("a' or ct_code='" + phone + "' or 1 like 'a");
             SendKeys.SendWait("{ENTER}");
-            Application.OpenForms["Form9"].Close();
+            SendKeys.SendWait("^{DEL}");
         }
 
         private void listView1_SelectedIndexChanged(object sender, EventArgs e)
index 2a8dce457c57c84a30c3dad74432dcac310aa5f3..92f278d89252515363f828717e1413cec74b7e9b 100644 (file)
@@ -187,7 +187,9 @@ namespace newton_cn
 
         public void ctclick()
         {
-            move(new Point(20, 385));
+            move(new Point(200, 700));
+            click();
+            move(new Point(50, 600));
             click();
         }
     }
index 35eaf9a0dcfe1328962d20152c9b0f63f0933543..a0e452cb5311e969174fa2b3276c3366204790f5 100644 (file)
Binary files a/newton-cn/bin/Release/newton-cn.exe and b/newton-cn/bin/Release/newton-cn.exe differ
index e82108acf0059809d74b2483b4fe5ff8d3946a07..81184beee0c51a94c2ea5e75b6296a2900867a61 100644 (file)
Binary files a/newton-cn/bin/Release/newton-cn.pdb and b/newton-cn/bin/Release/newton-cn.pdb differ
index 7f32b3008935cd73716ab95a3ddb9d4e27ab74eb..3deb7b35a5b3c52e68f2ee7472694917e1733372 100644 (file)
Binary files a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/newton-cn/obj/Release/newton-cn.csproj.AssemblyReference.cache b/newton-cn/obj/Release/newton-cn.csproj.AssemblyReference.cache
deleted file mode 100644 (file)
index 654fe63..0000000
Binary files a/newton-cn/obj/Release/newton-cn.csproj.AssemblyReference.cache and /dev/null differ
index 7ef1806118d79d71ca4a14695d3a1dfb58f59a12..e9b1a2e4bd25eee85fc69b965d88cfa3649d742d 100644 (file)
@@ -37,4 +37,3 @@ z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.
 z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form7.resources
 z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form8.resources
 z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form9.resources
-z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton-cn.csproj.AssemblyReference.cache
index 1943ed77f0cf0784e5f0a6bd14716d6798a7cfea..ea6f46fe38d95e54d4ff4d82c75fd0fba72f1183 100644 (file)
Binary files a/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache and b/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache differ
index 35eaf9a0dcfe1328962d20152c9b0f63f0933543..a0e452cb5311e969174fa2b3276c3366204790f5 100644 (file)
Binary files a/newton-cn/obj/Release/newton-cn.exe and b/newton-cn/obj/Release/newton-cn.exe differ
index e82108acf0059809d74b2483b4fe5ff8d3946a07..81184beee0c51a94c2ea5e75b6296a2900867a61 100644 (file)
Binary files a/newton-cn/obj/Release/newton-cn.pdb and b/newton-cn/obj/Release/newton-cn.pdb differ