├── README.md ├── docs └── images │ ├── image001.png │ ├── image002.png │ ├── image003.png │ ├── image004.png │ ├── image005.png │ ├── image006.png │ ├── image007.png │ ├── image008.png │ ├── image009.png │ ├── image010.png │ ├── image011.png │ ├── image012.png │ ├── image013.png │ ├── image014.png │ ├── image015.png │ ├── image016.png │ ├── image017.png │ ├── image018.png │ ├── image019.png │ ├── image020.png │ ├── image021.png │ └── image022.png ├── onlineSPC.sln ├── onlineSPC.v12.suo ├── onlineSPC ├── ChartClass.cs ├── CommonClass.cs ├── CpkClass.cs ├── Data │ ├── MachineForm.Designer.cs │ ├── MachineForm.cs │ ├── MachineForm.resx │ ├── ProcessForm.Designer.cs │ ├── ProcessForm.cs │ ├── ProcessForm.resx │ ├── ProductForm.Designer.cs │ ├── ProductForm.cs │ ├── ProductForm.resx │ ├── WorkerForm.Designer.cs │ ├── WorkerForm.cs │ ├── WorkerForm.resx │ ├── WorkshopForm.Designer.cs │ ├── WorkshopForm.cs │ └── WorkshopForm.resx ├── ExportClass.cs ├── LoginForm.Designer.cs ├── LoginForm.cs ├── LoginForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MeasureForm.Designer.cs ├── MeasureForm.cs ├── MeasureForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RegexClass.cs ├── SQL_Class.cs ├── SearchForm.Designer.cs ├── SearchForm.cs ├── SearchForm.resx ├── SetForm.Designer.cs ├── SetForm.cs ├── SetForm.resx ├── StandardClass.cs ├── StateClass.cs ├── TextForm.Designer.cs ├── TextForm.cs ├── TextForm.resx ├── ValueClass.cs ├── app.config ├── bin │ └── Debug │ │ ├── images │ │ ├── add_measure.png │ │ ├── add_text.png │ │ ├── application_go.png │ │ ├── application_view_list.png │ │ ├── del_measure.png │ │ ├── edit_measure.png │ │ ├── edit_static.png │ │ ├── go_text.png │ │ ├── lock_add.png │ │ ├── lock_break.png │ │ ├── lock_delete.png │ │ ├── lock_go.png │ │ ├── lock_static.png │ │ ├── onlineSPC.ico │ │ ├── onlineSPC.png │ │ ├── open-static.png │ │ ├── script_delete.png │ │ └── script_edit.png │ │ ├── onlineSPC.exe │ │ ├── onlineSPC.exe.config │ │ ├── onlineSPC.pdb │ │ ├── onlineSPC.vshost.exe │ │ └── onlineSPC.vshost.exe.config ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ ├── Properties.Resources.Designer.cs.dll │ │ └── onlineSPCDataSet.Designer.cs.dll │ │ ├── onlineSPC.Data.MachineForm.resources │ │ ├── onlineSPC.Data.ProcessForm.resources │ │ ├── onlineSPC.Data.ProductForm.resources │ │ ├── onlineSPC.Data.WorkerForm.resources │ │ ├── onlineSPC.Data.WorkshopForm.resources │ │ ├── onlineSPC.LoginForm.resources │ │ ├── onlineSPC.MainFrom.resources │ │ ├── onlineSPC.MeasureForm.resources │ │ ├── onlineSPC.Properties.Resources.resources │ │ ├── onlineSPC.SearchForm.resources │ │ ├── onlineSPC.SetForm.resources │ │ ├── onlineSPC.TextForm.resources │ │ ├── onlineSPC.csproj.FileListAbsolute.txt │ │ ├── onlineSPC.csproj.GenerateResource.Cache │ │ ├── onlineSPC.csproj.ResolveComReference.cache │ │ ├── onlineSPC.csprojResolveAssemblyReference.cache │ │ ├── onlineSPC.exe │ │ └── onlineSPC.pdb ├── onlineSPC.csproj ├── onlineSPCDataSet.Designer.cs ├── onlineSPCDataSet.xsc ├── onlineSPCDataSet.xsd └── onlineSPCDataSet.xss ├── onlineSPC_Data └── 程序截图 ├── Cpk图.png ├── X-Rs控制图的Rs控制图.png ├── Xbar-R控制图的R控制图.png ├── Xbar-R控制图的Xbar控制图.png ├── Xmedian-R控制图的Xmedian控制图.png ├── X控制图.png ├── 主界面.png ├── 产品信息录入.png ├── 关于本程序.png ├── 分类搜索.png ├── 分组数必须为数字.png ├── 判异规则设置.png ├── 员工信息录入.png ├── 图表信息.png ├── 图表显示.png ├── 失控显示.png ├── 失控查询.png ├── 属性分类.png ├── 工序信息录入.png ├── 已受理.png ├── 已处理.png ├── 快捷工具栏.png ├── 报表导出.png ├── 数据列表.png ├── 数据数量不正确.png ├── 未选中数据.png ├── 欢迎界面.png ├── 添加备注.png ├── 用户登录.png ├── 直方图.png ├── 菜单栏.png ├── 设备信息录入.png ├── 车间信息录入.png ├── 输入_产品.png ├── 输入_员工.png ├── 输入_工序.png ├── 输入_设备.png ├── 输入_车间信息.png ├── 输出_Chart.png └── 输出_Listview.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/image001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image001.png -------------------------------------------------------------------------------- /docs/images/image002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image002.png -------------------------------------------------------------------------------- /docs/images/image003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image003.png -------------------------------------------------------------------------------- /docs/images/image004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image004.png -------------------------------------------------------------------------------- /docs/images/image005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image005.png -------------------------------------------------------------------------------- /docs/images/image006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image006.png -------------------------------------------------------------------------------- /docs/images/image007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image007.png -------------------------------------------------------------------------------- /docs/images/image008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image008.png -------------------------------------------------------------------------------- /docs/images/image009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image009.png -------------------------------------------------------------------------------- /docs/images/image010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image010.png -------------------------------------------------------------------------------- /docs/images/image011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image011.png -------------------------------------------------------------------------------- /docs/images/image012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image012.png -------------------------------------------------------------------------------- /docs/images/image013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image013.png -------------------------------------------------------------------------------- /docs/images/image014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image014.png -------------------------------------------------------------------------------- /docs/images/image015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image015.png -------------------------------------------------------------------------------- /docs/images/image016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image016.png -------------------------------------------------------------------------------- /docs/images/image017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image017.png -------------------------------------------------------------------------------- /docs/images/image018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image018.png -------------------------------------------------------------------------------- /docs/images/image019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image019.png -------------------------------------------------------------------------------- /docs/images/image020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image020.png -------------------------------------------------------------------------------- /docs/images/image021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image021.png -------------------------------------------------------------------------------- /docs/images/image022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/docs/images/image022.png -------------------------------------------------------------------------------- /onlineSPC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC.sln -------------------------------------------------------------------------------- /onlineSPC.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC.v12.suo -------------------------------------------------------------------------------- /onlineSPC/ChartClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/ChartClass.cs -------------------------------------------------------------------------------- /onlineSPC/CommonClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/CommonClass.cs -------------------------------------------------------------------------------- /onlineSPC/CpkClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/CpkClass.cs -------------------------------------------------------------------------------- /onlineSPC/Data/MachineForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/MachineForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Data/MachineForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/MachineForm.cs -------------------------------------------------------------------------------- /onlineSPC/Data/MachineForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/MachineForm.resx -------------------------------------------------------------------------------- /onlineSPC/Data/ProcessForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProcessForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Data/ProcessForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProcessForm.cs -------------------------------------------------------------------------------- /onlineSPC/Data/ProcessForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProcessForm.resx -------------------------------------------------------------------------------- /onlineSPC/Data/ProductForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProductForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Data/ProductForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProductForm.cs -------------------------------------------------------------------------------- /onlineSPC/Data/ProductForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/ProductForm.resx -------------------------------------------------------------------------------- /onlineSPC/Data/WorkerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkerForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Data/WorkerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkerForm.cs -------------------------------------------------------------------------------- /onlineSPC/Data/WorkerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkerForm.resx -------------------------------------------------------------------------------- /onlineSPC/Data/WorkshopForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkshopForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Data/WorkshopForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkshopForm.cs -------------------------------------------------------------------------------- /onlineSPC/Data/WorkshopForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Data/WorkshopForm.resx -------------------------------------------------------------------------------- /onlineSPC/ExportClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/ExportClass.cs -------------------------------------------------------------------------------- /onlineSPC/LoginForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/LoginForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/LoginForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/LoginForm.cs -------------------------------------------------------------------------------- /onlineSPC/LoginForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/LoginForm.resx -------------------------------------------------------------------------------- /onlineSPC/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MainForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MainForm.cs -------------------------------------------------------------------------------- /onlineSPC/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MainForm.resx -------------------------------------------------------------------------------- /onlineSPC/MeasureForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MeasureForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/MeasureForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MeasureForm.cs -------------------------------------------------------------------------------- /onlineSPC/MeasureForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/MeasureForm.resx -------------------------------------------------------------------------------- /onlineSPC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Program.cs -------------------------------------------------------------------------------- /onlineSPC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /onlineSPC/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Properties/Resources.resx -------------------------------------------------------------------------------- /onlineSPC/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/Properties/Settings.settings -------------------------------------------------------------------------------- /onlineSPC/RegexClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/RegexClass.cs -------------------------------------------------------------------------------- /onlineSPC/SQL_Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SQL_Class.cs -------------------------------------------------------------------------------- /onlineSPC/SearchForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SearchForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/SearchForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SearchForm.cs -------------------------------------------------------------------------------- /onlineSPC/SearchForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SearchForm.resx -------------------------------------------------------------------------------- /onlineSPC/SetForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SetForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/SetForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SetForm.cs -------------------------------------------------------------------------------- /onlineSPC/SetForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/SetForm.resx -------------------------------------------------------------------------------- /onlineSPC/StandardClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/StandardClass.cs -------------------------------------------------------------------------------- /onlineSPC/StateClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/StateClass.cs -------------------------------------------------------------------------------- /onlineSPC/TextForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/TextForm.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/TextForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/TextForm.cs -------------------------------------------------------------------------------- /onlineSPC/TextForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/TextForm.resx -------------------------------------------------------------------------------- /onlineSPC/ValueClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/ValueClass.cs -------------------------------------------------------------------------------- /onlineSPC/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/app.config -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/add_measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/add_measure.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/add_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/add_text.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/application_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/application_go.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/application_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/application_view_list.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/del_measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/del_measure.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/edit_measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/edit_measure.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/edit_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/edit_static.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/go_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/go_text.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/lock_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/lock_add.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/lock_break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/lock_break.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/lock_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/lock_delete.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/lock_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/lock_go.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/lock_static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/lock_static.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/onlineSPC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/onlineSPC.ico -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/onlineSPC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/onlineSPC.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/open-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/open-static.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/script_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/script_delete.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/images/script_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/images/script_edit.png -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/onlineSPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/onlineSPC.exe -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/onlineSPC.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/onlineSPC.exe.config -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/onlineSPC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/onlineSPC.pdb -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/onlineSPC.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/onlineSPC.vshost.exe -------------------------------------------------------------------------------- /onlineSPC/bin/Debug/onlineSPC.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/bin/Debug/onlineSPC.vshost.exe.config -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/TempPE/onlineSPCDataSet.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/TempPE/onlineSPCDataSet.Designer.cs.dll -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Data.MachineForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Data.MachineForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Data.ProcessForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Data.ProcessForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Data.ProductForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Data.ProductForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Data.WorkerForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Data.WorkerForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Data.WorkshopForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Data.WorkshopForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.LoginForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.LoginForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.MainFrom.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.MainFrom.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.MeasureForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.MeasureForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.Properties.Resources.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.SearchForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.SearchForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.SetForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.SetForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.TextForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.TextForm.resources -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.csproj.ResolveComReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.csproj.ResolveComReference.cache -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.exe -------------------------------------------------------------------------------- /onlineSPC/obj/Debug/onlineSPC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/obj/Debug/onlineSPC.pdb -------------------------------------------------------------------------------- /onlineSPC/onlineSPC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/onlineSPC.csproj -------------------------------------------------------------------------------- /onlineSPC/onlineSPCDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/onlineSPCDataSet.Designer.cs -------------------------------------------------------------------------------- /onlineSPC/onlineSPCDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlineSPC/onlineSPCDataSet.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC/onlineSPCDataSet.xsd -------------------------------------------------------------------------------- /onlineSPC/onlineSPCDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onlineSPC_Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/onlineSPC_Data -------------------------------------------------------------------------------- /程序截图/Cpk图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/Cpk图.png -------------------------------------------------------------------------------- /程序截图/X-Rs控制图的Rs控制图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/X-Rs控制图的Rs控制图.png -------------------------------------------------------------------------------- /程序截图/Xbar-R控制图的R控制图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/Xbar-R控制图的R控制图.png -------------------------------------------------------------------------------- /程序截图/Xbar-R控制图的Xbar控制图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/Xbar-R控制图的Xbar控制图.png -------------------------------------------------------------------------------- /程序截图/Xmedian-R控制图的Xmedian控制图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/Xmedian-R控制图的Xmedian控制图.png -------------------------------------------------------------------------------- /程序截图/X控制图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/X控制图.png -------------------------------------------------------------------------------- /程序截图/主界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/主界面.png -------------------------------------------------------------------------------- /程序截图/产品信息录入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/产品信息录入.png -------------------------------------------------------------------------------- /程序截图/关于本程序.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/关于本程序.png -------------------------------------------------------------------------------- /程序截图/分类搜索.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/分类搜索.png -------------------------------------------------------------------------------- /程序截图/分组数必须为数字.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/分组数必须为数字.png -------------------------------------------------------------------------------- /程序截图/判异规则设置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/判异规则设置.png -------------------------------------------------------------------------------- /程序截图/员工信息录入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/员工信息录入.png -------------------------------------------------------------------------------- /程序截图/图表信息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/图表信息.png -------------------------------------------------------------------------------- /程序截图/图表显示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/图表显示.png -------------------------------------------------------------------------------- /程序截图/失控显示.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/失控显示.png -------------------------------------------------------------------------------- /程序截图/失控查询.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/失控查询.png -------------------------------------------------------------------------------- /程序截图/属性分类.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/属性分类.png -------------------------------------------------------------------------------- /程序截图/工序信息录入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/工序信息录入.png -------------------------------------------------------------------------------- /程序截图/已受理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/已受理.png -------------------------------------------------------------------------------- /程序截图/已处理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/已处理.png -------------------------------------------------------------------------------- /程序截图/快捷工具栏.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/快捷工具栏.png -------------------------------------------------------------------------------- /程序截图/报表导出.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/报表导出.png -------------------------------------------------------------------------------- /程序截图/数据列表.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/数据列表.png -------------------------------------------------------------------------------- /程序截图/数据数量不正确.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/数据数量不正确.png -------------------------------------------------------------------------------- /程序截图/未选中数据.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/未选中数据.png -------------------------------------------------------------------------------- /程序截图/欢迎界面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/欢迎界面.png -------------------------------------------------------------------------------- /程序截图/添加备注.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/添加备注.png -------------------------------------------------------------------------------- /程序截图/用户登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/用户登录.png -------------------------------------------------------------------------------- /程序截图/直方图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/直方图.png -------------------------------------------------------------------------------- /程序截图/菜单栏.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/菜单栏.png -------------------------------------------------------------------------------- /程序截图/设备信息录入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/设备信息录入.png -------------------------------------------------------------------------------- /程序截图/车间信息录入.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/车间信息录入.png -------------------------------------------------------------------------------- /程序截图/输入_产品.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输入_产品.png -------------------------------------------------------------------------------- /程序截图/输入_员工.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输入_员工.png -------------------------------------------------------------------------------- /程序截图/输入_工序.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输入_工序.png -------------------------------------------------------------------------------- /程序截图/输入_设备.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输入_设备.png -------------------------------------------------------------------------------- /程序截图/输入_车间信息.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输入_车间信息.png -------------------------------------------------------------------------------- /程序截图/输出_Chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输出_Chart.png -------------------------------------------------------------------------------- /程序截图/输出_Listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liyonghuan/online-statistical-process-control-system/HEAD/程序截图/输出_Listview.png --------------------------------------------------------------------------------