123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.IO.Ports;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Text;
- using System.Text.RegularExpressions;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- using Excel = Microsoft.Office.Interop.Excel;
- using System.Reflection;
- using Microsoft.WindowsAPICodePack.Dialogs;
- using System.Threading;
- using System.Data.OleDb;
- using System.Collections;
- //using Microsoft.Office.Interop.Excel;
- namespace APL_TestCheck
- {
- public partial class Main : Form
- {
- public string Serial_Name { get => serialPort.PortName; set => serialPort.PortName = value; }
- public Main()
- {
- InitializeComponent();
- }
- private void panel_PanelMode_MouseLeave(object sender, EventArgs e)
- {
- System.Windows.Forms.Panel Panel = (System.Windows.Forms.Panel)sender;
- Panel.BackColor = Color.FromArgb(0, 159, 200);
- label_GPSTest_MouseLeave(null, null);
- }
- private void panel_PanelMode_MouseMove(object sender, MouseEventArgs e)
- {
- System.Windows.Forms.Panel Panel = (System.Windows.Forms.Panel)sender;
- Panel.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_GPSTest_MouseLeave(object sender, EventArgs e)
- {
- if (panel_GpsTest.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 255);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_Catm1Test.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 255);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_SensorTest.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 255);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_MergeMain.Visible == true)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 255);
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_SnCheckMain.Visible == true)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 255);
- }
- }
- private void label_SnCheck_MouseMove(object sender, MouseEventArgs e)
- {
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_Merge_MouseMove(object sender, MouseEventArgs e)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_Catm1Test_MouseMove(object sender, MouseEventArgs e)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_SensorTest_MouseMove(object sender, MouseEventArgs e)
- {
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_GPSTest_MouseMove(object sender, MouseEventArgs e)
- {
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 255);
- }
- public struct POINT { public int X, Y; }
- [DllImport("user32.dll")] // 현재 마우스 위치를 얻기위한 API함수.
- public extern static void GetCursorPos(out POINT point);
- System.Drawing.Point FormLocation; // 현재 폼 위치
- POINT LastLocation = new POINT(); // 방금 전의 마우스 위치
- POINT CurrentLocation = new POINT(); // 현재 마우스 위치
- // 폼이 움직일 양 = CurrentLocation - LastLocation.
- bool IsMouseMoveStart = false; // 현재 마우스 움직이기 기능이 켜져있는가.
- // 만약 이게 없으면 그냥 폼위에서
- private void panel_Main_MouseDown(object sender, MouseEventArgs e)
- {
- GetCursorPos(out CurrentLocation);
- FormLocation = this.Location;
- IsMouseMoveStart = true;
- }
- private void panel_Main_MouseMove(object sender, MouseEventArgs e)
- {
- if (!IsMouseMoveStart) return;
- GetCursorPos(out LastLocation);
- FormLocation.X -= (CurrentLocation.X - LastLocation.X);
- FormLocation.Y -= (CurrentLocation.Y - LastLocation.Y);
- this.Location = FormLocation;
- CurrentLocation = LastLocation;
- }
- private void panel_Main_MouseUp(object sender, MouseEventArgs e)
- {
- IsMouseMoveStart = false;
- }
- private void pictureBox_min_red_Click(object sender, EventArgs e)
- {
- this.WindowState = FormWindowState.Minimized;
- }
- private void pictureBox_X_red_Click(object sender, EventArgs e)
- {
- //Application.Exit();
- }
- private void label_GPSTest_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = true;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = false;
- }
- private void label_Catm1Test_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = false;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = true;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = false;
- }
- private void label_SensorTest_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = false;
- panel_SensorTest.Visible = true;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = false;
- }
- private void Main_Load(object sender, EventArgs e)
- {
- Serial_Initialize(ref comboBox_Port);
- dataGridView_Gps.RowCount = 1;
- dataGridView_Catm1.RowCount = 1;
- dataGridView_Sensor.RowCount = 1;
- dataGridView_SnInsert.RowCount = 1;
- dataGridView_Gps.Rows[0].Cells[2].Value = "100";
- dataGridView_Gps.Rows[0].Cells[3].Value = "40";
- dataGridView_Gps.Rows[0].Cells[5].Value = "50";
- dataGridView_Gps.Rows[0].Cells[6].Value = "0";
- panel_GpsTest.Visible = true;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = false;
- pictureBox_Check1.Visible = false;
- pictureBox_Check2.Visible = false;
- pictureBox_Check3.Visible = false;
- pictureBox_Check4.Visible = false;
- button_Path_Click(null, null);
- }
- public void Serial_Initialize(ref ComboBox cb_port)
- {
- this.serialPort = new System.IO.Ports.SerialPort();
- this.serialPort.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.sPort_DataReceived);
- cb_port.BeginUpdate();
- foreach (string comport in SerialPort.GetPortNames())//foreach (string comport in SerialPort_TestProgram.GetPortNames())
- {
- cb_port.Items.Add(comport);
- }
- cb_port.EndUpdate();
- //SerialPort 초기 설정.
- // serialPort.Encoding = Encoding.GetEncoding("Windows-1252");
- cb_port.DataSource = SerialPort.GetPortNames();
- try
- {
- serialPort.PortName = Serial_Name = cb_port.SelectedItem.ToString();
- serialPort.BaudRate = (int)115200;
- serialPort.DataBits = (int)8;
- serialPort.Parity = System.IO.Ports.Parity.None;
- serialPort.StopBits = StopBits.One;
- }
- catch { }
- }
- private delegate void StringSend(string Text);
- private delegate void ByteSend(byte[] Text);
- string startStr = "V";
- string endStr = "\n";
- public void Serial_DataRecvFunction(object sender, SerialDataReceivedEventArgs e)
- {
- int TmpLength = 0;
- //System.Threading.Thread.Sleep(50);
- int nLnegth = serialPort.BytesToRead;
- byte[] btdata = new byte[nLnegth];
- serialPort.Read(btdata, 0, nLnegth);
- string data = Encoding.Default.GetString(btdata);
- if (checkBox_TerminalStop.Checked == true)
- return;
- // string data = serialPort.ReadExisting();
- if (panel_SensorTest.Visible == true)
- {
- if (data.Contains(startStr))
- {
- data = data.Substring(data.IndexOf(startStr));
- if (data.Contains(endStr))
- {
- this.Invoke(new StringSend(Data_Recv_Str), data);
- }
- }
- else
- {
- if (data.Contains("No need write SN"))
- {
- MessageBox.Show("이미 시리얼 넘버가 등록되어 있습니다.");
- }
- else
- {
- this.Invoke(new StringSend(Data_Recv_Str), data);
- }
- }
- }
- else
- {
- this.Invoke(new StringSend(Data_Recv_Str), data);
- }
- /*try
- {
- this.Invoke(new ByteSend(Data_Recv_Str), btdata);
- }
- catch
- {
- }*/
- /****
- *메모리 누수 방지용 코드
- */
- System.GC.Collect(0, GCCollectionMode.Forced);
- System.GC.WaitForFullGCComplete();
- }
- int offset = 0;
- byte[] rxBuffer;
- private void sPort_DataReceived(object sender, SerialDataReceivedEventArgs e)
- {
- if (checkBox_TerminalStop.Checked == true)
- return;
- try
- {
- if (offset == 0)
- {
- rxBuffer = new byte[4096];
- }
- string rxString = "";
- int intRecSize = serialPort.BytesToRead;
- if (intRecSize != 0)
- {
- /* if (panel_GpsTest.Visible == true)
- {
- byte[] btdata = new byte[intRecSize];
- serialPort.Read(btdata, 0, intRecSize);
- string data = Encoding.Default.GetString(rxBuffer);
- this.Invoke(new StringSend(Data_Recv_Str), data);
- }
- else*/
- {
- serialPort.Read(rxBuffer, offset, intRecSize);
- offset += intRecSize;
- for (int iTemp = 0; iTemp < offset; iTemp++)
- {
- rxString += Convert.ToChar(rxBuffer[iTemp]);
- }
- if (panel_SensorTest.Visible == true)
- {
- startStr = "V";
- endStr = "\n";
- }
- else if (panel_Catm1Test.Visible == true)
- {
- startStr = "B";
- endStr = "\n";
- }
- else if (panel_GpsTest.Visible == true)
- {
- startStr = "$";
- endStr = "\n";
- }
- if (rxString.Contains(startStr))
- {
- rxString = rxString.Substring(rxString.IndexOf(startStr));
- if (rxString.Contains(endStr))
- {
- this.Invoke(new StringSend(Data_Recv_Str), rxString);
- //program.dataReceived(rxString, "Receive");
- offset = 0;
- }
- }
- }
- }
- }
- catch { }
- }
- private void label_Port_MouseClick(object sender, MouseEventArgs e)
- {
- }
- int LineLimit = 500;
- [DllImport("user32.dll")]
- public static extern int SendMessage(IntPtr hWnd, Int32 wMsg, bool wParam, Int32 lParam);
- private const int WM_SETREDRAW = 11;
- public void Data_Recv_Str(string text)
- {
- System.Windows.Forms.RichTextBox tbReceived = null;
- if (panel_GpsTest.Visible == true)
- {
- tbReceived = richTextBox_Gps;
- }
- else if (panel_Catm1Test.Visible == true)
- {
- tbReceived = richTextBox_catm1;
- }
- else if (panel_SensorTest.Visible == true)
- {
- tbReceived = richTextBox_Sensor;
- }
- int nLimitLines = Convert.ToInt32(LineLimit); //제한 라인 수
- try
- {
- try
- {
- SendMessage(this.Handle, WM_SETREDRAW, false, 0);
- }
- catch (Exception e) { MessageBox.Show(e.StackTrace); }
- if (tbReceived.Lines.Length > nLimitLines)
- {
- LinkedList<string> tempLines = new LinkedList<string>(tbReceived.Lines);
- while ((tempLines.Count - nLimitLines) > 0)
- {
- tempLines.RemoveFirst();
- }
- tbReceived.Lines = tempLines.ToArray();
- }
- try
- {
- SendMessage(this.Handle, WM_SETREDRAW, true, 0);
- }
- catch { return; }
- if (checkBox_GPGSV.Checked == true && panel_GpsTest.Visible == true)
- {
- tbReceived.AppendText(GPS_TestFunc(text));
- }
- else if (panel_SensorTest.Visible == true)
- {
- Sensor_TestFunc(text);
- tbReceived.AppendText(text);
- }
- else if (panel_Catm1Test.Visible == true)
- {
- Catm1_TestFunc(text);
- tbReceived.AppendText(text);
- }
- else
- {
- tbReceived.AppendText(text);
- }
- tbReceived.SelectionStart = tbReceived.Text.Length;//맨 마지막 선택...
- tbReceived.ScrollToCaret();
- }
- catch { try { SendMessage(this.Handle, WM_SETREDRAW, true, 0); } catch { return; } }
- }
- public void Data_Recv_Str(byte[] text)
- {
- string strtext = Encoding.Default.GetString(text);
- System.Windows.Forms.RichTextBox tbReceived = null;
- if (panel_GpsTest.Visible == true)
- {
- tbReceived = richTextBox_Gps;
- }
- else if (panel_Catm1Test.Visible == true)
- {
- tbReceived = richTextBox_catm1;
- }
- else if (panel_SensorTest.Visible == true)
- {
- tbReceived = richTextBox_Sensor;
- }
- int nLimitLines = Convert.ToInt32(LineLimit); //제한 라인 수
- try
- {
- try
- {
- SendMessage(this.Handle, WM_SETREDRAW, false, 0);
- }
- catch (Exception e) { MessageBox.Show(e.StackTrace); }
- if (tbReceived.Lines.Length > nLimitLines)
- {
- LinkedList<string> tempLines = new LinkedList<string>(tbReceived.Lines);
- while ((tempLines.Count - nLimitLines) > 0)
- {
- tempLines.RemoveFirst();
- }
- tbReceived.Lines = tempLines.ToArray();
- }
- try
- {
- SendMessage(this.Handle, WM_SETREDRAW, true, 0);
- }
- catch { return; }
- if (checkBox_GPGSV.Checked == true && panel_GpsTest.Visible == true)
- {
- tbReceived.AppendText(GPS_TestFunc(Encoding.Default.GetString(text)));
- }
- else if (panel_SensorTest.Visible == true)
- {
- Sensor_TestFunc(strtext);
- tbReceived.AppendText(strtext);
- }
- else
- {
- tbReceived.AppendText(strtext);
- }
- tbReceived.SelectionStart = tbReceived.Text.Length;//맨 마지막 선택...
- tbReceived.ScrollToCaret();
- }
- catch { try { SendMessage(this.Handle, WM_SETREDRAW, true, 0); } catch { return; } }
- }
- public int WordNum(String data, String fixdata)
- {
- MatchCollection matches = Regex.Matches(data, fixdata);
- return matches.Count;
- }
- double GPS_TestSnRValue = 0;
- int Gps_CurrentCount = 0;
- int TestVal = 0;
- int GPGGA_Cnt = 0,ColdCnt = 0;
- int ArrageGpsData = 0;
- double[] Gps_Arrange = new double[11];
- int gps_arrangecnt = 0;
- private string GPS_TestFunc(string data)
- {
- int Gps_Count, Sentence, SnrIndex = 3;
- // string tmpstr = "$GPGSV,2,1,08,10,69,246,47,12,50,082,43,15,12,108,29,20,49,190,45*77\r\n";
- // string tmpstr1 = "$GPGSV,2,2,08,24,36,052,37,25,48,159,42,31,17,245,,32,46,312,45*74\r\n";
- string[] tmpstr = new String[3];
- string[] GPGGAstr = new String[3];
- string splitstr = null, str = data;
- string[] sp = str.Split(',');
- string[] GPGGA_sp = str.Split(',');
- int Losscount = 0;
- int location1, location2, LastLocation, SentenceCount;
- int GPGGA_Location,ColdTime = 0;
- bool SaveOk = false;
- try
- {
- /*
- if(TestVal == 0)
- {
- str = tmpstr;
- TestVal++;
- }
- else
- {
- str = tmpstr1;
- TestVal = 0;
- }
- */
- GPGGA_Location = str.IndexOf("$GPGGA");
- // SentenceCount = WordNum(str, "GPGGA");
- //ColdTime = Convert.ToInt32(dataGridView_Sensor.Rows[0].Cells[4].Value);
- if (GPGGA_Location != -1)
- {
- str = str.Substring(GPGGA_Location);
- location2 = str.IndexOf("\r\n");
- splitstr = str.Substring(location2 + 2);
- GPGGAstr[0] = str.Substring(0, location2 + 2);
- GPGGA_sp = GPGGAstr[0].Split(',');
- if (GPGGA_sp[2] != "")
- {
- GPGGA_Cnt++;
- if (GPGGA_Cnt >= 5)
- {
- if (GPGGA_Cnt >= 15)
- {
- SaveOk = true;
- }
- }
- // dataGridView_Gps.Rows[0].Cells[3].Value = GPGGA_sp[2];
-
- }
- else
- {
- ColdCnt++;
- dataGridView_Gps.Rows[0].Cells[4].Value = ColdCnt.ToString();
- return "";
- }
- }
- location1 = str.IndexOf("$GPGSV");
- SentenceCount = WordNum(str, "GPGSV");
- GPS_TestSnRValue = 0;
- Gps_CurrentCount = 0;
- if (location1 != -1)
- {
- if (gps_arrangecnt < 10)
- {
- for (int ii = 0; ii < SentenceCount; ii++)
- {
- SnrIndex = 3;
- if (ii != 0)
- str = splitstr;
- location1 = str.IndexOf("$GPGSV");
- str = str.Substring(location1);
- location2 = str.IndexOf("\r\n");
- splitstr = str.Substring(location2 + 2);
- tmpstr[ii] = str = str.Substring(0, location2 + 2);
- sp = str.Split(',');
- if (sp[3].Contains("*"))
- {
- sp[3] = sp[3].Substring(0, 2);
- // dataGridView_Gps.Rows[0].Cells[1].Value = sp[3];
- Gps_Arrange[gps_arrangecnt++] = Convert.ToDouble(sp[3]);
- return str;
- }
- else
- {
- Sentence = Convert.ToInt32(sp[2]);
- Gps_Count = Convert.ToInt32(sp[3]);
- for (int i = 0; i < 4; i++)
- {
- SnrIndex += 4;
- if (sp[SnrIndex].Contains("*"))
- {
- LastLocation = sp[SnrIndex].IndexOf("*") - 2;
- sp[SnrIndex] = sp[SnrIndex].Substring(0, 2);
- GPS_TestSnRValue += Convert.ToInt32(sp[SnrIndex]);
- }
- else
- {
- if (sp[SnrIndex] == "")
- {
- sp[SnrIndex] = "0";
- Losscount++;
- }
- GPS_TestSnRValue += Convert.ToInt32(sp[SnrIndex]);
- }
- Gps_CurrentCount++;
- if (Gps_CurrentCount == Gps_Count)
- {
- GPS_TestSnRValue /= (Gps_Count - Losscount);
- GPS_TestSnRValue = Math.Round(GPS_TestSnRValue, 1);
- // dataGridView_Gps.Rows[0].Cells[1].Value = GPS_TestSnRValue.ToString();
- Gps_Arrange[gps_arrangecnt++] = Convert.ToDouble(GPS_TestSnRValue);
- break;
- }
- }
- }
- }
- }
- if(gps_arrangecnt == 10 && dataGridView_Gps.Rows[0].Cells[1].Value == null)
- {
- for (int retcnt = 0; retcnt < 10; retcnt++)
- {
- Gps_Arrange[10] += Gps_Arrange[retcnt];
- Gps_Arrange[retcnt] = 0;
- }
- Gps_Arrange[10] = Gps_Arrange[10] / 10;
- dataGridView_Gps.Rows[0].Cells[1].Value = Gps_Arrange[10].ToString();
- }
- str = null;
- for (int a = 0; a < SentenceCount; a++)
- str += tmpstr[a];
- if (dataGridView_Sensor.Rows[0].Cells[0].Value != null && SaveOk == true)
- {
- int SnrMinref = Convert.ToInt32(dataGridView_Gps.Rows[0].Cells[3].Value);
- int SnrValue = Convert.ToInt32(dataGridView_Gps.Rows[0].Cells[1].Value);
- if (SnrMinref > SnrValue)
- {
- MessageBox.Show("APL 부적합 Device 입니다.");
- return "";
- }
- button_GpsTestSave_Click(null, null);
- gps_arrangecnt = 0;
- ColdCnt = 0;
- SaveOk = false;
- }
- return str;
- }
- return "";
- }
- catch (Exception e) { /*MessageBox.Show(e.StackTrace); */}
- return "";
- }
- string SensorData = null;
- private void Sensor_TestFunc(string data)
- {
- string str = data;
- string[] sp = new string[11];
- try
- {
- if (data.Contains("\r\n") == false)
- {
- return;
- }
- else
- {
- SensorData += data;
- str = SensorData;
- }
- //if (dataGridView_Sensor.Rows[0].Cells[0].Value != null)
- {
- //location1 = str.IndexOf("\r\n");
- //str = str.Substring(0, location1);
- sp = str.Split(',');
- if (sp[0].Contains("V") == false/* || sp.Length != 11*/)
- {
- SensorData = null;
- return;
- }
- dataGridView_Sensor.Rows[0].Cells[5].Value = sp[0]; //version
- dataGridView_Sensor.Rows[0].Cells[2].Value = "8627850" + sp[2]; //,IMEI
- dataGridView_Sensor.Rows[0].Cells[3].Value = sp[3];//, Phone Number,
- dataGridView_Sensor.Rows[0].Cells[4].Value = sp[4];//USIM Number
- dataGridView_Sensor.Rows[0].Cells[6].Value = sp[5];//, Battery Voltage,
- dataGridView_Sensor.Rows[0].Cells[7].Value = sp[6];// System Voltage,
- dataGridView_Sensor.Rows[0].Cells[8].Value = sp[7];//Temp, BMA400 값 출력 x, y, z
- dataGridView_Sensor.Rows[0].Cells[9].Value = sp[8];//Temp, BMA400 값 출력 x, y, z
- dataGridView_Sensor.Rows[0].Cells[10].Value = sp[9];//Temp, BMA400 값 출력 x, y, z
- if (sp[10].Contains("\r"))
- {
- int loc = sp[10].IndexOf("\r");
- sp[10] = sp[10].Substring(0, loc);
- }
- dataGridView_Sensor.Rows[0].Cells[11].Value = sp[10];//Temp, BMA400 값 출력 x, y, z
- SensorData = null;
- string value = "";
- /*if (checkBox_Edit.Checked == false)
- {
- if (InputBox("번호 입력", "일련 번호:", ref value) == DialogResult.OK)
- {
- // SN
- dataGridView_Sensor.Rows[0].Cells[1].Value = Name = value;
- serialPort.Write("APLSN Write:" + value + "\r\n");
- button_SensorTestSave();
- for (int i = 0; i < 12; i++)
- dataGridView_Sensor.Rows[0].Cells[i].Value = null;
- }
- }*/
- if (dataGridView_Sensor.Rows[0].Cells[0].Value != null)
- {
- if (dataGridView_Sensor.Rows[0].Cells[1].Value != null)
- {
- //dataGridView_Sensor.Rows[0].Cells[1].Value = Name = value;
- if (dataGridView_Sensor.Rows[0].Cells[1].Value.ToString().Length == 7)
- serialPort.Write("APLSN Write:" + dataGridView_Sensor.Rows[0].Cells[1].Value.ToString() + "\r\n");
- else
- MessageBox.Show("SKT SN이 틀립니다.");
- }
- // button_SensorTestSave();
- }
- dataGridView_Sensor.Refresh();
- }
- return;
- }
- catch (Exception ex) { /*MessageBox.Show(ex.StackTrace); */ }
- }
- string Catm1Data = null;
- private void Catm1_TestFunc(string data)
- {
- string str = data;
- string[] sp = new string[4];
- try
- {
- if (data.Contains("\r\n") == false)
- {
- return;
- }
- else
- {
- Catm1Data += data;
- str = Catm1Data;
- }
- //if (dataGridView_Catm1.Rows[0].Cells[0].Value != null)
- {
- //location1 = str.IndexOf("\r\n");
- //str = str.Substring(0, location1);
- sp = str.Split(',');
- if (sp[0].Contains("B") == false/* || sp.Length != 11*/)
- {
- Catm1Data = null;
- return;
- }
- dataGridView_Catm1.Rows[0].Cells[1].Value = sp[0]; //Modem Ver
- dataGridView_Catm1.Rows[0].Cells[2].Value = sp[1];//RSRP
- if (sp[2].Contains("\r"))
- {
- int loc = sp[2].IndexOf("\r");
- sp[2] = sp[2].Substring(0, loc);
- }
- dataGridView_Catm1.Rows[0].Cells[3].Value = sp[2];//RSRQ
- Catm1Data = null;
- dataGridView_Catm1.Refresh();
- }
- return;
- }
- catch (Exception ex) { /*MessageBox.Show(ex.StackTrace); */ }
- }
- private void label_Port_MouseLeave(object sender, EventArgs e)
- {
- panel_Port.BackColor = Color.FromArgb(0, 159, 200);
- }
- private void label_Port_MouseMove(object sender, MouseEventArgs e)
- {
- panel_Port.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_Port_Click(object sender, EventArgs e)
- {
- // Boolean ret = false;
- try
- {
- if (serialPort.IsOpen) // 이미 포트가 열려 있을 때
- { //When the port is open
- serialPort.Close();
- label_Port.Text = "Port Open";
- //ret = true;
- }
- else//When the port is close //포트가 열려 있지 않을 때
- {
- if (comboBox_Port.Text != "")
- {
- serialPort.PortName = Serial_Name = comboBox_Port.SelectedItem.ToString();
- serialPort.BaudRate = Convert.ToInt32(comboBox_bps.Text);
- serialPort.Open();
- label_Port.Text = "Port Close";
- // Debug.Debug_Main_Form_Get(this.main_form);
- }
- else
- {
- MessageBox.Show("Port is not set");
- // ret = true;
- }
- }
- }
- catch
- {
- MessageBox.Show("Port Open Faile" + Serial_Name);
- }
- // return ret;
- }
- public static DialogResult InputBox(string title, string promptText, ref string value)
- {
- Form form = new Form();
- System.Windows.Forms.Label label = new System.Windows.Forms.Label();
- System.Windows.Forms.TextBox textBox = new System.Windows.Forms.TextBox();
- System.Windows.Forms.Button buttonOk = new System.Windows.Forms.Button();
- System.Windows.Forms.Button buttonCancel = new System.Windows.Forms.Button();
- form.Text = title;
- label.Text = promptText;
- textBox.Text = value;
- buttonOk.Text = "OK";
- buttonCancel.Text = "Cancel";
- buttonOk.DialogResult = DialogResult.OK;
- buttonCancel.DialogResult = DialogResult.Cancel;
- label.SetBounds(9, 20, 372, 13);
- textBox.SetBounds(12, 36, 372, 20);
- buttonOk.SetBounds(228, 72, 75, 23);
- buttonCancel.SetBounds(309, 72, 75, 23);
- label.AutoSize = true;
- textBox.Anchor = textBox.Anchor | AnchorStyles.Right;
- buttonOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
- buttonCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
- form.ClientSize = new Size(396, 107);
- form.Controls.AddRange(new Control[] { label, textBox, buttonOk, buttonCancel });
- form.ClientSize = new Size(Math.Max(300, label.Right + 10), form.ClientSize.Height);
- form.FormBorderStyle = FormBorderStyle.FixedDialog;
- form.StartPosition = FormStartPosition.CenterScreen;
- form.MinimizeBox = false;
- form.MaximizeBox = false;
- form.AcceptButton = buttonOk;
- form.CancelButton = buttonCancel;
- DialogResult dialogResult = form.ShowDialog();
- value = textBox.Text;
- return dialogResult;
- }
- private void button_Clear_Click(object sender, EventArgs e)
- {
- System.Windows.Forms.RichTextBox tbReceived = null;
- if (panel_GpsTest.Visible == true)
- {
- tbReceived = richTextBox_Gps;
- }
- else if (panel_Catm1Test.Visible == true)
- {
- tbReceived = richTextBox_catm1;
- }
- else if (panel_SensorTest.Visible == true)
- {
- tbReceived = richTextBox_Sensor;
- }
- tbReceived.Text = "";
- }
- string FileSaveSet = null;
- void Gps_ThreadRun(string dst, object Value1, object Value2)
- {
- //DST : 위치
- //Value1 : 생산 번호
- //Value2 : SNR
- Thread Gps_thread = new Thread(delegate ()
- {
- Gps_DataxlsWrite(dst, Value1, Value2);
- });
- Gps_thread.Start();
- }
- void Catm1_ThreadRun(object dst, object Product, object Modemver, object Rsrp, object Rsrq)
- {
- //DST : 위치
- //Value1 : 생산 번호
- //Value2 : Modem Ver
- //Value3 : RSRP
- //Value4 : RSRQ
- Thread Catm1_thread = new Thread(delegate ()
- {
- Catm1_DataxlsWrite(dst, Product, Modemver, Rsrp, Rsrq);
- });
- Catm1_thread.Start();
- }
- void Sensor_ThreadRun(object[] data)
- {
- //DST : 위치
- //Value1 : 생산 번호
- //Value2 : Modem Ver
- //Value3 : RSRP
- //Value4 : RSRQ
- Thread Catm1_thread = new Thread(delegate ()
- {
- Sensor_DataxlsWrite(data);
- });
- Catm1_thread.Start();
- }
- void Sninsert_ThreadRun(object[] data)
- {
- //DST : 위치
- //Value1 : 생산 번호
- //Value2 : SKT NUM
- //Value3 : IMEI
- Thread Sninsert_thread = new Thread(delegate ()
- {
- Sninsert_DataxlsWrite(data);
- });
- Sninsert_thread.Start();
- }
- //Thread rTh_Gps;
- private void button_GpsTestSave_Click(object sender, EventArgs e)
- {
- //rTh_Gps = new Thread(new ParameterizedThreadStart(Gps_DataxlsWrite));
- //Thread.Sleep(1000);
- AutoClosingMessageBox.Show("저장 중.....", "알림", 1000);
- string CheckProductionNum = null;
- try
- {
- CheckProductionNum = dataGridView_Gps.Rows[0].Cells[0].Value.ToString();
- }
- catch
- {
- }
- try
- {
- if (!CheckProductionNum.Contains("BL-VITE00-V"))
- {
- MessageBox.Show("잘못된 생산 번호 입니다.");
- return;
- }
- }
- catch
- {
- MessageBox.Show("생산번호를 적어주세요.");
- }
- string Ref_Xls_File = new System.IO.DirectoryInfo(System.Windows.Forms.Application.StartupPath).ToString();
- string Dst_Xls_File = null;
- Ref_Xls_File = Ref_Xls_File + @"\APL_200305.xls";
- FileInfo SrcfileInfo = new FileInfo(Ref_Xls_File);
- FileInfo DstfileInfo;
- if (dataGridView_Gps.Rows[0].Cells[0].Value != null
- && dataGridView_Gps.Rows[0].Cells[1].Value != null)
- {
- if (SrcfileInfo.Exists)
- {
- if (FileSaveSet == null)
- {
- button_Path_Click(null, null);
- return;
- // MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- }
- else
- {
- // File Copy 후 Data 입력
- Dst_Xls_File = FileSaveSet + @"\" + dataGridView_Gps.Rows[0].Cells[0].Value.ToString() + @".xls";
- DstfileInfo = new FileInfo(Dst_Xls_File);
- if (DstfileInfo.Exists)
- {
- if (MessageBox.Show("이미 파일이 있습니다.\r\n 덮어씌우겠습니까?", "YesOrNo", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- try
- {
- // File.Copy(Ref_Xls_File, Dst_Xls_File, true);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.StackTrace);
- return;
- }
- }
- else
- {
- //MessageBox.Show("아니요 클릭");
- return; // 아니오시 Return;
- }
- }
- else
- {
- File.Copy(Ref_Xls_File, Dst_Xls_File);
- Thread.Sleep(2000);
- }
- }
- }
- else
- {
- MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- return;
- }
- }
- else
- {
- MessageBox.Show("생산번호/GPS SNR 값이 제대로 입력 되지 않았습니다.\r\n확인후 다시 저장하세요.");
- return;
- }
- // rTh_Gps.Start();
- //Gps_DataxlsWrite(Dst_Xls_File, dataGridView_Gps.Rows[0].Cells[0].Value, dataGridView_Gps.Rows[0].Cells[1].Value);
- Gps_ThreadRun(Dst_Xls_File, dataGridView_Gps.Rows[0].Cells[0].Value, dataGridView_Gps.Rows[0].Cells[1].Value);
- dataGridView_Gps.Rows[0].Cells[0].Value = null;
- dataGridView_Gps.Rows[0].Cells[1].Value = null;
- dataGridView_Gps.Rows[0].Cells[4].Value = null;
- dataGridView_Gps.Refresh();
- // if (!di.Exists) { di.Create(); }
- //string tmppath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
- #if false
- if (dataGridView_Gps.Rows[0].Cells[1].Value != null)
- {
- string path = @"xxxx.txt";
- FileInfo file = new FileInfo(path);
- if (file.Exists)
- { //파일이 있는지
- //복사(경로,덮어쓰기 옵션 기본값 false)
- //만약 덮어쓰기 false일 때 파일이 존재하면 에러남.
- file.CopyTo(@"xxx2.txt", true);
- }
- }
- #endif
- //this.Close();
- //MessageBox.
- }
- private void button_SensorTestSave()
- {
- string CheckProductionNum = null;
- object[] data = new object[13];// 0 :파일위치
- AutoClosingMessageBox.Show("저장 중.....", "알림", 1000);
- try
- {
- CheckProductionNum = dataGridView_Sensor.Rows[0].Cells[0].Value.ToString();
- }
- catch
- {
- }
- try
- {
- if (!CheckProductionNum.Contains("BL-VITE00-V"))
- {
- MessageBox.Show("잘못된 생산 번호 입니다.");
- return;
- }
- }
- catch
- {
- MessageBox.Show("생산번호를 적어주세요.");
- }
- string Ref_Xls_File = new System.IO.DirectoryInfo(System.Windows.Forms.Application.StartupPath).ToString();
- string Dst_Xls_File = null;
- Ref_Xls_File = Ref_Xls_File + @"\APL_200305.xls";
- FileInfo SrcfileInfo = new FileInfo(Ref_Xls_File);
- FileInfo DstfileInfo;
- if (dataGridView_Sensor.Rows[0].Cells[0].Value != null)
- {
- if (SrcfileInfo.Exists)
- {
- if (FileSaveSet == null)
- {
- button_Path_Click(null, null);
- return;
- // MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- }
- else
- {
- // File Copy 후 Data 입력
- Dst_Xls_File = FileSaveSet + @"\" + dataGridView_Sensor.Rows[0].Cells[0].Value.ToString() + @".xls";
- DstfileInfo = new FileInfo(Dst_Xls_File);
- if (DstfileInfo.Exists)
- {
- if (MessageBox.Show("이미 파일이 있습니다.\r\n 덮어씌우겠습니까?", "YesOrNo", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- try
- {
- // File.Copy(Ref_Xls_File, Dst_Xls_File, true);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.StackTrace);
- return;
- }
- }
- else
- {
- //MessageBox.Show("아니요 클릭");
- return; // 아니오시 Return;
- }
- }
- else
- {
- File.Copy(Ref_Xls_File, Dst_Xls_File);
- Thread.Sleep(2000);
- }
- }
- }
- else
- {
- MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- return;
- }
- }
- else
- {
- MessageBox.Show("생산번호 값이 제대로 입력 되지 않았습니다.\r\n확인후 다시 저장하세요.");
- return;
- }
- //
- data[0] = Dst_Xls_File;
- for (int i = 0; i < 12; i++)
- data[i + 1] = dataGridView_Sensor.Rows[0].Cells[i].Value;
- //Sensor_DataxlsWrite();
- Sensor_ThreadRun(data);
- AutoClosingMessageBox.Show("완료 되었습니다.", "알림", 1000);
- for (int i = 0; i < 12; i++)
- dataGridView_Sensor.Rows[0].Cells[i].Value = null;
- dataGridView_Sensor.Refresh();
- // dataGridView_Sensor.Rows[0].Cells[0].Value = null;
- // dataGridView_Sensor.Rows[0].Cells[1].Value = null;
- // if (!di.Exists) { di.Create(); }
- //string tmppath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
- #if false
- if (dataGridView_Gps.Rows[0].Cells[1].Value != null)
- {
- string path = @"xxxx.txt";
- FileInfo file = new FileInfo(path);
- if (file.Exists)
- { //파일이 있는지
- //복사(경로,덮어쓰기 옵션 기본값 false)
- //만약 덮어쓰기 false일 때 파일이 존재하면 에러남.
- file.CopyTo(@"xxx2.txt", true);
- }
- }
- #endif
- }
- private void button_Catm1TestSave()
- {
- string CheckProductionNum = null;
- AutoClosingMessageBox.Show("저장 중.....", "알림", 1000);
- try
- {
- CheckProductionNum = dataGridView_Catm1.Rows[0].Cells[0].Value.ToString();
- }
- catch
- {
- }
- try
- {
- if (!CheckProductionNum.Contains("BL-VITE00-V"))
- {
- MessageBox.Show("잘못된 생산 번호 입니다.");
- return;
- }
- }
- catch
- {
- MessageBox.Show("생산번호를 적어주세요.");
- }
- string Ref_Xls_File = new System.IO.DirectoryInfo(System.Windows.Forms.Application.StartupPath).ToString();
- string Dst_Xls_File = null;
- Ref_Xls_File = Ref_Xls_File + @"\APL_200305.xls";
- FileInfo SrcfileInfo = new FileInfo(Ref_Xls_File);
- FileInfo DstfileInfo;
- if (dataGridView_Catm1.Rows[0].Cells[0].Value != null)
- {
- if (SrcfileInfo.Exists)
- {
- if (FileSaveSet == null)
- {
- button_Path_Click(null, null);
- return;
- // MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- }
- else
- {
- // File Copy 후 Data 입력
- Dst_Xls_File = FileSaveSet + @"\" + dataGridView_Catm1.Rows[0].Cells[0].Value.ToString() + @".xls";
- DstfileInfo = new FileInfo(Dst_Xls_File);
- if (DstfileInfo.Exists)
- {
- if (MessageBox.Show("이미 파일이 있습니다.\r\n 덮어씌우겠습니까?", "YesOrNo", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- try
- {
- // File.Copy(Ref_Xls_File, Dst_Xls_File, true);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.StackTrace);
- return;
- }
- }
- else
- {
- //MessageBox.Show("아니요 클릭");
- return; // 아니오시 Return;
- }
- }
- else
- {
- File.Copy(Ref_Xls_File, Dst_Xls_File);
- Thread.Sleep(2000);
- }
- }
- }
- else
- {
- MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- return;
- }
- }
- else
- {
- MessageBox.Show("생산번호 값이 제대로 입력 되지 않았습니다.\r\n확인후 다시 저장하세요.");
- return;
- }
- Catm1_ThreadRun(Dst_Xls_File, dataGridView_Catm1.Rows[0].Cells[0].Value, dataGridView_Catm1.Rows[0].Cells[1].Value, dataGridView_Catm1.Rows[0].Cells[2].Value, dataGridView_Catm1.Rows[0].Cells[3].Value);
- for (int i = 0; i < 4; i++)
- dataGridView_Catm1.Rows[0].Cells[i].Value = null;
- dataGridView_Catm1.Refresh();
- AutoClosingMessageBox.Show("완료 되었습니다.", "알림", 1000);
- //Catm1_DataxlsWrite(Dst_Xls_File, dataGridView_Catm1.Rows[0].Cells[0].Value, dataGridView_Catm1.Rows[0].Cells[1].Value, dataGridView_Catm1.Rows[0].Cells[2].Value, dataGridView_Catm1.Rows[0].Cells[3].Value);
- // dataGridView_Catm1.Rows[0].Cells[0].Value = null;
- // dataGridView_Catm1.Rows[0].Cells[1].Value = null;
- // if (!di.Exists) { di.Create(); }
- //string tmppath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
- #if false
- if (dataGridView_Gps.Rows[0].Cells[1].Value != null)
- {
- string path = @"xxxx.txt";
- FileInfo file = new FileInfo(path);
- if (file.Exists)
- { //파일이 있는지
- //복사(경로,덮어쓰기 옵션 기본값 false)
- //만약 덮어쓰기 false일 때 파일이 존재하면 에러남.
- file.CopyTo(@"xxx2.txt", true);
- }
- }
- #endif
- }
- private void button_SninsertTestSave()
- {
- string CheckProductionNum = null;
- object[] data = new object[4];// 0 :파일위치
- AutoClosingMessageBox.Show("저장 중.....", "알림", 1000);
- try
- {
- CheckProductionNum = dataGridView_SnInsert.Rows[0].Cells[0].Value.ToString();
- }
- catch
- {
- }
- try
- {
- if (!CheckProductionNum.Contains("BL-VITE00-V"))
- {
- MessageBox.Show("잘못된 생산 번호 입니다.");
- return;
- }
- }
- catch
- {
- MessageBox.Show("생산번호를 적어주세요.");
- }
- string Ref_Xls_File = new System.IO.DirectoryInfo(System.Windows.Forms.Application.StartupPath).ToString();
- string Dst_Xls_File = null;
- Ref_Xls_File = Ref_Xls_File + @"\APL_200305.xls";
- FileInfo SrcfileInfo = new FileInfo(Ref_Xls_File);
- FileInfo DstfileInfo;
- if (dataGridView_SnInsert.Rows[0].Cells[0].Value != null)
- {
- if (SrcfileInfo.Exists)
- {
- if (FileSaveSet == null)
- {
- button_Path_Click(null, null);
- return;
- // MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- }
- else
- {
- // File Copy 후 Data 입력
- Dst_Xls_File = FileSaveSet + @"\" + dataGridView_SnInsert.Rows[0].Cells[0].Value.ToString() + @".xls";
- DstfileInfo = new FileInfo(Dst_Xls_File);
- if (DstfileInfo.Exists)
- {
- if (MessageBox.Show("이미 파일이 있습니다.\r\n 덮어씌우겠습니까?", "YesOrNo", MessageBoxButtons.YesNo) == DialogResult.Yes)
- {
- try
- {
- // File.Copy(Ref_Xls_File, Dst_Xls_File, true);
- }
- catch (Exception ex)
- {
- MessageBox.Show(ex.StackTrace);
- return;
- }
- }
- else
- {
- //MessageBox.Show("아니요 클릭");
- return; // 아니오시 Return;
- }
- }
- else
- {
- File.Copy(Ref_Xls_File, Dst_Xls_File);
- Thread.Sleep(2000);
- }
- }
- }
- else
- {
- MessageBox.Show("레퍼런스 엑셀 파일이 존재하지 않습니다. \r\n강차장님에게 문의 하세요.");
- return;
- }
- }
- else
- {
- MessageBox.Show("생산번호 값이 제대로 입력 되지 않았습니다.\r\n확인후 다시 저장하세요.");
- return;
- }
- //
- data[0] = Dst_Xls_File;
- for (int i = 0; i < 3; i++)
- data[i + 1] = dataGridView_SnInsert.Rows[0].Cells[i].Value;
- //Sensor_DataxlsWrite();
- Sninsert_ThreadRun(data);
- AutoClosingMessageBox.Show("완료 되었습니다.", "알림", 1000);
- for (int i = 0; i < 3; i++)
- dataGridView_SnInsert.Rows[0].Cells[i].Value = null;
- dataGridView_SnInsert.Refresh();
- // dataGridView_Sensor.Rows[0].Cells[0].Value = null;
- // dataGridView_Sensor.Rows[0].Cells[1].Value = null;
- // if (!di.Exists) { di.Create(); }
- //string tmppath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
- #if false
- if (dataGridView_Gps.Rows[0].Cells[1].Value != null)
- {
- string path = @"xxxx.txt";
- FileInfo file = new FileInfo(path);
- if (file.Exists)
- { //파일이 있는지
- //복사(경로,덮어쓰기 옵션 기본값 false)
- //만약 덮어쓰기 false일 때 파일이 존재하면 에러남.
- file.CopyTo(@"xxx2.txt", true);
- }
- }
- #endif
- }
- private void ExcelKill()
- {
- System.Diagnostics.Process[] process = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- foreach (System.Diagnostics.Process p in process)
- {
- if (!string.IsNullOrEmpty(p.ProcessName))
- {
- try
- {
- p.Kill();
- }
- catch { }
- }
- }
- }
- Excel.Application ExcelApp = null;
- Excel.Workbook wb = null;
- Excel.Worksheet ws = null;
- private void Gps_DataxlsWrite(object dst, object Value1, object Value2)
- {
- /* #region // 프로세스 얻기
- System.Diagnostics.Process[] BeforeExcelProcess;
- BeforeExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- ArrayList arlProcessID = new ArrayList();
- for (int i = 0; i < BeforeExcelProcess.Length; i++)
- {
- arlProcessID.Add(BeforeExcelProcess[i].Id);
- }
- #endregion
- */
- ExcelKill();
- //Write
- //파일이 존재 한다면..삭제 하고..
- /*if (File.Exists("C:\\Test.xls"))
- {
- File.Delete("C:\\Test.xls");
- }*/
- try
- {
- ExcelApp = new Excel.Application();
- Thread.Sleep(1);
- try
- {
- wb = ExcelApp.Workbooks.Open(dst.ToString(), 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- }
- catch { ExcelKill(); return; }
- Thread.Sleep(1);
- ws = wb.Worksheets["Sheet1"] as Excel.Worksheet;
- Thread.Sleep(1);
- /*ExcelApp = new Excel.Application();
- wb = ExcelApp.Workbooks.Open(dst.ToString(), 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- wb = ExcelApp.Workbooks.Open(dst.ToString());*/
- ws = wb.Worksheets["Sheet1"] as Excel.Worksheet;
- //엑셀 시트 인덱스 번호는 0,0 부터 시작 하는 것이 아니라 1,1 A1 부터 시작 함. 0,0 으로 시작하면 오류...
- //시트에 값 쓰기...
- ws.Cells[8, 9] = Value1.ToString();//dataGridView_Gps.Rows[0].Cells[0].Value;
- ws.Cells[8, 11] = Value2.ToString();//dataGridView_Gps.Rows[0].Cells[1].Value;
- /*ws.Cells[1, 3] = "123";
- ws.Cells[1, 4] = "1234";
- ws.Cells[2, 1] = "Test1"; //A2
- ws.Cells[3, 1] = "Test12"; //A3
- ws.Cells[4, 1] = "Test123"; //A4*/
- //다른 이름으로 저장하기...
- wb.Save(); // => 오픈한 파일 그대로 저장...
- /* wb.SaveAs("C:\\Test.xls",
- Excel.XlFileFormat.xlWorkbookNormal,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Excel.XlSaveAsAccessMode.xlNoChange,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing);
- */
- //파일 닫기...
- wb.Close(false, Type.Missing, Type.Missing);
- // wb = null;
- ExcelApp.Quit();
- }
- catch (Exception ex)
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- finally
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- //ExcelApp = null;
- GC.Collect();
- }
- }
- private void Sensor_DataxlsWrite(object[] data)
- {
- ExcelKill();
- /* #region // 프로세스 얻기
- System.Diagnostics.Process[] BeforeExcelProcess;
- BeforeExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- ArrayList arlProcessID = new ArrayList();
- for (int i = 0; i < BeforeExcelProcess.Length; i++)
- {
- arlProcessID.Add(BeforeExcelProcess[i].Id);
- }
- #endregion*/
- //Write
- //파일이 존재 한다면..삭제 하고..
- /*if (File.Exists("C:\\Test.xls"))
- {
- File.Delete("C:\\Test.xls");
- }*/
- try
- {
- ExcelApp = new Excel.Application();
- Thread.Sleep(1);
- try
- {
- wb = ExcelApp.Workbooks.Open(data[0].ToString(), 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- }
- catch { ExcelKill(); return; }
- Thread.Sleep(1);
- ws = wb.Worksheets["Sheet1"] as Excel.Worksheet;
- Thread.Sleep(1);
- //엑셀 시트 인덱스 번호는 0,0 부터 시작 하는 것이 아니라 1,1 A1 부터 시작 함. 0,0 으로 시작하면 오류...
- //시트에 값 쓰기...
- ws.Cells[8, 9] = data[1].ToString();//dataGridView_Sensor.Rows[0].Cells[0].Value; // 제조 번호
- ws.Cells[8, 4] = data[2].ToString();//dataGridView_Sensor.Rows[0].Cells[1].Value; // 일련번호
- ws.Cells[8, 6] = data[3].ToString();//dataGridView_Sensor.Rows[0].Cells[2].Value; //IMEI
- ws.Cells[8, 7] = data[4].ToString();//dataGridView_Sensor.Rows[0].Cells[3].Value;// PHONE
- ws.Cells[8, 8] = data[5].ToString();//dataGridView_Sensor.Rows[0].Cells[4].Value;//USIM
- ws.Cells[8, 10] = data[6].ToString();//dataGridView_Sensor.Rows[0].Cells[5].Value;//FIRM VER
- ws.Cells[8, 18] = data[7].ToString();//dataGridView_Sensor.Rows[0].Cells[6].Value;//BATT
- ws.Cells[8, 19] = data[8].ToString();//dataGridView_Sensor.Rows[0].Cells[7].Value;//SYS
- ws.Cells[8, 20] = data[9].ToString();//dataGridView_Sensor.Rows[0].Cells[8].Value;//TEMP
- ws.Cells[8, 21] = data[10].ToString();//dataGridView_Sensor.Rows[0].Cells[9].Value;//BMA
- ws.Cells[8, 22] = data[11].ToString();//dataGridView_Sensor.Rows[0].Cells[10].Value;//BMA
- ws.Cells[8, 23] = data[12].ToString();//dataGridView_Sensor.Rows[0].Cells[11].Value;//BMA
- /*ws.Cells[1, 3] = "123";
- ws.Cells[1, 4] = "1234";
- ws.Cells[2, 1] = "Test1"; //A2
- ws.Cells[3, 1] = "Test12"; //A3
- ws.Cells[4, 1] = "Test123"; //A4*/
- //다른 이름으로 저장하기...
- wb.Save(); // => 오픈한 파일 그대로 저장...
- /* wb.SaveAs("C:\\Test.xls",
- Excel.XlFileFormat.xlWorkbookNormal,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Excel.XlSaveAsAccessMode.xlNoChange,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing);
- */
- //파일 닫기...
- wb.Close(false, Type.Missing, Type.Missing);
- // wb = null;
- ExcelApp.Quit();
- //ExcelApp = null;
- }
- catch (Exception ex)
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- finally
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- }
- private void Catm1_DataxlsWrite(object dst, object Product, object Modemver, object Rsrp, object Rsrq)
- {
- ExcelKill();
- /* #region // 프로세스 얻기
- System.Diagnostics.Process[] BeforeExcelProcess;
- BeforeExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- ArrayList arlProcessID = new ArrayList();
- for (int i = 0; i < BeforeExcelProcess.Length; i++)
- {
- arlProcessID.Add(BeforeExcelProcess[i].Id);
- }
- #endregion*/
- //Write
- //파일이 존재 한다면..삭제 하고..
- /*if (File.Exists("C:\\Test.xls"))
- {
- File.Delete("C:\\Test.xls");
- }*/
- try
- {
- ExcelApp = new Excel.Application();
- Thread.Sleep(1);
- try
- {
- wb = ExcelApp.Workbooks.Open(dst.ToString(), 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- }
- catch { ExcelKill(); return; }
- Thread.Sleep(1);
- ws = wb.Worksheets["Sheet1"] as Excel.Worksheet;
- Thread.Sleep(1);
- //엑셀 시트 인덱스 번호는 0,0 부터 시작 하는 것이 아니라 1,1 A1 부터 시작 함. 0,0 으로 시작하면 오류...
- //시트에 값 쓰기...
- ws.Cells[8, 9] = Product.ToString();//dataGridView_Catm1.Rows[0].Cells[0].Value; //Bluecell 제조 번호
- ws.Cells[8, 12] = Modemver.ToString(); //dataGridView_Catm1.Rows[0].Cells[5].Value;//RSRP
- ws.Cells[8, 13] = Rsrp.ToString(); //dataGridView_Catm1.Rows[0].Cells[6].Value;//RSRQ
- ws.Cells[8, 14] = Rsrq.ToString(); //dataGridView_Catm1.Rows[0].Cells[6].Value;//RSRQ
- /*ws.Cells[1, 3] = "123";
- ws.Cells[1, 4] = "1234";
- ws.Cells[2, 1] = "Test1"; //A2
- ws.Cells[3, 1] = "Test12"; //A3
- ws.Cells[4, 1] = "Test123"; //A4*/
- //다른 이름으로 저장하기...
- wb.Save(); // => 오픈한 파일 그대로 저장...
- /* wb.SaveAs("C:\\Test.xls",
- Excel.XlFileFormat.xlWorkbookNormal,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Excel.XlSaveAsAccessMode.xlNoChange,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing);
- */
- //파일 닫기...
- wb.Close(false, Type.Missing, Type.Missing);
- // wb = null;
- ExcelApp.Quit();
- //ExcelApp = null;
- }
- catch (Exception ex)
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- finally
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- }
- private void Sninsert_DataxlsWrite(object[] data)
- {
- ExcelKill();
- /* #region // 프로세스 얻기
- System.Diagnostics.Process[] BeforeExcelProcess;
- BeforeExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- ArrayList arlProcessID = new ArrayList();
- for (int i = 0; i < BeforeExcelProcess.Length; i++)
- {
- arlProcessID.Add(BeforeExcelProcess[i].Id);
- }
- #endregion*/
- //Write
- //파일이 존재 한다면..삭제 하고..
- /*if (File.Exists("C:\\Test.xls"))
- {
- File.Delete("C:\\Test.xls");
- }*/
- try
- {
- ExcelApp = new Excel.Application();
- Thread.Sleep(1);
- try
- {
- wb = ExcelApp.Workbooks.Open(data[0].ToString(), 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- }
- catch { ExcelKill(); return; }
- Thread.Sleep(1);
- ws = wb.Worksheets["Sheet1"] as Excel.Worksheet;
- Thread.Sleep(1);
- //엑셀 시트 인덱스 번호는 0,0 부터 시작 하는 것이 아니라 1,1 A1 부터 시작 함. 0,0 으로 시작하면 오류...
- //시트에 값 쓰기...
- ws.Cells[8, 9] = data[1].ToString();// 제조 번호
- ws.Cells[8, 4] = data[2].ToString();// 일련번호
- ws.Cells[8, 6] = data[3].ToString();//IMEI
-
- //다른 이름으로 저장하기...
- wb.Save(); // => 오픈한 파일 그대로 저장...
- /* wb.SaveAs("C:\\Test.xls",
- Excel.XlFileFormat.xlWorkbookNormal,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Excel.XlSaveAsAccessMode.xlNoChange,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing,
- Type.Missing);
- */
- //파일 닫기...
- wb.Close(false, Type.Missing, Type.Missing);
- // wb = null;
- ExcelApp.Quit();
- //ExcelApp = null;
- }
- catch (Exception ex)
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- finally
- {
- //객체들 메모리 해제
- ReleaseExcelObject(ws);
- ReleaseExcelObject(wb);
- ReleaseExcelObject(ExcelApp);
- /* #region // 프로세스 죽이기
- System.Diagnostics.Process[] AfterExcelProcess;
- AfterExcelProcess = System.Diagnostics.Process.GetProcessesByName("EXCEL");
- for (int i = 0; i < AfterExcelProcess.Length; i++)
- {
- try
- {
- if (!arlProcessID.Contains(AfterExcelProcess[i].Id))
- AfterExcelProcess[i].Kill();
- }
- catch { }
- }
- #endregion*/
- GC.Collect();
- }
- }
- private void ExportExcel(bool captions)
- {
- this.openFileDialog.FileName = "TempName";
- this.openFileDialog.DefaultExt = "xls";
- this.openFileDialog.Filter = "Excel files (*.xls)|*.xls";
- this.openFileDialog.InitialDirectory = "c:\\";
- DialogResult result = openFileDialog.ShowDialog();
- if (result == DialogResult.OK)
- {
- int num = 0;
- object missingType = Type.Missing;
- Excel.Application objApp;
- Excel._Workbook objBook;
- Excel.Workbooks objBooks;
- Excel.Sheets objSheets;
- Excel._Worksheet objSheet;
- Excel.Range range;
- string[] headers = new string[dataGridView_SnInsert.ColumnCount];
- string[] columns = new string[dataGridView_SnInsert.ColumnCount];
- for (int c = 0; c < dataGridView_SnInsert.ColumnCount; c++)
- {
- headers[c] = dataGridView_SnInsert.Rows[0].Cells[c].OwningColumn.HeaderText.ToString();
- num = c + 65;
- columns[c] = Convert.ToString((char)num);
- }
- try
- {
- objApp = new Excel.Application();
- objBooks = objApp.Workbooks;
- objBook = objBooks.Add(Missing.Value);
- objSheets = objBook.Worksheets;
- objSheet = (Excel._Worksheet)objSheets.get_Item(1);
- if (captions)
- {
- for (int c = 0; c < dataGridView_SnInsert.ColumnCount; c++)
- {
- range = objSheet.get_Range(columns[c] + "1", Missing.Value);
- range.set_Value(Missing.Value, headers[c]);
- }
- }
- for (int i = 0; i < dataGridView_SnInsert.RowCount - 1; i++)
- {
- for (int j = 0; j < dataGridView_SnInsert.ColumnCount; j++)
- {
- range = objSheet.get_Range(columns[j] + Convert.ToString(i + 2),
- Missing.Value);
- range.set_Value(Missing.Value,
- dataGridView_SnInsert.Rows[i].Cells[j].Value.ToString());
- }
- }
- objApp.Visible = false;
- objApp.UserControl = false;
- objBook.SaveAs(@openFileDialog.FileName,
- Microsoft.Office.Interop.Excel.XlFileFormat.xlWorkbookNormal,
- missingType, missingType, missingType, missingType,
- Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange,
- missingType, missingType, missingType, missingType, missingType);
- objBook.Close(false, missingType, missingType);
- Cursor.Current = Cursors.Default;
- MessageBox.Show("Save Success!!!");
- }
- catch (Exception theException)
- {
- String errorMessage;
- errorMessage = "Error: ";
- errorMessage = String.Concat(errorMessage, theException.Message);
- errorMessage = String.Concat(errorMessage, " Line: ");
- errorMessage = String.Concat(errorMessage, theException.Source);
- MessageBox.Show(errorMessage, "Error");
- }
- }
- }
- private void ReleaseExcelObject(object obj)
- {
- try
- {
- if (obj != null)
- {
- Marshal.ReleaseComObject(obj);
- obj = null;
- }
- }
- catch (Exception ex)
- {
- obj = null;
- throw ex;
- }
- finally
- {
- GC.Collect();
- }
- }
- // CommonOpenFileDialog 클래스 생성
- CommonOpenFileDialog dialog = new CommonOpenFileDialog();
- private void button_Path_Click(object sender, EventArgs e)
- {
- // 처음 보여줄 폴더 설정(안해도 됨)
- //dialog.InitialDirectory = "";
- dialog.IsFolderPicker = true;
- if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
- {
- FileSaveSet = dialog.FileName;
- // label.Text = dialog.FileName;
- // 테스트용, 폴더 선택이 완료되면 선택된 폴더를 label에 출력
- }
- }
- private void dataGridView_Gps_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- {
- //button_GpsTestSave_Click(null, null);
- //to do
- }
- else
- {
- return;
- }
- }
- private void button_PrevFile_Click(object sender, EventArgs e)
- {
- if (openFileDialog.ShowDialog() == DialogResult.OK)
- {
- foreach (string x in openFileDialog.FileNames)
- {
- listBox_PreviousFile.Items.Add(x);
- }
- }
- }
- private void button_AfterFile_Click(object sender, EventArgs e)
- {
- if (openFileDialog.ShowDialog() == DialogResult.OK)
- {
- foreach (string x in openFileDialog.FileNames)
- {
- listBox_AfterFile.Items.Add(x);
- }
- }
- }
- private void label_Merge_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = false;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = true;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = false;
- }
- private void label_SnCheck_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = false;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = true;
- panel_SnTest.Visible = false;
- }
- private string Excel03ConString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties='Excel 8.0;HDR={1}'";
- private string Excel07ConString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source={0};Extended Properties='Excel 8.0;HDR={1}'";
- List<string> list1 = new List<string>();
- List<string> list2 = new List<string>();
- private void readExcel()
- {
- /*Excel.Application xlApp;
- Excel.Workbook xlWorkBook;
- Excel.Worksheet xlWorkSheet;
- Excel.Range range;
- string str;
- int rCnt = 0; // 열 갯수
- int cCnt = 0; // 행 갯수
- xlApp = new Excel.Application();
- xlWorkBook = xlApp.Workbooks.Open("d:\\test.xlsx", 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
- xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1); // 첫번째 시트를 가져 옴.
- range = xlWorkSheet.UsedRange; // 가져 온 시트의 데이터 범위 값
- for (rCnt = 1; rCnt <= range.Rows.Count; rCnt++)
- {
- for (cCnt = 1; cCnt <= range.Columns.Count; cCnt++)
- {
- str = (string)(range.Cells[rCnt, cCnt] as Excel.Range).Value2; // 열과 행에 해당하는 데이터를 문자열로 반환
- MessageBox.Show(str);
- }
- }
- xlWorkBook.Close(true, null, null);
- xlApp.Quit();
- ReleaseExcelObject(xlWorkSheet);
- ReleaseExcelObject(xlWorkBook);
- ReleaseExcelObject(xlApp);
- GC.Collect();*/
- // 엑셀 문서 내용 추출
- openFileDialog1_FileOk(null, null);
- }
- private void openFileDialog1_FileOk(object sender, CancelEventArgs e)
- {
- string filePath = openFileDialog.FileName;
- string fileExtension = Path.GetExtension(filePath);
- string header = "No";//rbHeaderYes.Checked ? "Yes" : "No";
- string connectionString = string.Empty;
- string sheetName = string.Empty;
- list1.Clear();
- list2.Clear();
- // 확장자로 구분하여 커넥션 스트링을 가져옮
- switch (fileExtension)
- {
- case ".xls": //Excel 97-03
- connectionString = string.Format(Excel03ConString, filePath, header);
- break;
- case ".xlsx": //Excel 07
- connectionString = string.Format(Excel07ConString, filePath, header);
- break;
- }
- // 첫 번째 시트의 이름을 가져옮
- using (OleDbConnection con = new OleDbConnection(connectionString))
- {
- using (OleDbCommand cmd = new OleDbCommand())
- {
- cmd.Connection = con;
- con.Open();
- DataTable dtExcelSchema = con.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
- sheetName = dtExcelSchema.Rows[0]["TABLE_NAME"].ToString();
- con.Close();
- }
- }
- //Console.WriteLine("sheetName = " + sheetName);
- // 첫 번째 쉬트의 데이타를 읽어서 datagridview 에 보이게 함.
- using (OleDbConnection con = new OleDbConnection(connectionString))
- {
- using (OleDbCommand cmd = new OleDbCommand())
- {
- using (OleDbDataAdapter oda = new OleDbDataAdapter())
- {
- DataTable dt = new DataTable();
- cmd.CommandText = "SELECT * From [" + sheetName + "]";
- cmd.Connection = con;
- con.Open();
- oda.SelectCommand = cmd;
- oda.Fill(dt);
- con.Close();
- //Populate DataGridView.
- dataGridView_Chk.DataSource = dt;
- }
- }
- }
- //dataGridView_Chk.Rows.Remove(1);
- /* for (int i = 0; i < 54; i++)
- {
- dataGridView_Chk.Rows.Remove(dataGridView_Chk.Rows[i]);
- }*/
- for (int i = 1; i <= 18; i++)
- {
- if (i == 3 || i == 8)
- continue;
- dataGridView_Chk.Columns.Remove("F" + i.ToString());
- }
- dataGridView_Chk.Sort(dataGridView_Chk.Columns.GetFirstColumn(DataGridViewElementStates.Visible, DataGridViewElementStates.None), ListSortDirection.Descending);
- for (int i = 0; i < dataGridView_Chk.RowCount; i++)
- {
- if (dataGridView_Chk.Rows[i].Cells[0].Value.ToString() == ""
- || dataGridView_Chk.Rows[i].Cells[1].Value.ToString() == "")
- {
- break;
- }
- list1.Add(dataGridView_Chk.Rows[i].Cells[0].Value.ToString());
- list2.Add(dataGridView_Chk.Rows[i].Cells[1].Value.ToString());
- }
- }
- private void button_FileFindLoad_Click(object sender, EventArgs e)
- {
- if (openFileDialog.ShowDialog() == DialogResult.OK)
- {
- openFileDialog1_FileOk(null, null);
- /*foreach (string x in openFileDialog.FileNames)
- {
- listBox_Previous.Items.Add(x);
- }*/
- }
- }
- private Thread rTh;
- private void button_Merge_Click(object sender, EventArgs e)
- {
- rTh = new Thread(OpenExcelFile);
- rTh.Start();
- //OpenExcelFile();
- }
- // progress bar
- private delegate void myDelegate(int theValue, int theMax);
- delegate void SetTextCallback(string text);
- // 컨트롤의 접근은 따로 함수를 만들어서 접근하도록 한다.
- private void SetText(string text)
- {
- // InvokeRequired required compares the thread ID of the
- // calling thread to the thread ID of the creating thread.
- // If these threads are different, it returns true.
- if (this.label_Cnt.InvokeRequired)
- {
- SetTextCallback d = new SetTextCallback(SetText);
- this.Invoke(d, new object[] { text });
- }
- else
- {
- this.label_Cnt.Text = "Count : " + text;
- }
- }
- private void LabelChkSetText(string text)
- {
- // InvokeRequired required compares the thread ID of the
- // calling thread to the thread ID of the creating thread.
- // If these threads are different, it returns true.
- if (this.label_Cnt.InvokeRequired)
- {
- SetTextCallback d = new SetTextCallback(SetText);
- this.Invoke(d, new object[] { text });
- }
- else
- {
- this.label_Cnt.Text = "Count : " + text;
- }
- }
- //스레드에서 아래 함수를 호출하면 된다.
- private void updateProgress(int theValue, int theMax)
- {
- if (theMax != 0)
- progressBar_Merge.Maximum = theMax;
- progressBar_Merge.Value = theValue;
- }
- #region
- /// <summary>
- /// 엑셀 정식 파일 형식이 아닌 파일 읽기
- /// </summary>
- /// <param name="FileName">파일명.확장자</param>
- /// <returns></returns>
- public void OpenExcelFile()
- {
- string[] APL_CopyArray =
- {
- "D8", "E8", "F8", "G8", "H8",//SKT 일련번호 ,VC생산번호 ,IMEI ,PHONE ,USIM
- "I8", "J8", "K8", "L8", "M8",//블루셀 제조번호,Ver ,SNR ,모뎀 버전 ,RSRP,
- "N8", "O8", "P8", "Q8", "R8",//RSRQ ,"숨기기1" ,"숨기기2" ,"숨기기3" ,BATT,
- "S8", "T8", "U8", "V8", "W8",//SySVolt ,TEMP ,BMAX ,BMAY ,BMAZ
- };
- for (int index = 0; index < listBox_PreviousFile.Items.Count; index++)
- {
- Excel.Workbook xlWorkbook_copy = null;
- Excel.Workbook xlWorkbook_paste = null;
- Excel.Worksheet xlWorksheet_copy = null;
- Excel.Worksheet xlWorksheet_paste = null;
- Excel.Application xlApp_paste = null;
- Excel.Application xlApp_copy = null;
- Excel.Range range = null;
- object data = null;
- string PrevFile = listBox_PreviousFile.Items[index].ToString();
- string AfterFile = listBox_AfterFile.Items[0].ToString();
- try
- {
- xlApp_copy = new Excel.Application();
- xlApp_paste = new Excel.Application();
- xlWorkbook_copy = xlApp_copy.Workbooks.Open(PrevFile);
- // xlWorkbook_paste = xlApp_paste.Workbooks.Open(listBox_AfterFile.Items[0].ToString());
- /* Data 붙여넣을 Excel 파일 변수 초기화 */
- xlWorkbook_paste = xlApp_paste.Workbooks.Open(AfterFile, 0, false, 5, Missing.Value, Missing.Value, false, Missing.Value,
- Missing.Value, true, false, Missing.Value, false, false, false);
- // xlWorksheet_paste = xlApp_paste.Worksheets.Item["2-1 NR 100MHz DL"]; // 특정시트 불러오기.
- /* 2-1 NR 100MHz DL Copy area*/
- xlWorksheet_paste = xlApp_paste.Worksheets.Item[1]; // 특정시트 불러오기.
- xlWorksheet_copy = xlApp_copy.Worksheets.Item[1]; // 특정시트 불러오기.
- for (int i = 0; i < APL_CopyArray.Length; i++)
- {
- range = xlWorksheet_copy.Range[APL_CopyArray[i]];
- data = range.Value;
- xlWorksheet_paste.Cells[8 + index, 4 + i] = data; // 블루셀 제조번호
- }
- xlWorkbook_paste.Save();
- xlWorkbook_paste.Close(true);
- xlApp_paste.Quit();
- xlWorkbook_copy.Close(true);
- xlApp_copy.Quit();
- xlWorkbook_copy = null;
- //xlWorkbook_copy.Save();
- //xlWorkbook_paste = null;
- //
- }
- catch (Exception ex)
- {
- //객체들 메모리 해제
- xlWorkbook_paste.Close(true);
- xlWorkbook_copy.Close(true);
- xlApp_paste.Quit();
- xlApp_copy.Quit();
- ReleaseExcelObject(xlWorksheet_paste);
- ReleaseExcelObject(xlWorkbook_paste);
- ReleaseExcelObject(xlApp_paste);
- ReleaseExcelObject(xlWorksheet_copy);
- ReleaseExcelObject(xlWorkbook_copy);
- ReleaseExcelObject(xlApp_copy);
- GC.Collect();
- rTh.Abort(); //쓰레드 강제 종료
- }
- finally
- {
- //객체들 메모리 해제
- ReleaseExcelObject(xlWorksheet_paste);
- ReleaseExcelObject(xlWorkbook_paste);
- ReleaseExcelObject(xlApp_paste);
- ReleaseExcelObject(xlWorksheet_copy);
- ReleaseExcelObject(xlWorkbook_copy);
- ReleaseExcelObject(xlApp_copy);
- GC.Collect();
- this.Invoke(new myDelegate(updateProgress), new object[] { index + 1, listBox_PreviousFile.Items.Count });
- SetText((index + 1).ToString());
- }
- }
- rTh.Abort(); //쓰레드 강제 종료
- }
- #endregion
- private void button_ChkStart_Click(object sender, EventArgs e)
- {
- string value = "";
- int Chkcnt = 0;
- bool Failed = false;
- int index1 = 0;
- int index2 = 0;
- string data1 = "", data2 = "";
- if (InputBox("번호 입력", "일련 번호:", ref value) == DialogResult.OK)
- {
- for (int i = 0; i < list1.Count; i++)
- {
- if (value == list1[i])
- {
- Chkcnt++;
- index1 = i;
- data1 = value;
- }
- }
- if (Chkcnt > 1)
- {
- listBox_SNDuplicate.Items.Add(value + " Cnt : " + Chkcnt.ToString());
- Failed = true;
- }
- Chkcnt = 0;
- if (InputBox("번호 입력", "생산 번호", ref value) == DialogResult.OK)
- {
- for (int i = 0; i < list2.Count; i++)
- {
- if (value == list2[i])
- {
- Chkcnt++;
- index2 = i;
- data2 = value;
- }
- }
- if (Chkcnt > 1)
- {
- listBox_ProductDuplicate.Items.Add(value + " Cnt : " + Chkcnt.ToString());
- Failed = true;
- }
- Chkcnt = 0;
- }
- if (Failed == true)
- {
- MessageBox.Show("중복항목을 제거 한 후 다시 시도해주세요.", "Error Check", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
- return;
- }
- if (index1 != index2)
- {
- MessageBox.Show("서로 다른 짝 입니다. 확인해주세요.\r" + "\r일련번호 : " + list1[index1] + "\r생산번호 : " + list2[index2], "Error Check", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
- return;
- }
- else
- {
- if (list1[index1] == data1)
- {
- if (list2[index2] == data2)
- {
- MessageBox.Show("서로 맞는 짝입니다.\r" + "\r일련번호 : " + list1[index1] + "\r생산번호 : " + list2[index2]);
- }
- }
- }
- // SN
- /*dataGridView_Sensor.Rows[0].Cells[1].Value = Name = value;
- serialPort.Write(value);
- button_SensorTestSave();
- for (int i = 0; i < 12; i++)
- dataGridView_Sensor.Rows[0].Cells[i].Value = null;*/
- }
- }
- private void button_SNClear_Click(object sender, EventArgs e)
- {
- listBox_SNDuplicate.Items.Clear();
- }
- private void button_DuplicateClear_Click(object sender, EventArgs e)
- {
- listBox_ProductDuplicate.Items.Clear();
- }
- private void button_DiffClear_Click(object sender, EventArgs e)
- {
- listBox_Diff.Items.Clear();
- }
- private void dataGridView_Gps_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- string value = "";
- //BL-VITE00-V
- if (InputBox("번호 입력", "생산 번호:", ref value) == DialogResult.OK)
- {
- // SN
- dataGridView_Sensor.Rows[0].Cells[0].Value = value;
- if (dataGridView_Sensor.Rows[0].Cells[0].Value != null)
- {
- Double SnrMinref = Convert.ToDouble(dataGridView_Gps.Rows[0].Cells[3].Value);
- Double SnrValue = Convert.ToDouble(dataGridView_Gps.Rows[0].Cells[1].Value);
- Double SecValue = Convert.ToDouble(dataGridView_Gps.Rows[0].Cells[4].Value);
- Double SecMaxref = Convert.ToDouble(dataGridView_Gps.Rows[0].Cells[3].Value);
- if (SnrMinref > SnrValue || SecMaxref <= SecValue)
- {
- MessageBox.Show("APL 부적합 Device 입니다.");
- return;
- }
- button_GpsTestSave_Click(null, null);
- dataGridView_Gps_CellClick(null, null);
- gps_arrangecnt = 0;
- ColdCnt = 0;
- GPGGA_Cnt = 0;
- dataGridView_Gps.Rows[0].Cells[0].Value = Name = value;
- // button_GpsTestSave_Click(null, null);
- }
- }
- }
- private void dataGridView_Catm1_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- string value = "";
- //BL-VITE00-V
- if (InputBox("번호 입력", "생산 번호:", ref value) == DialogResult.OK)
- {
- // SN
- dataGridView_Catm1.Rows[0].Cells[0].Value = Name = value;
- button_Catm1TestSave();
- dataGridView_Catm1_CellClick(null, null);
- }
- }
- private void dataGridView_Sensor_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- string value = "";
- string value1 = "";
- //BL-VITE00-V
- if (InputBox("번호 입력", "생산 번호:", ref value) == DialogResult.OK)
- {
- // SN
- dataGridView_Sensor.Rows[0].Cells[0].Value = Name = value;
- if (InputBox("번호 입력", "SKT SN:", ref value1) == DialogResult.OK)
- {
- dataGridView_Sensor.Rows[0].Cells[1].Value = value1;
- dataGridView_Sensor.Refresh();
- button_SensorTestSave();
- dataGridView_Sensor_CellClick(null, null);
- }
- }
- }
- private void label_SnInsert_Click(object sender, EventArgs e)
- {
- panel_GpsTest.Visible = false;
- panel_SensorTest.Visible = false;
- panel_Catm1Test.Visible = false;
- panel_MergeMain.Visible = false;
- panel_SnCheckMain.Visible = false;
- panel_SnTest.Visible = true;
- }
- private void label_SnInsert_MouseMove(object sender, MouseEventArgs e)
- {
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 255);
- }
- private void label_Check_MouseLeave(object sender, EventArgs e)
- {
- if (panel_GpsTest.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 255);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_Catm1Test.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 255);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_SensorTest.Visible == true)
- {
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 255);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_MergeMain.Visible == true)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 255);
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_SnCheckMain.Visible == true)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 255);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 200);
- }
- else if (panel_SnTest.Visible == true)
- {
- panel_Merge.BackColor = Color.FromArgb(0, 159, 200);
- panel_Catm1Mode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SensorMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_GpsMode.BackColor = Color.FromArgb(0, 159, 200);
- panel_SnCheck.BackColor = Color.FromArgb(0, 159, 200);
- panel_Sninsert.BackColor = Color.FromArgb(0, 159, 255);
- }
- }
- private void label_Check_MouseMove(object sender, MouseEventArgs e)
- {
- }
- private void dataGridView_SnInsert_CellClick(object sender, DataGridViewCellEventArgs e)
- {
- string ProductNum = "";
- string SKTNUM = "";
- string IMEI = "";
- if (InputBox("번호 입력", "생산 번호:", ref ProductNum) == DialogResult.OK)
- {
- // SN
- dataGridView_SnInsert.Rows[0].Cells[0].Value = Name = ProductNum;
- if (InputBox("번호 입력", "SKT SN:", ref SKTNUM) == DialogResult.OK)
- {
- dataGridView_SnInsert.Rows[0].Cells[1].Value = SKTNUM;
- if (InputBox("번호 입력", "IMEI:", ref IMEI) == DialogResult.OK)
- {
- dataGridView_SnInsert.Rows[0].Cells[2].Value = IMEI;
- button_SninsertTestSave();
- dataGridView_Sensor.Refresh();
- dataGridView_SnInsert_CellClick(null, null);
- }
- }
- }
- }
- class AutoClosingMessageBox
- {
- [System.Runtime.InteropServices.DllImport("user32.dll", SetLastError = true)]
- static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
- [System.Runtime.InteropServices.DllImport("user32.dll", CharSet = System.Runtime.InteropServices.CharSet.Auto)]
- static extern IntPtr SendMessage(IntPtr hWnd, UInt32 Msg, IntPtr wParam, IntPtr lParam);
- System.Threading.Timer _timeoutTimer; //쓰레드 타이머
- string _caption;
- const int WM_CLOSE = 0x0010; //close 명령
- AutoClosingMessageBox(string text, string caption, int timeout)
- {
- _caption = caption;
- _timeoutTimer = new System.Threading.Timer(OnTimerElapsed,
- null, timeout, System.Threading.Timeout.Infinite);
- MessageBox.Show(text, caption);
- }
- //생성자 함수
- public static void Show(string text, string caption, int timeout)
- {
- new AutoClosingMessageBox(text, caption, timeout);
- }
- //시간이 다되면 close 메세지를 보냄
- void OnTimerElapsed(object state)
- {
- IntPtr mbWnd = FindWindow(null, _caption);
- if (mbWnd != IntPtr.Zero)
- SendMessage(mbWnd, WM_CLOSE, IntPtr.Zero, IntPtr.Zero);
- _timeoutTimer.Dispose();
- }
- }
- private void timer1_Tick(object sender, EventArgs e)
- {
-
- }
- }
- }
|