├── .github └── workflows │ └── Check_Broken_VIs.yml ├── .gitignore ├── DEV ENVIRONMENT LabVIEW 2014 ├── LICENSE ├── LabVIEW-UI-XCtl.lvproj ├── NEVSTOP_ProgressDlg ├── NEVSTOP_ProgressDlg.v1.0.llb └── NEVSTOP_ProgressDlg.v2.0.llb ├── README.md ├── Specialised Graph └── XGaussfitGraph.v1.0.llb ├── XAdvanceList ├── XAdvanceList.v1.0.llb └── XAdvanceList.v1.1.llb ├── XIconBtn ├── XIconBtn.v1.0.llb └── XIconBtn.v1.1.1.llb ├── XLEDDisplay └── XLEDDisplay.v1.0.llb ├── XListGraph ├── XListGraph.v1.0.llb └── XListGraph.v2.0.llb ├── XTriPhaseGraph ├── Data.ctl ├── Facade.vi ├── Init.vi ├── Private │ ├── _Update Range Index.vi │ └── _UpdateRange.vi ├── Properties │ ├── Labels Read.vi │ ├── Labels Write.vi │ ├── X Label Name Read.vi │ └── X Label Name Write.vi ├── State.ctl ├── XTriPhaseGraph.xctl └── _test │ └── _TestMain.vi ├── XTwoColSelector ├── XTwoColSelector.v1.0.llb ├── XTwoColSelector.v1.1.llb └── _img │ └── 2017-11-26_212921.png ├── XpnlTab ├── XpnlTab.v1.0.llb └── XpnlTab.v1.1.llb ├── XpnlWizard ├── XpnlWizard.v1.0.llb └── XpnlWizard.v1.1.llb └── _config.yml /.github/workflows/Check_Broken_VIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/.github/workflows/Check_Broken_VIs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.lvlps 2 | *.aliases 3 | -------------------------------------------------------------------------------- /DEV ENVIRONMENT LabVIEW 2014: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/LICENSE -------------------------------------------------------------------------------- /LabVIEW-UI-XCtl.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/LabVIEW-UI-XCtl.lvproj -------------------------------------------------------------------------------- /NEVSTOP_ProgressDlg/NEVSTOP_ProgressDlg.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/NEVSTOP_ProgressDlg/NEVSTOP_ProgressDlg.v1.0.llb -------------------------------------------------------------------------------- /NEVSTOP_ProgressDlg/NEVSTOP_ProgressDlg.v2.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/NEVSTOP_ProgressDlg/NEVSTOP_ProgressDlg.v2.0.llb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/README.md -------------------------------------------------------------------------------- /Specialised Graph/XGaussfitGraph.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/Specialised Graph/XGaussfitGraph.v1.0.llb -------------------------------------------------------------------------------- /XAdvanceList/XAdvanceList.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XAdvanceList/XAdvanceList.v1.0.llb -------------------------------------------------------------------------------- /XAdvanceList/XAdvanceList.v1.1.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XAdvanceList/XAdvanceList.v1.1.llb -------------------------------------------------------------------------------- /XIconBtn/XIconBtn.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XIconBtn/XIconBtn.v1.0.llb -------------------------------------------------------------------------------- /XIconBtn/XIconBtn.v1.1.1.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XIconBtn/XIconBtn.v1.1.1.llb -------------------------------------------------------------------------------- /XLEDDisplay/XLEDDisplay.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XLEDDisplay/XLEDDisplay.v1.0.llb -------------------------------------------------------------------------------- /XListGraph/XListGraph.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XListGraph/XListGraph.v1.0.llb -------------------------------------------------------------------------------- /XListGraph/XListGraph.v2.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XListGraph/XListGraph.v2.0.llb -------------------------------------------------------------------------------- /XTriPhaseGraph/Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Data.ctl -------------------------------------------------------------------------------- /XTriPhaseGraph/Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Facade.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Init.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Private/_Update Range Index.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Private/_Update Range Index.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Private/_UpdateRange.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Private/_UpdateRange.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Properties/Labels Read.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Properties/Labels Read.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Properties/Labels Write.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Properties/Labels Write.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Properties/X Label Name Read.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Properties/X Label Name Read.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/Properties/X Label Name Write.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/Properties/X Label Name Write.vi -------------------------------------------------------------------------------- /XTriPhaseGraph/State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/State.ctl -------------------------------------------------------------------------------- /XTriPhaseGraph/XTriPhaseGraph.xctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/XTriPhaseGraph.xctl -------------------------------------------------------------------------------- /XTriPhaseGraph/_test/_TestMain.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTriPhaseGraph/_test/_TestMain.vi -------------------------------------------------------------------------------- /XTwoColSelector/XTwoColSelector.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTwoColSelector/XTwoColSelector.v1.0.llb -------------------------------------------------------------------------------- /XTwoColSelector/XTwoColSelector.v1.1.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTwoColSelector/XTwoColSelector.v1.1.llb -------------------------------------------------------------------------------- /XTwoColSelector/_img/2017-11-26_212921.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XTwoColSelector/_img/2017-11-26_212921.png -------------------------------------------------------------------------------- /XpnlTab/XpnlTab.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XpnlTab/XpnlTab.v1.0.llb -------------------------------------------------------------------------------- /XpnlTab/XpnlTab.v1.1.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XpnlTab/XpnlTab.v1.1.llb -------------------------------------------------------------------------------- /XpnlWizard/XpnlWizard.v1.0.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XpnlWizard/XpnlWizard.v1.0.llb -------------------------------------------------------------------------------- /XpnlWizard/XpnlWizard.v1.1.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NEVSTOP-LAB/LabVIEW-UI-XCtl/HEAD/XpnlWizard/XpnlWizard.v1.1.llb -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------