├── 7z Backup ├── 7z.bat └── path.txt ├── AHK64 ├── AU3_Spy.exe ├── AutoHotkey Website.url ├── AutoHotkey.chm ├── AutoHotkey.exe ├── AutoHotkeyA32.exe ├── AutoHotkeyU32.exe ├── AutoHotkeyU64.exe ├── Compiler │ ├── ANSI 32-bit.bin │ ├── Ahk2Exe.exe │ ├── AutoHotkeySC.bin │ ├── Unicode 32-bit.bin │ └── Unicode 64-bit.bin ├── Installer.ahk ├── horizontal-scroll.ahk ├── horizontal-scroll.exe └── license.txt ├── Actor Framework ├── Actor Framework Hands-On Instructions.pdf ├── Exercise │ ├── AF Hands-On Exercise.aliases │ ├── AF Hands-On Exercise.lvlps │ ├── AF Hands-On Exercise.lvproj │ ├── Cooler UI │ │ ├── Cooler Panel │ │ │ ├── Actor Core.vi │ │ │ └── Cooler Panel.lvclass │ │ ├── Cooler UI with Events Messages │ │ │ ├── Change Desired Temperature Msg │ │ │ │ ├── Change Desired Temperature Msg.lvclass │ │ │ │ ├── Do.vi │ │ │ │ └── Send Change Desired Temperature.vi │ │ │ ├── Update Fan Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Update Fan.vi │ │ │ │ └── Update Fan Msg.lvclass │ │ │ ├── Update Pump Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Update Pump.vi │ │ │ │ └── Update Pump Msg.lvclass │ │ │ ├── Update Temperature Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Update Temperature.vi │ │ │ │ └── Update Temperature Msg.lvclass │ │ │ └── Write Cooler Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Write Cooler.vi │ │ │ │ └── Write Cooler Msg.lvclass │ │ ├── Cooler UI with Events │ │ │ ├── Change Desired Temperature.vi │ │ │ ├── Cooler UI with Events.lvclass │ │ │ ├── Events.ctl │ │ │ ├── Pre Launch Init.vi │ │ │ ├── Read Events.vi │ │ │ ├── Status.ctl │ │ │ ├── Stop Core.vi │ │ │ ├── Update Fan.vi │ │ │ ├── Update Pump.vi │ │ │ ├── Update Temperature.vi │ │ │ └── Write Cooler.vi │ │ └── Cooler UI.lvlib │ ├── Cooler │ │ ├── Cooler Messages │ │ │ ├── Update Fan Status Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Update Fan Status.vi │ │ │ │ └── Update Fan Status Msg.lvclass │ │ │ └── Write UI Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Write UI.vi │ │ │ │ └── Write UI Msg.lvclass │ │ ├── Cooler.lvlib │ │ └── Cooler │ │ │ ├── Actor Core.vi │ │ │ ├── Cooler.lvclass │ │ │ ├── Get New Level.vi │ │ │ ├── Set Output State.vi │ │ │ ├── Stop Core.vi │ │ │ ├── Update Fan Status.vi │ │ │ └── Write UI.vi │ ├── Dual Controller │ │ ├── Dual Fan Messages │ │ │ ├── Power Off Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Power Off Msg.lvclass │ │ │ │ └── Send Power Off.vi │ │ │ └── Power On Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Power On Msg.lvclass │ │ │ │ └── Send Power On.vi │ │ ├── Dual Fan.lvlib │ │ └── Dual Fan │ │ │ ├── Dual Fan.lvclass │ │ │ ├── Post Update.vi │ │ │ ├── Power Off.vi │ │ │ ├── Power On.vi │ │ │ ├── State Logic.vi │ │ │ ├── Stop Core.vi │ │ │ └── Update.vi │ ├── Feedback Evaporative Cooler Demo.vi │ ├── Level Controller │ │ ├── Level Controller Messages │ │ │ └── Write Deadband Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Write Deadband.vi │ │ │ │ └── Write Deadband Msg.lvclass │ │ ├── Level Controller.lvlib │ │ └── Level Controller │ │ │ ├── Get New Level.vi │ │ │ ├── Level Controller.lvclass │ │ │ ├── Set Output State.vi │ │ │ ├── State Logic.vi │ │ │ ├── Update.vi │ │ │ ├── Value Position.ctl │ │ │ └── Write Deadband.vi │ ├── Support │ │ ├── Cooler Panel UI Components.vi │ │ ├── Cooler Test.vi │ │ ├── Dual Fan Test.vi │ │ ├── Message Template │ │ │ ├── Do.vi │ │ │ ├── Dummy Actor Method.vi │ │ │ ├── Message Template.lvclass │ │ │ └── Send Template.vi │ │ ├── Unit Data.ctl │ │ └── Water Level Test.vi │ ├── Timed Loop Controller │ │ ├── Timed Loop Controller Messages │ │ │ └── Update Msg │ │ │ │ ├── Do.vi │ │ │ │ ├── Send Update.vi │ │ │ │ └── Update Msg.lvclass │ │ ├── Timed Loop Controller.lvlib │ │ └── Timed Loop Controller │ │ │ ├── Actor Core.vi │ │ │ ├── Cooler UI.lvlib │ │ │ ├── Timed Loop Controller.lvclass │ │ │ ├── Update.vi │ │ │ └── Write Poll Rate.vi │ └── Water Level │ │ ├── Get New Level.vi │ │ ├── Set Output State.vi │ │ ├── Stop Core.vi │ │ └── Water Level.lvclass ├── Simple Actor Example │ ├── Simple Actor Example.aliases │ ├── Simple Actor Example.lvlps │ ├── Simple Actor Example.lvproj │ ├── Simple Actor Example.vi │ ├── Simple Actor Messages │ │ ├── Update Msg │ │ │ ├── Do.vi │ │ │ ├── Send Update.vi │ │ │ └── Update Msg.lvclass │ │ └── Zero Msg │ │ │ ├── Do.vi │ │ │ ├── Send Zero.vi │ │ │ └── Zero Msg.lvclass │ └── Simple Actor │ │ ├── Actor Core.vi │ │ ├── Read Time.vi │ │ ├── Simple Actor.lvclass │ │ ├── Update.vi │ │ ├── Write Gauge Refnum.vi │ │ ├── Write ID.vi │ │ └── Zero.vi ├── Simulation │ ├── Simulation Data_Global.vi │ ├── Simulation VI.vi │ └── Simulation.lvlib └── Solution │ ├── AF Hands-On Solution.lvproj │ ├── Class Hierarchy.bmp │ ├── Cooler UI │ ├── Change Desired Temperature Msg │ │ ├── Change Desired Temperature Msg.lvclass │ │ ├── Do.vi │ │ └── Send Change Desired Temperature.vi │ ├── Cooler Panel │ │ ├── Actor Core.vi │ │ └── Cooler Panel.lvclass │ ├── Cooler UI with Events │ │ ├── Change Desired Temperature.vi │ │ ├── Cooler UI with Events.lvclass │ │ ├── Create User Events.vi │ │ ├── Events.ctl │ │ ├── Pre Launch Init.vi │ │ ├── Read Events.vi │ │ ├── Status.ctl │ │ ├── Stop Core.vi │ │ ├── Update Fan.vi │ │ ├── Update Pump.vi │ │ ├── Update Temperature.vi │ │ └── Write Cooler.vi │ ├── Cooler UI.lvlib │ ├── Update Fan Msg │ │ ├── Do.vi │ │ ├── Send Update Fan.vi │ │ └── Update Fan Msg.lvclass │ ├── Update Pump Msg │ │ ├── Do.vi │ │ ├── Send Update Pump.vi │ │ └── Update Pump Msg.lvclass │ ├── Update Temperature Msg │ │ ├── Do.vi │ │ ├── Send Update Temperature.vi │ │ └── Update Temperature Msg.lvclass │ └── Write Cooler Msg │ │ ├── Do.vi │ │ ├── Send Write Cooler.vi │ │ └── Write Cooler Msg.lvclass │ ├── Cooler │ ├── Cooler.lvlib │ ├── Cooler │ │ ├── Actor Core.vi │ │ ├── Cooler.lvclass │ │ ├── Get New Level.vi │ │ ├── Pre Launch Init.vi │ │ ├── Set Output State.vi │ │ ├── Stop Core.vi │ │ ├── Update Fan Status.vi │ │ └── Write UI.vi │ ├── Update Fan Status Msg │ │ ├── Do.vi │ │ ├── Send Update Fan Status.vi │ │ └── Update Fan Status Msg.lvclass │ └── Write UI Msg │ │ ├── Do.vi │ │ ├── Send Write UI.vi │ │ └── Write UI Msg.lvclass │ ├── Dual Controller │ ├── Dual Fan.lvlib │ ├── Dual Fan │ │ ├── Dual Fan.lvclass │ │ ├── Post Update.vi │ │ ├── Power Off.vi │ │ ├── Power On.vi │ │ ├── State Logic.vi │ │ ├── Stop Core.vi │ │ └── Update.vi │ ├── Power Off Msg │ │ ├── Do.vi │ │ ├── Power Off Msg.lvclass │ │ └── Send Power Off.vi │ └── Power On Msg │ │ ├── Do.vi │ │ ├── Power On Msg.lvclass │ │ └── Send Power On.vi │ ├── Feedback Evaporative Cooler Demo.vi │ ├── Level Controller │ ├── Level Controller.lvlib │ ├── Level Controller │ │ ├── Get New Level.vi │ │ ├── Level Controller.lvclass │ │ ├── Set Output State.vi │ │ ├── State Logic.vi │ │ ├── Update.vi │ │ ├── Value Position.ctl │ │ └── Write Deadband.vi │ └── Write Deadband Msg │ │ ├── Do.vi │ │ ├── Send Write Deadband.vi │ │ └── Write Deadband Msg.lvclass │ ├── Support │ ├── Cooler Panel UI Components.vi │ ├── Cooler Test.vi │ ├── Dual Fan Test.vi │ ├── Message Template │ │ ├── Do.vi │ │ ├── Dummy Actor Method.vi │ │ ├── Message Template.lvclass │ │ └── Send Template.vi │ ├── Unit Data.ctl │ └── Water Level Test.vi │ ├── Timed Loop Controller │ ├── Timed Loop Controller.lvlib │ ├── Timed Loop Controller │ │ ├── Actor Core.vi │ │ ├── Timed Loop Controller.lvclass │ │ ├── Update.vi │ │ └── Write Poll Rate.vi │ └── Update Msg │ │ ├── Do.vi │ │ ├── Send Update.vi │ │ └── Update Msg.lvclass │ ├── Water Level │ ├── Get New Level.vi │ ├── Set Output State.vi │ ├── Stop Core.vi │ └── Water Level.lvclass │ └── documentation │ ├── Cooler.png │ ├── Feedback Evaporative Cooler Documentation.html │ ├── Using the Actor Framework in LabVIEW.docx │ └── Using the Actor Framework in LabVIEW.pdf ├── AutoAbortVIs └── EasyVIAborterAuto.vi ├── BandObjects ├── AsyncSocketServer.zip ├── BandObjectLib │ ├── Attributes.cs │ ├── BandObject.cs │ ├── BandObject.resx │ ├── BandObjectLib.csproj │ ├── BandObjectLib.csproj.old │ ├── BandObjectLib.csproj.user │ ├── BandObjectLib.csproj.user.old │ ├── BandObjectLib.ncb │ ├── BandObjectLib.sdf │ ├── BandObjectLib.sln │ ├── BandObjectLib.sln.old │ ├── BandObjectLib.suo │ ├── BandObjects.snk │ ├── ComInterop.cs │ ├── RegisterLib │ │ ├── Debug │ │ │ ├── RegisterLib.lastbuildstate │ │ │ └── RegisterLib.log │ │ ├── RegisterLib.vcproj │ │ ├── RegisterLib.vcxproj │ │ ├── RegisterLib.vcxproj.filters │ │ ├── RegisterLib.vcxproj.user │ │ └── Release │ │ │ ├── RegisterLib.lastbuildstate │ │ │ └── RegisterLib.log │ ├── UpgradeLog.XML │ ├── _UpgradeReport_Files │ │ ├── Thumbs.db │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif │ ├── bin │ │ ├── Debug │ │ │ ├── BandObjectLib.dll │ │ │ ├── BandObjectLib.pdb │ │ │ └── Interop.SHDocVw.dll │ │ └── Release │ │ │ ├── BandObjectLib.dll │ │ │ └── Interop.SHDocVw.dll │ └── obj │ │ ├── Debug │ │ ├── BandObjectLib.BandObject.resources │ │ ├── BandObjectLib.csproj.FileListAbsolute.txt │ │ ├── BandObjectLib.csproj.ResolveComReference.cache │ │ ├── BandObjectLib.dll │ │ ├── BandObjectLib.dll.incr │ │ ├── BandObjectLib.pdb │ │ ├── BandObjectLib.projdata │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ExplorerBarLib.dll │ │ ├── ExplorerBarLib.dll.incr │ │ ├── ExplorerBarLib.pdb │ │ ├── ExplorerBarLib.tlb │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── Interop.SHDocVw.dll │ │ ├── Interop.SHDocVw.dll │ │ └── Release │ │ ├── BandObjectLib.BandObject.resources │ │ ├── BandObjectLib.csproj.FileListAbsolute.txt │ │ ├── BandObjectLib.csproj.ResolveComReference.cache │ │ ├── BandObjectLib.dll │ │ ├── BandObjectLib.projdata │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── ExplorerBarLib.dll │ │ ├── GenerateResource.read.1.tlog │ │ ├── GenerateResource.write.1.tlog │ │ └── Interop.SHDocVw.dll ├── BandObjects.snk └── SampleBars │ ├── AssemblyInfo.cs │ ├── BandObjects.snk │ ├── HelloWorldBar.cs │ ├── HelloWorldBar.resx │ ├── Register │ ├── Debug │ │ ├── Register.lastbuildstate │ │ └── Register.log │ ├── Register.vcproj │ ├── Register.vcxproj │ ├── Register.vcxproj.filters │ ├── Register.vcxproj.user │ └── Release │ │ ├── Register.lastbuildstate │ │ └── Register.log │ ├── SampleBars.csproj │ ├── SampleBars.csproj.old │ ├── SampleBars.csproj.user │ ├── SampleBars.csproj.user.old │ ├── SampleBars.ncb │ ├── SampleBars.sdf │ ├── SampleBars.sln │ ├── SampleBars.sln.old │ ├── SampleBars.suo │ ├── UpgradeLog.XML │ ├── _UpgradeReport_Files │ ├── UpgradeReport.css │ ├── UpgradeReport.xslt │ ├── UpgradeReport_Minus.gif │ └── UpgradeReport_Plus.gif │ ├── bin │ ├── Debug │ │ ├── SampleBars.dll │ │ └── SampleBars.pdb │ └── Release │ │ └── SampleBars.dll │ └── obj │ ├── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── SampleBars.HelloWorldBar.resources │ ├── SampleBars.csproj.FileListAbsolute.txt │ ├── SampleBars.dll │ ├── SampleBars.dll.incr │ ├── SampleBars.pdb │ └── SampleBars.projdata │ └── Release │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── GenerateResource.read.1.tlog │ ├── GenerateResource.write.1.tlog │ ├── SampleBars.HelloWorldBar.resources │ ├── SampleBars.csproj.FileListAbsolute.txt │ ├── SampleBars.dll │ └── SampleBars.projdata ├── ChineseCharacter2Pinyin ├── CHSPinYinConv.msi └── ChineseCharacter2Pinyin.vi ├── Create Icon from VI Name ├── Example │ ├── After.png │ ├── Before.png │ ├── Close Text File Handle.vi │ ├── Example.vi │ ├── Open Text File Handle.vi │ └── Read and Write Text File.vi ├── PopupMenus │ └── edit time panel and diagram │ │ └── Create Icon from VI Name.llb ├── T0001.zip ├── ToolsMenus │ ├── 2009 │ │ └── Create Icon.llb │ └── Create Icon.llb ├── bmp │ ├── -.bmp │ ├── 0.bmp │ ├── 1.bmp │ ├── 2.bmp │ ├── 3.bmp │ ├── 4.bmp │ ├── 5.bmp │ ├── 6.bmp │ ├── 7.bmp │ ├── 8.bmp │ ├── 9.bmp │ ├── A.bmp │ ├── B.bmp │ ├── C.bmp │ ├── D.bmp │ ├── E.bmp │ ├── F.bmp │ ├── G.bmp │ ├── H.bmp │ ├── I.bmp │ ├── J.bmp │ ├── K.bmp │ ├── L.bmp │ ├── M.bmp │ ├── N.bmp │ ├── O.bmp │ ├── P.bmp │ ├── Q.bmp │ ├── R.bmp │ ├── S.bmp │ ├── T.bmp │ ├── U.bmp │ ├── V.bmp │ ├── W.bmp │ ├── X.bmp │ ├── Y.bmp │ ├── Z.bmp │ └── _.bmp └── fonts.vi ├── Data File Processing ├── Auto Reziseable UI.vi ├── Data File Processing UI.vi ├── DataFileProcessing.aliases ├── DataFileProcessing.lvproj └── sub VIs │ ├── Data File Processing UI Add Messages.vi │ ├── Data File Processing UI Add Type Message.vi │ ├── Data File Processing UI Build File Relative Path.vi │ ├── Data File Processing UI Build Type Nodata Message.vi │ ├── Data File Processing UI Build Type Nodata Messages.vi │ ├── Data File Processing UI Build Type and Data Message.vi │ ├── Data File Processing UI Build Type and Data Messages.vi │ ├── Data File Processing UI Convert Message to String.vi │ ├── Data File Processing UI Convert String to Message.vi │ ├── Data File Processing UI Default Runtime Menu Path.vi │ ├── Data File Processing UI Find Control By Name.vi │ ├── Data File Processing UI Get Message.vi │ ├── Data File Processing UI Manager.ctl │ ├── Data File Processing UI Manager.vi │ ├── Data File Processing UI Message Define.ctl │ ├── Data File Processing UI Message Queue.vi │ ├── Data File Processing UI Message Type Define.ctl │ ├── Data File Processing UI Variable.vi │ ├── Data File Processing UI.rtm │ ├── Data File Processing UI_ChannelSet.ctl │ ├── Data File Processing UI_GlobalData.ctl │ ├── SelectPath.vi │ ├── SubVI_CalculateRange.vi │ ├── SubVI_ChooseChannels.vi │ ├── SubVI_InitialUI_ResetPanes.vi │ ├── SubVI_NewPath.vi │ ├── SubVI_ProcessData.vi │ ├── SubVI_ProcessTitle.vi │ ├── SubVI_ReadRow.vi │ ├── SubVI_ReadTitle.vi │ ├── SubVI_ReadTxt.vi │ └── SubVI_SaveAsTXT.vi ├── DeviceEnum ├── Data.ctl ├── DeviceEnum.aliases ├── DeviceEnum.lvlps ├── DeviceEnum.lvproj ├── DeviceEnumXControl.xctl ├── Facade.vi ├── Init.vi ├── ListDevice.vi ├── State.ctl └── TestVI.vi ├── Icons ├── Icons.aliases ├── Icons.lvlps ├── Icons.lvproj ├── Keypress Example Folder │ └── WINUTIL.LLB ├── Script │ ├── AddVIDocument.vi │ ├── ButtonScript.vi │ ├── F10.vi │ ├── OperateControlPosition.vi │ ├── Script2d_16x16.vi │ ├── Script_16x16.vi │ ├── Script_32x32.vi │ ├── SetIcon.vi │ └── 导入图标.Q ├── Source │ ├── DisableSmartSortOrder.reg │ ├── EnableSmartSortOrder.reg │ ├── Icon_16x16.vi │ ├── Icon_32x32.vi │ └── keypress.zip ├── Template │ ├── 2DTemplate_22x22.ctl │ ├── 2D_16x16.ctl │ ├── 2D_22x22.ctl │ ├── 2d.ctl │ ├── SystemTemplate_22x22.ctl │ ├── SystemTemplate_38x38.ctl │ ├── System_22x22.ctl │ ├── Template.ctl │ ├── TemplateExample.vi │ ├── Test2.vi │ ├── Test3.vi │ └── icon.ctl └── fatcow-hosting-icons-3000 │ ├── 3kButtons2D22x22.vi │ ├── 3kButtonsSys22x22.vi │ ├── 3kButtonsSys36x36.vi │ ├── 3kButtonsSys36x36_classify.vi │ ├── Pansino │ ├── Pansino16.png │ ├── Pansino32.ctl │ ├── Pansino32.png │ ├── PansinoSolution16.png │ ├── PansinoSolution32.ctl │ ├── PansinoSolution32.png │ ├── PansinoSolution_22x22.ctl │ ├── Pansino_22x22.ctl │ ├── pic01479.gif │ └── pic31604.gif │ └── fatcow-hosting-icons-3000.rar ├── MDI interface example ├── AbortAndRunVI.vi ├── FG states.ctl ├── FG_registeredwindows.vi ├── Get Window Handle.vi ├── MDI_global.vi ├── Set Parent Window.vi ├── VI Name for window Title.vi ├── WINUTIL.LLB ├── child window props.ctl ├── close_and_dereg_window.vi ├── containerwindow.vi ├── main_MDI.vi ├── main_MDIsystem.vi ├── mdi example.aliases ├── mdi example.lvlps ├── mdi example.lvproj ├── testerofwindows.vi └── window1.vi ├── MailWake ├── Catch POP Errors.vi ├── Check for Mail.vi ├── Close POP session.vi ├── Config.ctl ├── Get All Messages.vi ├── Mail Browser.vi ├── MailWake.aliases ├── MailWake.lvlps ├── MailWake.lvproj ├── MailWake.vi ├── MailWake.viConfig.xml ├── Open POP session.vi ├── POP Read to DOT-CRLF.vi ├── POP send DELE.vi ├── POP send LIST.vi ├── POP send QUIT.vi ├── POP send RETR.vi ├── Parse Mail Header Info.vi ├── Retrieve Message with Options.vi ├── WakeOnLAN.vi └── XML_ControlConfig.vi ├── Modbus Command Explainer └── Modbus Command Explainer.vi ├── NetworkSpeed 文件夹 ├── NetworkSpeed 文件夹 │ └── NetworkSpeed.vi └── NetworkSpeed.vi ├── Notification ├── DetectOS.vi ├── Get Window Handle.vi ├── Main.vi ├── Notification.aliases ├── Notification.lvlps ├── Notification.lvproj ├── Notification.vi ├── NotificationBar.vi ├── ResetPanes.vi ├── Set Parent Window.vi └── VI Name for window Title.vi ├── NotifyIcon ├── Examples │ ├── NotifyIcon - Example 2.vi │ ├── NotifyIcon - Example.vi │ └── dir.mnu ├── NotifyIcon - Create.vi ├── NotifyIcon - Destroy.vi ├── NotifyIcon - Get MenuItem.vi ├── NotifyIcon - Interpret Event Data.vi ├── NotifyIcon - Register LabVIEW User Events.vi ├── NotifyIcon - Set ContextMenu.vi ├── NotifyIcon - Set Icon.vi ├── NotifyIcon - Show BalloonTip.vi ├── SubVIs │ ├── NotifyIcon - .NET EventCallback.vi │ ├── NotifyIcon - Create ContextMenu.vi │ ├── NotifyIcon - Create Menu.vi │ ├── NotifyIcon - Create SubMenuItem.vi │ ├── NotifyIcon - Get All MenuItems.vi │ ├── NotifyIcon - Register .NET Events Callback.vi │ └── dir.mnu ├── TypeDefs │ ├── NotifyIcon .NET Callback Parameter.ctl │ ├── NotifyIcon Event Data.ctl │ ├── NotifyIcon Event Registration Actions.ctl │ ├── NotifyIcon Events.ctl │ └── NotifyIcon User Event Ref.ctl └── dir.mnu ├── Notmyfault ├── exe │ ├── IOCTLCMD.H │ ├── NotMyfault.dep │ ├── NotMyfault.dsp │ ├── NotMyfault.dsw │ ├── NotMyfault.suo │ ├── NotMyfault.suo.old │ ├── NotMyfault.vcproj │ ├── Release │ │ ├── NotMyfault.exe │ │ └── myfault.sys │ ├── driver.c │ ├── icon1.ico │ ├── notmyfault.c │ ├── notmyfault.h │ ├── notmyfault.rc │ ├── resource.h │ └── x64 │ │ └── Release │ │ ├── NotMyfault.exe │ │ └── myfault.sys └── sys │ ├── MAKEFILE │ ├── SOURCES │ ├── myfault.c │ └── myfault.rc ├── PhoneDatabase ├── mobile.mdb ├── mobile.udl └── phone database.vi ├── Probe └── Probe │ ├── Probe.vi │ ├── ProbeToolkit.lvproj │ ├── _Probe.llb │ └── dir.mnu ├── README.md ├── RealTimeSequence ├── Ctls │ ├── PC_DynCallVIOutputParameter.ctl │ ├── PC_DynCallVIParameter.ctl │ ├── PC_Main_SequenceEditor_TempVariable.ctl │ └── StepData.ctl ├── PC_DynVIs │ ├── PC_CallRTFireAndForget.vi │ ├── PC_CallRTGuidedMunitions.vi │ ├── PC_CallRTMultipleVIsGuidedMunitions.vi │ ├── PC_CallTestRT.vi │ ├── PC_DynamicCallRTVI.vi │ ├── PC_ParallelCaller.vi │ └── PC_ParallelThread.vi ├── PC_MainVIs │ └── PC_Main_SequenceEditor.vi ├── PC_SubVIs │ ├── PC_Main_SequenceEditor_AddNewStep.vi │ ├── PC_Main_SequenceEditor_TempVariable_Initialize.vi │ └── PC_RealTimeHardwareDetection.vi ├── RT_HAL │ ├── ASL Code │ │ ├── CloseAllDevices.vi │ │ ├── FreqSweepTest.vi │ │ ├── InitializeAllDevices.vi │ │ ├── LED Test.vi │ │ ├── Limit Test.vi │ │ └── XML │ │ │ ├── Legacy Instr Config 081226.xml │ │ │ ├── PXI Mod Instr Config 081226.xml │ │ │ ├── Read Instr XML File.vi │ │ │ ├── Simulated Instruments.xml │ │ │ ├── Write Legacy Instr XML File.vi │ │ │ └── Write PXI Mod Instr XML File.vi │ ├── DSSP Modules │ │ ├── Close Instrument.vi │ │ ├── DSSP.lvclass │ │ ├── Initialize Instrument.vi │ │ ├── Input Classes │ │ │ ├── Meter │ │ │ │ ├── Meter.lvclass │ │ │ │ └── Read Diode.vi │ │ │ └── Scope │ │ │ │ ├── ReadMaxAmp.vi │ │ │ │ └── Scope.lvclass │ │ └── Output Classes │ │ │ ├── Signal Generation │ │ │ ├── Generate Signal.vi │ │ │ └── Signal Generation.lvclass │ │ │ └── Switch │ │ │ └── Switch.lvclass │ ├── DSSP_Classes.aliases │ ├── DSSP_Classes.lvlps │ ├── DSSP_Classes.lvproj │ ├── DSSP_Classes │ │ ├── Input Classes │ │ │ ├── Meter │ │ │ │ ├── Fluke DMM │ │ │ │ │ ├── Close Instrument.vi │ │ │ │ │ ├── Fluke DMM.lvclass │ │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ │ └── Read Diode.vi │ │ │ │ ├── NI DMM │ │ │ │ │ ├── Close Instrument.vi │ │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ │ ├── NI DMM.lvclass │ │ │ │ │ └── Read Diode.vi │ │ │ │ └── Simulated DMM │ │ │ │ │ ├── Close Instrument.vi │ │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ │ ├── Read Diode.vi │ │ │ │ │ └── Simulated DMM.lvclass │ │ │ └── Scope │ │ │ │ ├── NI Digitizer │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ ├── NI Digitizer.lvclass │ │ │ │ └── ReadMaxAmp.vi │ │ │ │ ├── Simulated Scope │ │ │ │ ├── Amplitude_Simulation.vi │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ ├── ReadMaxAmp.vi │ │ │ │ ├── Simulated Scope Operation.ctl │ │ │ │ └── Simulated Scope.lvclass │ │ │ │ └── Tek 2k │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ ├── ReadMaxAmp.vi │ │ │ │ └── Tek 2k Scope.lvclass │ │ └── Output Classes │ │ │ ├── Signal Generation │ │ │ ├── Ag Sig Gen │ │ │ │ ├── Ag Sig Gen.lvclass │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Generate Signal.vi │ │ │ │ └── Initialize Instrument.vi │ │ │ ├── NI Sig Gen │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Generate Signal.vi │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ └── NI Sig Gen.lvclass │ │ │ └── Simulated Sig Gen │ │ │ │ ├── Close Instrument.vi │ │ │ │ ├── Generate Signal.vi │ │ │ │ ├── Initialize Instrument.vi │ │ │ │ └── Simulated Sig Gen.lvclass │ │ │ └── Switch │ │ │ ├── NI Switch │ │ │ ├── Close Instrument.vi │ │ │ ├── Initialize Instrument.vi │ │ │ └── NI Switch.lvclass │ │ │ └── Simulated Switch │ │ │ ├── Close Instrument.vi │ │ │ ├── Initialize Instrument.vi │ │ │ └── Simulated Switch.lvclass │ ├── HAL.aliases │ ├── HAL.lvlps │ ├── HAL.lvproj │ ├── HAL_README.txt │ └── Test Code │ │ └── Main Test App.vi ├── RT_MainVIs │ ├── RT_AMC_Main.vi │ └── RT_DataMonitor.vi ├── RT_SubVIs │ └── Resample.vi ├── RT_Test │ ├── RT_Proof of Concept(Str).vi │ ├── RT_Proof of Concept.vi │ ├── RT_TestDalayWithReentrant.vi │ └── RT_TestDalayWithoutReentrant.vi ├── RealTime.aliases ├── RealTime.lvlps ├── RealTime.lvproj └── Test │ ├── Display VI.vi │ ├── Generator VI.vi │ ├── display.vi │ ├── writer1.vi │ └── writer2.vi ├── SaveWebPage ├── Key │ ├── API │ │ ├── API函数教程.hml.chm │ │ ├── API函数教程.hml.chw │ │ ├── API函数调用(GetDiskFreeSpace).vi │ │ ├── API库函数.docx │ │ ├── GetLastError返回值的含义.docx │ │ ├── LabVIEW中如何调用Windows API.doc │ │ ├── WinAPI函数库.doc │ │ ├── user32函数库.txt │ │ ├── 半透明窗体.doc │ │ ├── 新编WIN32API大全.CHM │ │ └── 新编WIN32API大全.chw │ ├── Example.vi │ ├── KeyDown.vi │ ├── KeyPress.vi │ ├── KeyUp.vi │ ├── TypeCharacters.vi │ └── 移动鼠标并单击.vi ├── NI Lookout开发.docx ├── NIProducts.vi ├── SaveWebPage.ahk ├── SaveWebPage.ini ├── SaveWebPagePy │ ├── .idea │ │ ├── SaveWebPagePy.iml │ │ ├── dictionaries │ │ │ └── lhb.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── GetWebPage.py │ └── url.txt └── url.txt ├── Simulation ├── Read-Write Model Parameters │ └── subVIs │ │ └── subsystem with sine wave.vi ├── Real-time │ ├── Global 2.vi │ ├── SimEx Writing Model Parameters to RT.aliases │ ├── SimEx Writing Model Parameters to RT.lvlps │ ├── SimEx Writing Model Parameters to RT.lvproj │ ├── SimEx Writing Model Parameters to RT.vi │ └── Varible.lvlib └── builds │ └── SimEx Writing Model Parameters to RT │ └── RT PXI Target │ └── My Real-Time Application │ ├── c │ └── ni-rt │ │ └── startup │ │ ├── data │ │ └── NILVSim.dll │ │ ├── project │ │ └── errors │ │ │ ├── ChineseS │ │ │ ├── LabVIEW Elemental IO-errors.txt │ │ │ └── LabVIEW FPGA-errors.txt │ │ │ ├── English │ │ │ ├── LabVIEW Elemental IO-errors.txt │ │ │ ├── LabVIEW FPGA-errors.txt │ │ │ └── Sound and Vibration-errors.txt │ │ │ ├── French │ │ │ ├── LabVIEW Elemental IO-errors.txt │ │ │ ├── LabVIEW FPGA-errors.txt │ │ │ └── Sound and Vibration-errors.txt │ │ │ ├── German │ │ │ ├── LabVIEW Elemental IO-errors.txt │ │ │ ├── LabVIEW FPGA-errors.txt │ │ │ └── Sound and Vibration-errors.txt │ │ │ └── Japanese │ │ │ ├── LabVIEW Elemental IO-errors.txt │ │ │ ├── LabVIEW FPGA-errors.txt │ │ │ └── Sound and Vibration-errors.txt │ │ ├── startup.aliases │ │ └── startup.rtexe │ └── depinstr.bin ├── Slider Demo ├── Controls │ └── Signal Controls.ctl ├── Main.vi ├── SlideEngine │ ├── Action Queue Consumer.vi │ ├── Action Queue Consumer2.vi │ ├── Left - Close Tray.vi │ ├── Left - Open Tray.vi │ ├── Register Control.vi │ ├── Slide.vi │ ├── SlideActions.ctl │ ├── SlideEngine.lvclass │ └── Unregister All Controls.vi ├── Slider Demo.aliases ├── Slider Demo.lvlps ├── Slider Demo.lvproj └── Utility VIs │ └── Get Tab Ctrl Number.vi ├── Swap A and B ├── Swap A and B.vi └── dir.mnu ├── TDMS File Processing ├── Auto Reziseable UI.vi ├── Control 2.ctl ├── Control 3.ctl ├── Data File Processing UI.vi ├── DataFileProcessing.aliases ├── DataFileProcessing.lvlps ├── DataFileProcessing.lvproj ├── Shared │ ├── TDM_File.png │ ├── TDMs_Group.png │ └── TDMs_channel.png ├── TDMs.ico ├── data.tdms_index └── sub VIs │ ├── Add Compute Method │ ├── Current VI's Path in Different APP Kind__Uti.vi │ ├── Dynamic Call__Uti.vi │ ├── Dynamic VI Paths_FS-Scope SP.ctl │ ├── Error Clear Errors__Uti.vi │ ├── File System Paths_FS-Scope SP.vi │ ├── Function Variable Parameter Operations-Scope SP.ctl │ ├── Get ChanUsed_DC-Scope SP.vi │ ├── INI Initial Value Functional Variable_DStr-Scope SP.vi │ ├── INI Initial Values_DStr-Scope SP.ctl │ ├── INI Properties Functional Variable_DStr-Scope SP.vi │ ├── INI Properties_DStr-Scope SP.ctl │ ├── Measure Operations_Meas.ctl │ ├── Measurement Add Itmes Operations_Mesa.ctl │ ├── Measurement Config_Measure-Scope SP.vi │ ├── Measurement Functional Variable_Meas-Scope SP.vi │ ├── Measurement Operations_Meas.ctl │ ├── Measurements Add Items UI_Measure-Scope SP.vi │ ├── Measurements Operations_Meas-Scope SP.vi │ ├── Measurements UI_Measure-Scope SP.vi │ ├── SCOPE Configuration_SA-Scope SP.vi │ ├── SCOPE Operations_SA-Scope SP.ctl │ ├── Set the Impedancel According to Range in Autosetup_FP-Scope SP.vi │ ├── Set the TimeInterval According to Range in Autosetup_FP-Scope SP.vi │ ├── Set the Volt Interval According to Range in Autosetup_FP-Scope SP.vi │ ├── Split String To I32 Spreadsheet Array_Uti.vi │ ├── Sub Panel Status Flag_DStr-Scope SP.vi │ └── System Paths_FS-Scope SP.ctl │ ├── Channel Info__DV.ctl │ ├── Compute Btn.ctl │ ├── Compute Dialog Prompt.vi │ ├── CursorGet.vi │ ├── CursorMove.vi │ ├── CursorMoveSet.vi │ ├── CursorSet.vi │ ├── Data Contents Refresh__DV.vi │ ├── Data File Processing UI Add Messages.vi │ ├── Data File Processing UI Add Type Message.vi │ ├── Data File Processing UI Build File Relative Path.vi │ ├── Data File Processing UI Build Type Nodata Message.vi │ ├── Data File Processing UI Build Type Nodata Messages.vi │ ├── Data File Processing UI Build Type and Data Message.vi │ ├── Data File Processing UI Build Type and Data Messages.vi │ ├── Data File Processing UI Convert Message to String.vi │ ├── Data File Processing UI Convert String to Message.vi │ ├── Data File Processing UI Default Runtime Menu Path.vi │ ├── Data File Processing UI Find Control By Name.vi │ ├── Data File Processing UI Get Message.vi │ ├── Data File Processing UI Manager.ctl │ ├── Data File Processing UI Manager.vi │ ├── Data File Processing UI Message Define.ctl │ ├── Data File Processing UI Message Queue.vi │ ├── Data File Processing UI Message Type Define.ctl │ ├── Data File Processing UI Variable.vi │ ├── Data File Processing UI.rtm │ ├── Data File Processing UI_ChannelSet.ctl │ ├── Data File Processing UI_GlobalData.ctl │ ├── File Save Result.vi │ ├── FullFile.vi │ ├── Get TDMs Contents.vi │ ├── Graph Blowup__DV.vi │ ├── Graph Tools.ctl │ ├── SelectPath.vi │ ├── Set Control Custom Symbols with Index File (Tree)__Uti.vi │ ├── Set DataList Tree Property.vi │ ├── SubVI_CalculateRange.vi │ ├── SubVI_ChooseChannels.vi │ ├── SubVI_InitialUI_ResetPanes.vi │ ├── SubVI_NewPath.vi │ ├── SubVI_ProcessData.vi │ ├── SubVI_ProcessTitle.vi │ ├── SubVI_ReadRow.vi │ ├── SubVI_ReadTDMs Header.vi │ ├── SubVI_ReadTDMs.vi │ ├── SubVI_ReadTDMsAll.vi │ ├── SubVI_ReadTitle.vi │ ├── SubVI_ReadTxt.vi │ ├── SubVI_SaveAsTXT.vi │ ├── TDMs Group&Channel Name.vi │ ├── TDMs Ref.vi │ ├── Waveform Info__DV.ctl │ └── getChannelList Modify.vi ├── TestStand with RT ├── Bin │ ├── NiVi488.dll │ ├── NiViAsrl.dll │ ├── NiViEnet.dll │ ├── NiViEnetAsrl.dll │ ├── NiViPxi.dll │ ├── NiViRio.dll │ ├── NiViRpc.dll │ ├── NiViUsb.dll │ ├── NiVisaTulip.dll │ ├── niSync.dll │ ├── pipx40_32.dll │ └── pipx40_32.tlb ├── Hosts_DynamicVIs │ └── DynamicCall.vi ├── LabVIEW RT │ ├── LabVIEW RT ReadMe.txt │ ├── Pipx40a.inf │ ├── Pipx40b.inf │ ├── Pipx40c.inf │ ├── Pipx40d.inf │ ├── Pipx40e.inf │ ├── Pipx40f.inf │ ├── Pipx40g.inf │ ├── Pipx40h.inf │ ├── Pipx40i.inf │ ├── Pipx40j.inf │ ├── Pipx40k.inf │ ├── Pipx40l.inf │ ├── Pipx40m.inf │ ├── Pipx40n.inf │ └── Pipx40o.inf ├── Pickring 40-295-121-10_16 │ ├── 40-295-121-10_16.vi │ ├── Pickering.aliases │ ├── Pickering.lvlps │ ├── Pickering.lvproj │ └── Pipx40 │ │ ├── BatterySimulator │ │ ├── Examples.mnu │ │ ├── Pipx40.llb │ │ ├── Pipx40_00.mnu │ │ ├── Pipx40_01.mnu │ │ ├── Pipx40_02.mnu │ │ ├── Pipx40_03.mnu │ │ ├── Pipx40_04.mnu │ │ ├── Pipx40_05.mnu │ │ ├── Pipx40_06.mnu │ │ ├── Pipx40_07.mnu │ │ ├── Pipx40_08.mnu │ │ ├── Pipx40_09.mnu │ │ ├── Pipx40_10.mnu │ │ ├── PrecisionProgrResistors.mnu │ │ └── dir.mnu ├── Sequence File 1.seq ├── builds │ └── Pickering │ │ └── MX-146 │ │ ├── My Source Distribution │ │ ├── My Source Distribution_depinstr.bin │ │ └── c │ │ │ └── ni-rt │ │ │ └── startup │ │ │ ├── 40-295-121-10_16.vi │ │ │ ├── pipx40 Close.vi │ │ │ ├── pipx40 Initialize.vi │ │ │ ├── pipx40 Set Channel Pattern.vi │ │ │ ├── pipx40 VXIPnp Error Converter.vi │ │ │ ├── pipx40_32.dll │ │ │ └── pipx40_32.tlb │ │ └── Pickring │ │ ├── Pickring_depinstr.bin │ │ └── c │ │ └── ni-rt │ │ └── startup │ │ ├── 40-295-121-10_16.vi │ │ ├── pipx40 Close.vi │ │ ├── pipx40 Initialize.vi │ │ ├── pipx40 Set Channel Pattern.vi │ │ └── pipx40 VXIPnp Error Converter.vi └── test.vi ├── TrayIcon ├── LabVIEWTrayIcon.zip ├── NotifyIcon.zip └── createnotifyicon.zip ├── VI Version Loader ├── CommandLine Folder │ ├── CommandLine.aliases │ ├── CommandLine.lvproj │ ├── CommandLine.vi │ ├── VI Server Project.vi │ ├── VI Server Test.vi │ └── VI Server.vi ├── VERSION INFO │ ├── 2009.vi │ ├── 2010.vi │ ├── 8.0.vi │ ├── 8.2.vi │ ├── 8.5.vi │ └── 8.6.vi └── VI Loader.txt ├── Wake On Lan ├── WakeOnLAN-2.vi ├── WakeOnLan.vi └── wake_up_on_lan.vi ├── XML Read Toolkit ├── XML Read Toolkit │ ├── ConvertString.vi │ ├── GetXMLNodeString.vi │ ├── Pansino_XML_Read.lvlib │ ├── _SubVIs │ │ ├── Convert_StringToBool.vi │ │ ├── Convert_StringToDBL.vi │ │ ├── Convert_StringToI32.vi │ │ ├── Convert_StringToU16.vi │ │ ├── Convert_StringToU16Array.vi │ │ ├── Convert_StringToU32.vi │ │ ├── Convert_StringToU8.vi │ │ ├── Convert_StringToU8Array.vi │ │ ├── GetFirstChild_SequentialRead.vi │ │ ├── GetSibling_SequentialRead.vi │ │ ├── GetSimpleArray.vi │ │ ├── GetSimpleArray_SequentialRead.vi │ │ ├── Get_AttributeValue.vi │ │ └── Get_NodeValue.vi │ └── dir.mnu ├── XML Read Toolkits.aliases ├── XML Read Toolkits.lvlps └── XML Read Toolkits.lvproj ├── XML_ControlConfig └── XML_ControlConfig.vi ├── cDAQ UI Demo v1.2 ├── Controls │ ├── Handle Images - Operations.ctl │ ├── ImageType.ctl │ ├── Init-Run-End States.ctl │ └── Pics │ │ └── Stop.png ├── Demo Script - Coolest cDAQ Demo Ever.docx ├── Documents │ └── module_descriptions.txt ├── Dynamic Loading │ ├── ConfigDelayScreen.vi │ ├── ConfigUI.vi │ ├── ErrorScreen.vi │ ├── HW_Server.vi │ ├── Images │ │ ├── NI 9171.png │ │ ├── NI 9172.png │ │ ├── NI 9174.png │ │ └── NI 9178.png │ ├── MeasUIs │ │ ├── Measure - NI 9211.vi │ │ ├── Measure - NI 9215.vi │ │ ├── Measure - NI 9219.vi │ │ ├── Measure - NI 9234.vi │ │ ├── Measure - NI 9263.vi │ │ └── Measure - NI 9472.vi │ ├── NotConfiguredScreen.vi │ ├── Sequencer.vi │ ├── Settings │ │ ├── Settings - Default.vi │ │ ├── Settings - NI 9211.vi │ │ ├── Settings - NI 9215.vi │ │ ├── Settings - NI 9219.vi │ │ ├── Settings - NI 9234.vi │ │ ├── Settings - NI 9263.vi │ │ └── Settings - NI 9472.vi │ └── StopScreen.vi ├── Pics │ ├── DEFAULT.png │ ├── NI 9201.png │ ├── NI 9207.png │ ├── NI 9211.png │ ├── NI 9215.png │ ├── NI 9219.png │ ├── NI 9222.png │ ├── NI 9234.png │ ├── NI 9263.png │ ├── NI 9411.png │ ├── NI 9472.png │ ├── NI 9481.png │ └── NI UNSUPPORTED.png ├── SubVIs │ ├── Chassis Type Memory.vi │ ├── Check Chassis Status.vi │ ├── Clear Specific Error.vi │ ├── CloseAllVIs.vi │ ├── Config UI - Global Stop.vi │ ├── Controls │ │ ├── 4ch.ctl │ │ ├── 4ch_ao.ctl │ │ ├── Config UI Global Stop - Operations.ctl │ │ ├── Control FP Objects - Operations.ctl │ │ ├── GetModueDescriptionsOperations.ctl │ │ ├── Global Stop - Operations.ctl │ │ ├── HW Server Status.ctl │ │ ├── INIT- READ - WRITE.ctl │ │ ├── Init-Write-Read.ctl │ │ ├── MeasVIStatusMemoryOperations.ctl │ │ ├── ModuleCluster.ctl │ │ ├── ModuleConfigurationCluster.ctl │ │ ├── ModulePicCluster.ctl │ │ ├── Read - Write.ctl │ │ └── TransparencyEffectOperations.ctl │ ├── ConvertRunModesBack.vi │ ├── CreatemodulePicString.vi │ ├── Delete Unused Pictures.vi │ ├── Demo 1 - Image Gallery - Check Image Type.vi │ ├── Demo 1 - Image Gallery - Get Image File.vi │ ├── Demo 1 - Image Gallery - Get Image Paths From Folder.vi │ ├── Demo 1 - Image Gallery - Get Mouse X Axis Position.vi │ ├── Demo 1 - Image Gallery - Get Refs to Dynamic VIs.vi │ ├── Error - StoreError.vi │ ├── Get Chassis and modules list.vi │ ├── Get Window Handle.vi │ ├── GetButtonNumber.vi │ ├── GetCurrentPath.vi │ ├── GetHWInfo.vi │ ├── GetModuleDescriptions.vi │ ├── GetModulePic.vi │ ├── GetRunModes.vi │ ├── GetSlotNr.vi │ ├── Global Stop.vi │ ├── HW_Server.vi │ ├── HW_Server_memory.vi │ ├── Handle UI Objects.vi │ ├── HandleDigitalInputModuleNames.vi │ ├── HandleInputModuleNames.vi │ ├── HandleModuleNames.vi │ ├── HideShowFrontPanel.vi │ ├── Images - Delete all png images.vi │ ├── LaunchConfigVIs.vi │ ├── LaunchTestPanel.vi │ ├── LaunchVI_BG.vi │ ├── Meas - Filter Meas VI names.vi │ ├── Meas - Meas VI names memory.vi │ ├── Meas - Send Meas VI Names.vi │ ├── ModuleConfigurationMemory.vi │ ├── Queue - Engine - Main.vi │ ├── ReconnectMessage.vi │ ├── Remove Unconfigured DAQmx Devices.vi │ ├── Run VI Transparently.vi │ ├── Save Images Tool.vi │ ├── SelectChassis.vi │ ├── Sequencer - Create Sequence.vi │ ├── Set Window Color to Transparent.vi │ ├── SortRefs.vi │ ├── Testing.vi │ ├── TransparencyEffect.vi │ ├── WaveformBufferGeneration_(multi).vi │ ├── cDAQ - Launch Configuration SW.vi │ ├── cDAQ UI - Handle Config Launch.vi │ ├── cDAQ UI - Handle Images.vi │ └── cRIO Finder.vi ├── cDAQ - UI - Main.vi ├── demo.aliases ├── demo.lvlps └── demo.lvproj ├── cla_sample_atm_solution ├── 0_Practice │ ├── ATM_Practice.aliases │ ├── ATM_Practice.lvlps │ ├── ATM_Practice.lvproj │ ├── Controls │ │ ├── KeyPad_Clear.vi │ │ ├── Keypad.xctl │ │ ├── Keypad_Data.ctl │ │ ├── Keypad_Facade.vi │ │ ├── Keypad_Init.vi │ │ └── Keypad_State.ctl │ ├── DataType │ │ ├── ATM Controller_State.ctl │ │ ├── FGV_Error Handler_Classification.ctl │ │ ├── FGV_Error Handler_Command.ctl │ │ ├── FGV_Error Handler_Error log.ctl │ │ ├── FGV_Message Manager_Command.ctl │ │ ├── Simulated Database_Function.ctl │ │ ├── Simulated Database_Record.ctl │ │ ├── Simulation Console_Command To UI.ctl │ │ ├── Simulation Console_Controller Command.ctl │ │ ├── Simulation Console_Data From UI.ctl │ │ └── Simulation Console_User Action.ctl │ ├── FGV │ │ ├── FGV_Error Handler.vi │ │ ├── FGV_Error Handler_Log Error.vi │ │ └── FGV_Message Manager.vi │ ├── Simulation Interface.vi │ └── SubVI │ │ ├── ATM Controller.vi │ │ ├── Simulated Database.vi │ │ └── Simulation Console.vi ├── ATM.aliases ├── ATM.lvlps ├── ATM.lvproj ├── ATM.rqtf ├── ATM.rqtfimage ├── ATM.types ├── Errors │ └── CLA-errors.txt ├── From Hx.rar ├── Keypad │ ├── Keypad Clear.vi │ ├── Keypad Data.ctl │ ├── Keypad Facade.vi │ ├── Keypad Init.vi │ ├── Keypad State.ctl │ └── Keypad.xctl ├── MainFrameWork.vi ├── Project Planning Documentq.doc ├── Requirements.xlsx ├── Simulation Interface.vi ├── SubVIs │ ├── ATM Menu Handler.vi │ ├── ATM Message Handler.vi │ ├── Handle Error.vi │ ├── State Processing Logic.vi │ ├── User Console Interface.vi │ ├── Withdrawal.vi │ └── Write Error Log Entry.vi ├── Top-level Modules │ ├── ATM Controller.vi │ ├── Account Database.vi │ └── Simulated Console.vi ├── TypeDefs │ ├── ATM Controller State.ctl │ ├── CTRL to UI Command.ctl │ ├── CTRL to UI Message.ctl │ ├── Error Classification.ctl │ ├── Error Handler Commands.ctl │ ├── Record.ctl │ ├── Simulated Database Command.ctl │ ├── UI Items.ctl │ ├── UI to CTRL Command.ctl │ ├── UI to CTRL Message.ctl │ └── User Console Commands.ctl ├── cla_exam_prep_guide.pdf ├── cla_exam_prep_guide.txt ├── cla_exam_topics.pdf ├── cla_sample_exam_atm_machine.docx ├── cla_sample_exam_atm_machine.pdf ├── cla_sample_exam_atm_machine.txt ├── cla_sample_exam_atm_machine_Require.txt ├── errlog.txt └── intermediate │ └── Data │ ├── ATM_Cover.xml │ ├── ATM_Cover_ATM Controller (diagram).png │ ├── ATM_Cover_ATM Controller (panel).png │ ├── ATM_Cover_ATM Controller State (panel).png │ ├── ATM_Cover_ATM Menu Handler (diagram).png │ ├── ATM_Cover_ATM Menu Handler (panel).png │ ├── ATM_Cover_ATM Message Handler (diagram).png │ ├── ATM_Cover_ATM Message Handler (panel).png │ ├── ATM_Cover_Account Database (diagram).png │ ├── ATM_Cover_Account Database (panel).png │ ├── ATM_Cover_CTRL to UI Command (panel).png │ ├── ATM_Cover_CTRL to UI Message (panel).png │ ├── ATM_Cover_Error Classification (panel).png │ ├── ATM_Cover_Error Handler Commands (panel).png │ ├── ATM_Cover_Handle Error (diagram).png │ ├── ATM_Cover_Handle Error (panel).png │ ├── ATM_Cover_Keypad Data (panel).png │ ├── ATM_Cover_Keypad Facade (diagram).png │ ├── ATM_Cover_Keypad Facade (panel).png │ ├── ATM_Cover_Keypad Init (diagram).png │ ├── ATM_Cover_Keypad Init (panel).png │ ├── ATM_Cover_Keypad State (panel).png │ ├── ATM_Cover_MainFrameWork (diagram).png │ ├── ATM_Cover_MainFrameWork (panel).png │ ├── ATM_Cover_Record (panel).png │ ├── ATM_Cover_Simulated Console (diagram).png │ ├── ATM_Cover_Simulated Console (panel).png │ ├── ATM_Cover_Simulated Database Command (panel).png │ ├── ATM_Cover_Simulation Interface (diagram).png │ ├── ATM_Cover_Simulation Interface (panel).png │ ├── ATM_Cover_State Processing Logic (diagram).png │ ├── ATM_Cover_State Processing Logic (panel).png │ ├── ATM_Cover_UI Items (panel).png │ ├── ATM_Cover_UI to CTRL Command (panel).png │ ├── ATM_Cover_UI to CTRL Message (panel).png │ ├── ATM_Cover_User Console Commands (panel).png │ ├── ATM_Cover_User Console Interface (diagram).png │ ├── ATM_Cover_User Console Interface (panel).png │ ├── ATM_Cover_Withdrawal (diagram).png │ ├── ATM_Cover_Withdrawal (panel).png │ ├── ATM_Cover_Write Error Log Entry (diagram).png │ └── ATM_Cover_Write Error Log Entry (panel).png ├── get case names to array constant └── get case names to array constant.vi ├── mailpop70 ├── Catch POP Errors.vi ├── Check for Mail.vi ├── Close POP session.vi ├── Get All Messages.vi ├── Mail Browser.vi ├── MailWake.aliases ├── MailWake.lvlps ├── MailWake.lvproj ├── MailWake.vi ├── Open POP session.vi ├── POP Read to DOT-CRLF.vi ├── POP send DELE.vi ├── POP send LIST.vi ├── POP send QUIT.vi ├── POP send RETR.vi ├── Parse Mail Header Info.vi ├── Retrieve Message with Options.vi └── WakeOnLAN.vi └── 键盘效果 ├── API ├── API函数教程.hml.chm ├── API函数教程.hml.chw ├── API函数调用(GetDiskFreeSpace).vi ├── API库函数.docx ├── GetLastError返回值的含义.docx ├── LabVIEW中如何调用Windows API.doc ├── WinAPI函数库.doc ├── user32函数库.txt ├── 半透明窗体.doc ├── 新编WIN32API大全.CHM └── 新编WIN32API大全.chw ├── Example.vi ├── KeyDown.vi ├── KeyPress.vi ├── KeyUp.vi ├── TypeCharacters.vi └── 移动鼠标并单击.vi /7z Backup/7z.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/7z Backup/7z.bat -------------------------------------------------------------------------------- /7z Backup/path.txt: -------------------------------------------------------------------------------- 1 | C:\Users\lhb\AppData\Roaming\Microsoft\Windows\SendTo -------------------------------------------------------------------------------- /AHK64/AU3_Spy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AU3_Spy.exe -------------------------------------------------------------------------------- /AHK64/AutoHotkey Website.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkey Website.url -------------------------------------------------------------------------------- /AHK64/AutoHotkey.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkey.chm -------------------------------------------------------------------------------- /AHK64/AutoHotkey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkey.exe -------------------------------------------------------------------------------- /AHK64/AutoHotkeyA32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkeyA32.exe -------------------------------------------------------------------------------- /AHK64/AutoHotkeyU32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkeyU32.exe -------------------------------------------------------------------------------- /AHK64/AutoHotkeyU64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/AutoHotkeyU64.exe -------------------------------------------------------------------------------- /AHK64/Compiler/ANSI 32-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Compiler/ANSI 32-bit.bin -------------------------------------------------------------------------------- /AHK64/Compiler/Ahk2Exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Compiler/Ahk2Exe.exe -------------------------------------------------------------------------------- /AHK64/Compiler/AutoHotkeySC.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Compiler/AutoHotkeySC.bin -------------------------------------------------------------------------------- /AHK64/Compiler/Unicode 32-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Compiler/Unicode 32-bit.bin -------------------------------------------------------------------------------- /AHK64/Compiler/Unicode 64-bit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Compiler/Unicode 64-bit.bin -------------------------------------------------------------------------------- /AHK64/Installer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/Installer.ahk -------------------------------------------------------------------------------- /AHK64/horizontal-scroll.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/horizontal-scroll.ahk -------------------------------------------------------------------------------- /AHK64/horizontal-scroll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/horizontal-scroll.exe -------------------------------------------------------------------------------- /AHK64/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AHK64/license.txt -------------------------------------------------------------------------------- /Actor Framework/Actor Framework Hands-On Instructions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Actor Framework Hands-On Instructions.pdf -------------------------------------------------------------------------------- /Actor Framework/Exercise/AF Hands-On Exercise.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/AF Hands-On Exercise.aliases -------------------------------------------------------------------------------- /Actor Framework/Exercise/AF Hands-On Exercise.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/AF Hands-On Exercise.lvlps -------------------------------------------------------------------------------- /Actor Framework/Exercise/AF Hands-On Exercise.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/AF Hands-On Exercise.lvproj -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler UI/Cooler Panel/Actor Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler UI/Cooler Panel/Actor Core.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler UI/Cooler UI.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler UI/Cooler UI.lvlib -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler.lvlib -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Actor Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Actor Core.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Cooler.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Cooler.lvclass -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Get New Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Get New Level.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Set Output State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Set Output State.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Update Fan Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Update Fan Status.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Cooler/Cooler/Write UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Cooler/Cooler/Write UI.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Dual Controller/Dual Fan.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Dual Controller/Dual Fan.lvlib -------------------------------------------------------------------------------- /Actor Framework/Exercise/Dual Controller/Dual Fan/Power Off.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Dual Controller/Dual Fan/Power Off.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Dual Controller/Dual Fan/Power On.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Dual Controller/Dual Fan/Power On.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Dual Controller/Dual Fan/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Dual Controller/Dual Fan/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Dual Controller/Dual Fan/Update.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Dual Controller/Dual Fan/Update.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Feedback Evaporative Cooler Demo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Feedback Evaporative Cooler Demo.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Cooler Panel UI Components.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Cooler Panel UI Components.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Cooler Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Cooler Test.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Dual Fan Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Dual Fan Test.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Message Template/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Message Template/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Unit Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Unit Data.ctl -------------------------------------------------------------------------------- /Actor Framework/Exercise/Support/Water Level Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Support/Water Level Test.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Water Level/Get New Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Water Level/Get New Level.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Water Level/Set Output State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Water Level/Set Output State.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Water Level/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Water Level/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Exercise/Water Level/Water Level.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Exercise/Water Level/Water Level.lvclass -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor Example.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor Example.lvlps -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor Example.vi -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor/Actor Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor/Actor Core.vi -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor/Read Time.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor/Read Time.vi -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor/Update.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor/Update.vi -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor/Write ID.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor/Write ID.vi -------------------------------------------------------------------------------- /Actor Framework/Simple Actor Example/Simple Actor/Zero.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simple Actor Example/Simple Actor/Zero.vi -------------------------------------------------------------------------------- /Actor Framework/Simulation/Simulation Data_Global.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simulation/Simulation Data_Global.vi -------------------------------------------------------------------------------- /Actor Framework/Simulation/Simulation VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simulation/Simulation VI.vi -------------------------------------------------------------------------------- /Actor Framework/Simulation/Simulation.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Simulation/Simulation.lvlib -------------------------------------------------------------------------------- /Actor Framework/Solution/AF Hands-On Solution.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/AF Hands-On Solution.lvproj -------------------------------------------------------------------------------- /Actor Framework/Solution/Class Hierarchy.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Class Hierarchy.bmp -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Cooler Panel/Actor Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Cooler Panel/Actor Core.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Cooler UI.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Cooler UI.lvlib -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Update Fan Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Update Fan Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Update Pump Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Update Pump Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Update Temperature Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Update Temperature Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler UI/Write Cooler Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler UI/Write Cooler Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler.lvlib -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Actor Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Actor Core.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Cooler.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Cooler.lvclass -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Get New Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Get New Level.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Pre Launch Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Pre Launch Init.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Set Output State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Set Output State.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Update Fan Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Update Fan Status.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Cooler/Write UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Cooler/Write UI.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Update Fan Status Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Update Fan Status Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Write UI Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Write UI Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Cooler/Write UI Msg/Send Write UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Cooler/Write UI Msg/Send Write UI.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Dual Fan.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Dual Fan.lvlib -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Dual Fan/Power Off.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Dual Fan/Power Off.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Dual Fan/Power On.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Dual Fan/Power On.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Dual Fan/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Dual Fan/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Dual Fan/Update.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Dual Fan/Update.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Power Off Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Power Off Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Dual Controller/Power On Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Dual Controller/Power On Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Feedback Evaporative Cooler Demo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Feedback Evaporative Cooler Demo.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Cooler Panel UI Components.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Cooler Panel UI Components.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Cooler Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Cooler Test.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Dual Fan Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Dual Fan Test.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Message Template/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Message Template/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Unit Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Unit Data.ctl -------------------------------------------------------------------------------- /Actor Framework/Solution/Support/Water Level Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Support/Water Level Test.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Timed Loop Controller/Update Msg/Do.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Timed Loop Controller/Update Msg/Do.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Water Level/Get New Level.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Water Level/Get New Level.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Water Level/Set Output State.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Water Level/Set Output State.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Water Level/Stop Core.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Water Level/Stop Core.vi -------------------------------------------------------------------------------- /Actor Framework/Solution/Water Level/Water Level.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/Water Level/Water Level.lvclass -------------------------------------------------------------------------------- /Actor Framework/Solution/documentation/Cooler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Actor Framework/Solution/documentation/Cooler.png -------------------------------------------------------------------------------- /AutoAbortVIs/EasyVIAborterAuto.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/AutoAbortVIs/EasyVIAborterAuto.vi -------------------------------------------------------------------------------- /BandObjects/AsyncSocketServer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/AsyncSocketServer.zip -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/Attributes.cs -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObject.cs -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObject.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObject.resx -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.csproj -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.csproj.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.csproj.old -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.csproj.user -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.csproj.user.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.csproj.user.old -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.ncb -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.sdf -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.sln -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.sln.old -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjectLib.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjectLib.suo -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/BandObjects.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/BandObjects.snk -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/ComInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/ComInterop.cs -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/Debug/RegisterLib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/RegisterLib/Debug/RegisterLib.log -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcproj -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcxproj -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/RegisterLib/RegisterLib.vcxproj.user -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/Release/RegisterLib.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | Release|Win32|C:\Documents and Settings\Administrator\Desktop\BandObjectLib\| 3 | -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/RegisterLib/Release/RegisterLib.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/RegisterLib/Release/RegisterLib.log -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/UpgradeLog.XML -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/_UpgradeReport_Files/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/_UpgradeReport_Files/Thumbs.db -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/bin/Debug/BandObjectLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/bin/Debug/BandObjectLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/bin/Debug/BandObjectLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/bin/Debug/BandObjectLib.pdb -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/bin/Debug/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/bin/Debug/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/bin/Release/BandObjectLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/bin/Release/BandObjectLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/bin/Release/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/bin/Release/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/BandObjectLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/BandObjectLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/BandObjectLib.dll.incr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/BandObjectLib.dll.incr -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/BandObjectLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/BandObjectLib.pdb -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/BandObjectLib.projdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/BandObjectLib.projdata -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.dll.incr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.dll.incr -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.pdb -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/ExplorerBarLib.tlb -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Debug/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Debug/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Release/BandObjectLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Release/BandObjectLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Release/BandObjectLib.projdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Release/BandObjectLib.projdata -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Release/ExplorerBarLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Release/ExplorerBarLib.dll -------------------------------------------------------------------------------- /BandObjects/BandObjectLib/obj/Release/Interop.SHDocVw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjectLib/obj/Release/Interop.SHDocVw.dll -------------------------------------------------------------------------------- /BandObjects/BandObjects.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/BandObjects.snk -------------------------------------------------------------------------------- /BandObjects/SampleBars/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/AssemblyInfo.cs -------------------------------------------------------------------------------- /BandObjects/SampleBars/BandObjects.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/BandObjects.snk -------------------------------------------------------------------------------- /BandObjects/SampleBars/HelloWorldBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/HelloWorldBar.cs -------------------------------------------------------------------------------- /BandObjects/SampleBars/HelloWorldBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/HelloWorldBar.resx -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Debug/Register.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100:true 2 | Debug|Win32|C:\Documents and Settings\Administrator\Desktop\L0005\SampleBars\| 3 | -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Debug/Register.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Debug/Register.log -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Register.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Register.vcproj -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Register.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Register.vcxproj -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Register.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Register.vcxproj.filters -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Register.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Register.vcxproj.user -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Release/Register.lastbuildstate: -------------------------------------------------------------------------------- 1 | #v4.0:v100 2 | Release|Win32|C:\Documents and Settings\Administrator\Desktop\SampleBars\| 3 | -------------------------------------------------------------------------------- /BandObjects/SampleBars/Register/Release/Register.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/Register/Release/Register.log -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.csproj -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.csproj.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.csproj.old -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.csproj.user -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.csproj.user.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.csproj.user.old -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.ncb -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.sdf -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.sln -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.sln.old -------------------------------------------------------------------------------- /BandObjects/SampleBars/SampleBars.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/SampleBars.suo -------------------------------------------------------------------------------- /BandObjects/SampleBars/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/UpgradeLog.XML -------------------------------------------------------------------------------- /BandObjects/SampleBars/_UpgradeReport_Files/UpgradeReport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/_UpgradeReport_Files/UpgradeReport.css -------------------------------------------------------------------------------- /BandObjects/SampleBars/_UpgradeReport_Files/UpgradeReport.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/_UpgradeReport_Files/UpgradeReport.xslt -------------------------------------------------------------------------------- /BandObjects/SampleBars/bin/Debug/SampleBars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/bin/Debug/SampleBars.dll -------------------------------------------------------------------------------- /BandObjects/SampleBars/bin/Debug/SampleBars.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/bin/Debug/SampleBars.pdb -------------------------------------------------------------------------------- /BandObjects/SampleBars/bin/Release/SampleBars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/bin/Release/SampleBars.dll -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/GenerateResource.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/GenerateResource.write.1.tlog -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/SampleBars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/SampleBars.dll -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/SampleBars.dll.incr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/SampleBars.dll.incr -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/SampleBars.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/SampleBars.pdb -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Debug/SampleBars.projdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Debug/SampleBars.projdata -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Release/GenerateResource.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Release/GenerateResource.read.1.tlog -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Release/SampleBars.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Release/SampleBars.dll -------------------------------------------------------------------------------- /BandObjects/SampleBars/obj/Release/SampleBars.projdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/BandObjects/SampleBars/obj/Release/SampleBars.projdata -------------------------------------------------------------------------------- /ChineseCharacter2Pinyin/CHSPinYinConv.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/ChineseCharacter2Pinyin/CHSPinYinConv.msi -------------------------------------------------------------------------------- /ChineseCharacter2Pinyin/ChineseCharacter2Pinyin.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/ChineseCharacter2Pinyin/ChineseCharacter2Pinyin.vi -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/After.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/After.png -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/Before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/Before.png -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/Close Text File Handle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/Close Text File Handle.vi -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/Example.vi -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/Open Text File Handle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/Open Text File Handle.vi -------------------------------------------------------------------------------- /Create Icon from VI Name/Example/Read and Write Text File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/Example/Read and Write Text File.vi -------------------------------------------------------------------------------- /Create Icon from VI Name/T0001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/T0001.zip -------------------------------------------------------------------------------- /Create Icon from VI Name/ToolsMenus/2009/Create Icon.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/ToolsMenus/2009/Create Icon.llb -------------------------------------------------------------------------------- /Create Icon from VI Name/ToolsMenus/Create Icon.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/ToolsMenus/Create Icon.llb -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/-.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/-.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/0.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/1.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/2.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/3.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/4.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/5.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/6.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/7.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/8.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/9.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/A.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/A.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/B.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/B.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/C.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/C.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/D.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/D.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/E.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/E.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/F.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/F.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/G.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/G.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/H.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/H.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/I.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/I.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/J.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/J.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/K.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/K.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/L.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/L.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/M.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/M.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/N.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/N.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/O.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/O.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/P.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/P.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/Q.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/Q.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/R.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/R.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/S.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/S.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/T.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/T.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/U.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/U.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/V.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/V.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/W.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/W.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/X.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/X.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/Y.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/Y.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/Z.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/Z.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/bmp/_.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/bmp/_.bmp -------------------------------------------------------------------------------- /Create Icon from VI Name/fonts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Create Icon from VI Name/fonts.vi -------------------------------------------------------------------------------- /Data File Processing/Auto Reziseable UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/Auto Reziseable UI.vi -------------------------------------------------------------------------------- /Data File Processing/Data File Processing UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/Data File Processing UI.vi -------------------------------------------------------------------------------- /Data File Processing/DataFileProcessing.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/DataFileProcessing.aliases -------------------------------------------------------------------------------- /Data File Processing/DataFileProcessing.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/DataFileProcessing.lvproj -------------------------------------------------------------------------------- /Data File Processing/sub VIs/Data File Processing UI Manager.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/Data File Processing UI Manager.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/Data File Processing UI.rtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/Data File Processing UI.rtm -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SelectPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SelectPath.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_CalculateRange.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_CalculateRange.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ChooseChannels.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ChooseChannels.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_InitialUI_ResetPanes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_InitialUI_ResetPanes.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_NewPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_NewPath.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ProcessData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ProcessData.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ProcessTitle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ProcessTitle.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ReadRow.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ReadRow.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ReadTitle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ReadTitle.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_ReadTxt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_ReadTxt.vi -------------------------------------------------------------------------------- /Data File Processing/sub VIs/SubVI_SaveAsTXT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Data File Processing/sub VIs/SubVI_SaveAsTXT.vi -------------------------------------------------------------------------------- /DeviceEnum/Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/Data.ctl -------------------------------------------------------------------------------- /DeviceEnum/DeviceEnum.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/DeviceEnum.aliases -------------------------------------------------------------------------------- /DeviceEnum/DeviceEnum.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/DeviceEnum.lvlps -------------------------------------------------------------------------------- /DeviceEnum/DeviceEnum.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/DeviceEnum.lvproj -------------------------------------------------------------------------------- /DeviceEnum/DeviceEnumXControl.xctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/DeviceEnumXControl.xctl -------------------------------------------------------------------------------- /DeviceEnum/Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/Facade.vi -------------------------------------------------------------------------------- /DeviceEnum/Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/Init.vi -------------------------------------------------------------------------------- /DeviceEnum/ListDevice.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/ListDevice.vi -------------------------------------------------------------------------------- /DeviceEnum/State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/State.ctl -------------------------------------------------------------------------------- /DeviceEnum/TestVI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/DeviceEnum/TestVI.vi -------------------------------------------------------------------------------- /Icons/Icons.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Icons.aliases -------------------------------------------------------------------------------- /Icons/Icons.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Icons.lvlps -------------------------------------------------------------------------------- /Icons/Icons.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Icons.lvproj -------------------------------------------------------------------------------- /Icons/Keypress Example Folder/WINUTIL.LLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Keypress Example Folder/WINUTIL.LLB -------------------------------------------------------------------------------- /Icons/Script/AddVIDocument.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/AddVIDocument.vi -------------------------------------------------------------------------------- /Icons/Script/ButtonScript.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/ButtonScript.vi -------------------------------------------------------------------------------- /Icons/Script/F10.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/F10.vi -------------------------------------------------------------------------------- /Icons/Script/OperateControlPosition.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/OperateControlPosition.vi -------------------------------------------------------------------------------- /Icons/Script/Script2d_16x16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/Script2d_16x16.vi -------------------------------------------------------------------------------- /Icons/Script/Script_16x16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/Script_16x16.vi -------------------------------------------------------------------------------- /Icons/Script/Script_32x32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/Script_32x32.vi -------------------------------------------------------------------------------- /Icons/Script/SetIcon.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/SetIcon.vi -------------------------------------------------------------------------------- /Icons/Script/导入图标.Q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Script/导入图标.Q -------------------------------------------------------------------------------- /Icons/Source/DisableSmartSortOrder.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Source/DisableSmartSortOrder.reg -------------------------------------------------------------------------------- /Icons/Source/EnableSmartSortOrder.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Source/EnableSmartSortOrder.reg -------------------------------------------------------------------------------- /Icons/Source/Icon_16x16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Source/Icon_16x16.vi -------------------------------------------------------------------------------- /Icons/Source/Icon_32x32.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Source/Icon_32x32.vi -------------------------------------------------------------------------------- /Icons/Source/keypress.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Source/keypress.zip -------------------------------------------------------------------------------- /Icons/Template/2DTemplate_22x22.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/2DTemplate_22x22.ctl -------------------------------------------------------------------------------- /Icons/Template/2D_16x16.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/2D_16x16.ctl -------------------------------------------------------------------------------- /Icons/Template/2D_22x22.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/2D_22x22.ctl -------------------------------------------------------------------------------- /Icons/Template/2d.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/2d.ctl -------------------------------------------------------------------------------- /Icons/Template/SystemTemplate_22x22.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/SystemTemplate_22x22.ctl -------------------------------------------------------------------------------- /Icons/Template/SystemTemplate_38x38.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/SystemTemplate_38x38.ctl -------------------------------------------------------------------------------- /Icons/Template/System_22x22.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/System_22x22.ctl -------------------------------------------------------------------------------- /Icons/Template/Template.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/Template.ctl -------------------------------------------------------------------------------- /Icons/Template/TemplateExample.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/TemplateExample.vi -------------------------------------------------------------------------------- /Icons/Template/Test2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/Test2.vi -------------------------------------------------------------------------------- /Icons/Template/Test3.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/Test3.vi -------------------------------------------------------------------------------- /Icons/Template/icon.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/Template/icon.ctl -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/3kButtons2D22x22.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/3kButtons2D22x22.vi -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/3kButtonsSys22x22.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/3kButtonsSys22x22.vi -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/3kButtonsSys36x36.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/3kButtonsSys36x36.vi -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/3kButtonsSys36x36_classify.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/3kButtonsSys36x36_classify.vi -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/Pansino16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/Pansino16.png -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/Pansino32.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/Pansino32.ctl -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/Pansino32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/Pansino32.png -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution16.png -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution32.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution32.ctl -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/PansinoSolution32.png -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/Pansino_22x22.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/Pansino_22x22.ctl -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/pic01479.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/pic01479.gif -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/Pansino/pic31604.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/Pansino/pic31604.gif -------------------------------------------------------------------------------- /Icons/fatcow-hosting-icons-3000/fatcow-hosting-icons-3000.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Icons/fatcow-hosting-icons-3000/fatcow-hosting-icons-3000.rar -------------------------------------------------------------------------------- /MDI interface example/AbortAndRunVI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/AbortAndRunVI.vi -------------------------------------------------------------------------------- /MDI interface example/FG states.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/FG states.ctl -------------------------------------------------------------------------------- /MDI interface example/FG_registeredwindows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/FG_registeredwindows.vi -------------------------------------------------------------------------------- /MDI interface example/Get Window Handle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/Get Window Handle.vi -------------------------------------------------------------------------------- /MDI interface example/MDI_global.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/MDI_global.vi -------------------------------------------------------------------------------- /MDI interface example/Set Parent Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/Set Parent Window.vi -------------------------------------------------------------------------------- /MDI interface example/VI Name for window Title.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/VI Name for window Title.vi -------------------------------------------------------------------------------- /MDI interface example/WINUTIL.LLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/WINUTIL.LLB -------------------------------------------------------------------------------- /MDI interface example/child window props.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/child window props.ctl -------------------------------------------------------------------------------- /MDI interface example/close_and_dereg_window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/close_and_dereg_window.vi -------------------------------------------------------------------------------- /MDI interface example/containerwindow.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/containerwindow.vi -------------------------------------------------------------------------------- /MDI interface example/main_MDI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/main_MDI.vi -------------------------------------------------------------------------------- /MDI interface example/main_MDIsystem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/main_MDIsystem.vi -------------------------------------------------------------------------------- /MDI interface example/mdi example.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/mdi example.aliases -------------------------------------------------------------------------------- /MDI interface example/mdi example.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/mdi example.lvlps -------------------------------------------------------------------------------- /MDI interface example/mdi example.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/mdi example.lvproj -------------------------------------------------------------------------------- /MDI interface example/testerofwindows.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/testerofwindows.vi -------------------------------------------------------------------------------- /MDI interface example/window1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MDI interface example/window1.vi -------------------------------------------------------------------------------- /MailWake/Catch POP Errors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Catch POP Errors.vi -------------------------------------------------------------------------------- /MailWake/Check for Mail.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Check for Mail.vi -------------------------------------------------------------------------------- /MailWake/Close POP session.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Close POP session.vi -------------------------------------------------------------------------------- /MailWake/Config.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Config.ctl -------------------------------------------------------------------------------- /MailWake/Get All Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Get All Messages.vi -------------------------------------------------------------------------------- /MailWake/Mail Browser.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Mail Browser.vi -------------------------------------------------------------------------------- /MailWake/MailWake.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/MailWake.aliases -------------------------------------------------------------------------------- /MailWake/MailWake.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/MailWake.lvlps -------------------------------------------------------------------------------- /MailWake/MailWake.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/MailWake.lvproj -------------------------------------------------------------------------------- /MailWake/MailWake.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/MailWake.vi -------------------------------------------------------------------------------- /MailWake/MailWake.viConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/MailWake.viConfig.xml -------------------------------------------------------------------------------- /MailWake/Open POP session.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Open POP session.vi -------------------------------------------------------------------------------- /MailWake/POP Read to DOT-CRLF.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/POP Read to DOT-CRLF.vi -------------------------------------------------------------------------------- /MailWake/POP send DELE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/POP send DELE.vi -------------------------------------------------------------------------------- /MailWake/POP send LIST.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/POP send LIST.vi -------------------------------------------------------------------------------- /MailWake/POP send QUIT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/POP send QUIT.vi -------------------------------------------------------------------------------- /MailWake/POP send RETR.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/POP send RETR.vi -------------------------------------------------------------------------------- /MailWake/Parse Mail Header Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Parse Mail Header Info.vi -------------------------------------------------------------------------------- /MailWake/Retrieve Message with Options.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/Retrieve Message with Options.vi -------------------------------------------------------------------------------- /MailWake/WakeOnLAN.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/WakeOnLAN.vi -------------------------------------------------------------------------------- /MailWake/XML_ControlConfig.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/MailWake/XML_ControlConfig.vi -------------------------------------------------------------------------------- /Modbus Command Explainer/Modbus Command Explainer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Modbus Command Explainer/Modbus Command Explainer.vi -------------------------------------------------------------------------------- /NetworkSpeed 文件夹/NetworkSpeed 文件夹/NetworkSpeed.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NetworkSpeed 文件夹/NetworkSpeed 文件夹/NetworkSpeed.vi -------------------------------------------------------------------------------- /NetworkSpeed 文件夹/NetworkSpeed.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NetworkSpeed 文件夹/NetworkSpeed.vi -------------------------------------------------------------------------------- /Notification/DetectOS.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/DetectOS.vi -------------------------------------------------------------------------------- /Notification/Get Window Handle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Get Window Handle.vi -------------------------------------------------------------------------------- /Notification/Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Main.vi -------------------------------------------------------------------------------- /Notification/Notification.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Notification.aliases -------------------------------------------------------------------------------- /Notification/Notification.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Notification.lvlps -------------------------------------------------------------------------------- /Notification/Notification.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Notification.lvproj -------------------------------------------------------------------------------- /Notification/Notification.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Notification.vi -------------------------------------------------------------------------------- /Notification/NotificationBar.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/NotificationBar.vi -------------------------------------------------------------------------------- /Notification/ResetPanes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/ResetPanes.vi -------------------------------------------------------------------------------- /Notification/Set Parent Window.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/Set Parent Window.vi -------------------------------------------------------------------------------- /Notification/VI Name for window Title.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notification/VI Name for window Title.vi -------------------------------------------------------------------------------- /NotifyIcon/Examples/NotifyIcon - Example 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/Examples/NotifyIcon - Example 2.vi -------------------------------------------------------------------------------- /NotifyIcon/Examples/NotifyIcon - Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/Examples/NotifyIcon - Example.vi -------------------------------------------------------------------------------- /NotifyIcon/Examples/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/Examples/dir.mnu -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Create.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Create.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Destroy.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Destroy.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Get MenuItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Get MenuItem.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Interpret Event Data.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Interpret Event Data.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Register LabVIEW User Events.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Register LabVIEW User Events.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Set ContextMenu.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Set ContextMenu.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Set Icon.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Set Icon.vi -------------------------------------------------------------------------------- /NotifyIcon/NotifyIcon - Show BalloonTip.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/NotifyIcon - Show BalloonTip.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - .NET EventCallback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - .NET EventCallback.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - Create ContextMenu.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - Create ContextMenu.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - Create Menu.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - Create Menu.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - Create SubMenuItem.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - Create SubMenuItem.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - Get All MenuItems.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - Get All MenuItems.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/NotifyIcon - Register .NET Events Callback.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/NotifyIcon - Register .NET Events Callback.vi -------------------------------------------------------------------------------- /NotifyIcon/SubVIs/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/SubVIs/dir.mnu -------------------------------------------------------------------------------- /NotifyIcon/TypeDefs/NotifyIcon .NET Callback Parameter.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/TypeDefs/NotifyIcon .NET Callback Parameter.ctl -------------------------------------------------------------------------------- /NotifyIcon/TypeDefs/NotifyIcon Event Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/TypeDefs/NotifyIcon Event Data.ctl -------------------------------------------------------------------------------- /NotifyIcon/TypeDefs/NotifyIcon Event Registration Actions.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/TypeDefs/NotifyIcon Event Registration Actions.ctl -------------------------------------------------------------------------------- /NotifyIcon/TypeDefs/NotifyIcon Events.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/TypeDefs/NotifyIcon Events.ctl -------------------------------------------------------------------------------- /NotifyIcon/TypeDefs/NotifyIcon User Event Ref.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/TypeDefs/NotifyIcon User Event Ref.ctl -------------------------------------------------------------------------------- /NotifyIcon/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/NotifyIcon/dir.mnu -------------------------------------------------------------------------------- /Notmyfault/exe/IOCTLCMD.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/IOCTLCMD.H -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.dep -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.dsp -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.dsw -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.suo -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.suo.old -------------------------------------------------------------------------------- /Notmyfault/exe/NotMyfault.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/NotMyfault.vcproj -------------------------------------------------------------------------------- /Notmyfault/exe/Release/NotMyfault.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/Release/NotMyfault.exe -------------------------------------------------------------------------------- /Notmyfault/exe/Release/myfault.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/Release/myfault.sys -------------------------------------------------------------------------------- /Notmyfault/exe/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/driver.c -------------------------------------------------------------------------------- /Notmyfault/exe/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/icon1.ico -------------------------------------------------------------------------------- /Notmyfault/exe/notmyfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/notmyfault.c -------------------------------------------------------------------------------- /Notmyfault/exe/notmyfault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/notmyfault.h -------------------------------------------------------------------------------- /Notmyfault/exe/notmyfault.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/notmyfault.rc -------------------------------------------------------------------------------- /Notmyfault/exe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/resource.h -------------------------------------------------------------------------------- /Notmyfault/exe/x64/Release/NotMyfault.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/x64/Release/NotMyfault.exe -------------------------------------------------------------------------------- /Notmyfault/exe/x64/Release/myfault.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/exe/x64/Release/myfault.sys -------------------------------------------------------------------------------- /Notmyfault/sys/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/sys/MAKEFILE -------------------------------------------------------------------------------- /Notmyfault/sys/SOURCES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/sys/SOURCES -------------------------------------------------------------------------------- /Notmyfault/sys/myfault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/sys/myfault.c -------------------------------------------------------------------------------- /Notmyfault/sys/myfault.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Notmyfault/sys/myfault.rc -------------------------------------------------------------------------------- /PhoneDatabase/mobile.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/PhoneDatabase/mobile.mdb -------------------------------------------------------------------------------- /PhoneDatabase/mobile.udl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/PhoneDatabase/mobile.udl -------------------------------------------------------------------------------- /PhoneDatabase/phone database.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/PhoneDatabase/phone database.vi -------------------------------------------------------------------------------- /Probe/Probe/Probe.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Probe/Probe/Probe.vi -------------------------------------------------------------------------------- /Probe/Probe/ProbeToolkit.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Probe/Probe/ProbeToolkit.lvproj -------------------------------------------------------------------------------- /Probe/Probe/_Probe.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Probe/Probe/_Probe.llb -------------------------------------------------------------------------------- /Probe/Probe/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Probe/Probe/dir.mnu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/README.md -------------------------------------------------------------------------------- /RealTimeSequence/Ctls/PC_DynCallVIOutputParameter.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Ctls/PC_DynCallVIOutputParameter.ctl -------------------------------------------------------------------------------- /RealTimeSequence/Ctls/PC_DynCallVIParameter.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Ctls/PC_DynCallVIParameter.ctl -------------------------------------------------------------------------------- /RealTimeSequence/Ctls/PC_Main_SequenceEditor_TempVariable.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Ctls/PC_Main_SequenceEditor_TempVariable.ctl -------------------------------------------------------------------------------- /RealTimeSequence/Ctls/StepData.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Ctls/StepData.ctl -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_CallRTFireAndForget.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_CallRTFireAndForget.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_CallRTGuidedMunitions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_CallRTGuidedMunitions.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_CallTestRT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_CallTestRT.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_DynamicCallRTVI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_DynamicCallRTVI.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_ParallelCaller.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_ParallelCaller.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_DynVIs/PC_ParallelThread.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_DynVIs/PC_ParallelThread.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_MainVIs/PC_Main_SequenceEditor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_MainVIs/PC_Main_SequenceEditor.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_SubVIs/PC_Main_SequenceEditor_AddNewStep.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_SubVIs/PC_Main_SequenceEditor_AddNewStep.vi -------------------------------------------------------------------------------- /RealTimeSequence/PC_SubVIs/PC_RealTimeHardwareDetection.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/PC_SubVIs/PC_RealTimeHardwareDetection.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/CloseAllDevices.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/CloseAllDevices.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/FreqSweepTest.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/FreqSweepTest.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/InitializeAllDevices.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/InitializeAllDevices.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/LED Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/LED Test.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/Limit Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/Limit Test.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/XML/Read Instr XML File.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/XML/Read Instr XML File.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/ASL Code/XML/Simulated Instruments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/ASL Code/XML/Simulated Instruments.xml -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP Modules/Close Instrument.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP Modules/Close Instrument.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP Modules/DSSP.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP Modules/DSSP.lvclass -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP Modules/Initialize Instrument.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP Modules/Initialize Instrument.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP_Classes.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP_Classes.aliases -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP_Classes.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP_Classes.lvlps -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/DSSP_Classes.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/DSSP_Classes.lvproj -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/HAL.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/HAL.aliases -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/HAL.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/HAL.lvlps -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/HAL.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/HAL.lvproj -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/HAL_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/HAL_README.txt -------------------------------------------------------------------------------- /RealTimeSequence/RT_HAL/Test Code/Main Test App.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_HAL/Test Code/Main Test App.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_MainVIs/RT_AMC_Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_MainVIs/RT_AMC_Main.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_MainVIs/RT_DataMonitor.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_MainVIs/RT_DataMonitor.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_SubVIs/Resample.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_SubVIs/Resample.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_Test/RT_Proof of Concept(Str).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_Test/RT_Proof of Concept(Str).vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_Test/RT_Proof of Concept.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_Test/RT_Proof of Concept.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_Test/RT_TestDalayWithReentrant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_Test/RT_TestDalayWithReentrant.vi -------------------------------------------------------------------------------- /RealTimeSequence/RT_Test/RT_TestDalayWithoutReentrant.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RT_Test/RT_TestDalayWithoutReentrant.vi -------------------------------------------------------------------------------- /RealTimeSequence/RealTime.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RealTime.aliases -------------------------------------------------------------------------------- /RealTimeSequence/RealTime.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RealTime.lvlps -------------------------------------------------------------------------------- /RealTimeSequence/RealTime.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/RealTime.lvproj -------------------------------------------------------------------------------- /RealTimeSequence/Test/Display VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Test/Display VI.vi -------------------------------------------------------------------------------- /RealTimeSequence/Test/Generator VI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Test/Generator VI.vi -------------------------------------------------------------------------------- /RealTimeSequence/Test/display.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Test/display.vi -------------------------------------------------------------------------------- /RealTimeSequence/Test/writer1.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Test/writer1.vi -------------------------------------------------------------------------------- /RealTimeSequence/Test/writer2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/RealTimeSequence/Test/writer2.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/API/API函数教程.hml.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/API函数教程.hml.chm -------------------------------------------------------------------------------- /SaveWebPage/Key/API/API函数教程.hml.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/API函数教程.hml.chw -------------------------------------------------------------------------------- /SaveWebPage/Key/API/API函数调用(GetDiskFreeSpace).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/API函数调用(GetDiskFreeSpace).vi -------------------------------------------------------------------------------- /SaveWebPage/Key/API/API库函数.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/API库函数.docx -------------------------------------------------------------------------------- /SaveWebPage/Key/API/GetLastError返回值的含义.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/GetLastError返回值的含义.docx -------------------------------------------------------------------------------- /SaveWebPage/Key/API/LabVIEW中如何调用Windows API.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/LabVIEW中如何调用Windows API.doc -------------------------------------------------------------------------------- /SaveWebPage/Key/API/WinAPI函数库.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/WinAPI函数库.doc -------------------------------------------------------------------------------- /SaveWebPage/Key/API/user32函数库.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/user32函数库.txt -------------------------------------------------------------------------------- /SaveWebPage/Key/API/半透明窗体.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/半透明窗体.doc -------------------------------------------------------------------------------- /SaveWebPage/Key/API/新编WIN32API大全.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/新编WIN32API大全.CHM -------------------------------------------------------------------------------- /SaveWebPage/Key/API/新编WIN32API大全.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/API/新编WIN32API大全.chw -------------------------------------------------------------------------------- /SaveWebPage/Key/Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/Example.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/KeyDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/KeyDown.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/KeyPress.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/KeyPress.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/KeyUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/KeyUp.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/TypeCharacters.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/TypeCharacters.vi -------------------------------------------------------------------------------- /SaveWebPage/Key/移动鼠标并单击.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/Key/移动鼠标并单击.vi -------------------------------------------------------------------------------- /SaveWebPage/NI Lookout开发.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/NI Lookout开发.docx -------------------------------------------------------------------------------- /SaveWebPage/NIProducts.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/NIProducts.vi -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPage.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPage.ahk -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPage.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPage.ini -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/SaveWebPagePy.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/SaveWebPagePy.iml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/dictionaries/lhb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/dictionaries/lhb.xml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/misc.xml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/modules.xml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/vcs.xml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/.idea/workspace.xml -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/GetWebPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/GetWebPage.py -------------------------------------------------------------------------------- /SaveWebPage/SaveWebPagePy/url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/SaveWebPagePy/url.txt -------------------------------------------------------------------------------- /SaveWebPage/url.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/SaveWebPage/url.txt -------------------------------------------------------------------------------- /Simulation/Real-time/Global 2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Simulation/Real-time/Global 2.vi -------------------------------------------------------------------------------- /Simulation/Real-time/SimEx Writing Model Parameters to RT.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Simulation/Real-time/SimEx Writing Model Parameters to RT.lvlps -------------------------------------------------------------------------------- /Simulation/Real-time/SimEx Writing Model Parameters to RT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Simulation/Real-time/SimEx Writing Model Parameters to RT.vi -------------------------------------------------------------------------------- /Simulation/Real-time/Varible.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Simulation/Real-time/Varible.lvlib -------------------------------------------------------------------------------- /Slider Demo/Controls/Signal Controls.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Controls/Signal Controls.ctl -------------------------------------------------------------------------------- /Slider Demo/Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Main.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Action Queue Consumer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Action Queue Consumer.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Action Queue Consumer2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Action Queue Consumer2.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Left - Close Tray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Left - Close Tray.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Left - Open Tray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Left - Open Tray.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Register Control.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Register Control.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Slide.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Slide.vi -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/SlideActions.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/SlideActions.ctl -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/SlideEngine.lvclass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/SlideEngine.lvclass -------------------------------------------------------------------------------- /Slider Demo/SlideEngine/Unregister All Controls.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/SlideEngine/Unregister All Controls.vi -------------------------------------------------------------------------------- /Slider Demo/Slider Demo.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Slider Demo.aliases -------------------------------------------------------------------------------- /Slider Demo/Slider Demo.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Slider Demo.lvlps -------------------------------------------------------------------------------- /Slider Demo/Slider Demo.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Slider Demo.lvproj -------------------------------------------------------------------------------- /Slider Demo/Utility VIs/Get Tab Ctrl Number.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Slider Demo/Utility VIs/Get Tab Ctrl Number.vi -------------------------------------------------------------------------------- /Swap A and B/Swap A and B.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Swap A and B/Swap A and B.vi -------------------------------------------------------------------------------- /Swap A and B/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Swap A and B/dir.mnu -------------------------------------------------------------------------------- /TDMS File Processing/Auto Reziseable UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Auto Reziseable UI.vi -------------------------------------------------------------------------------- /TDMS File Processing/Control 2.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Control 2.ctl -------------------------------------------------------------------------------- /TDMS File Processing/Control 3.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Control 3.ctl -------------------------------------------------------------------------------- /TDMS File Processing/Data File Processing UI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Data File Processing UI.vi -------------------------------------------------------------------------------- /TDMS File Processing/DataFileProcessing.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/DataFileProcessing.aliases -------------------------------------------------------------------------------- /TDMS File Processing/DataFileProcessing.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/DataFileProcessing.lvlps -------------------------------------------------------------------------------- /TDMS File Processing/DataFileProcessing.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/DataFileProcessing.lvproj -------------------------------------------------------------------------------- /TDMS File Processing/Shared/TDM_File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Shared/TDM_File.png -------------------------------------------------------------------------------- /TDMS File Processing/Shared/TDMs_Group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Shared/TDMs_Group.png -------------------------------------------------------------------------------- /TDMS File Processing/Shared/TDMs_channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/Shared/TDMs_channel.png -------------------------------------------------------------------------------- /TDMS File Processing/TDMs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/TDMs.ico -------------------------------------------------------------------------------- /TDMS File Processing/data.tdms_index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/data.tdms_index -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Channel Info__DV.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Channel Info__DV.ctl -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Compute Btn.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Compute Btn.ctl -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Compute Dialog Prompt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Compute Dialog Prompt.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/CursorGet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/CursorGet.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/CursorMove.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/CursorMove.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/CursorMoveSet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/CursorMoveSet.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/CursorSet.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/CursorSet.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Data Contents Refresh__DV.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Data Contents Refresh__DV.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Data File Processing UI Manager.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Data File Processing UI Manager.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Data File Processing UI.rtm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Data File Processing UI.rtm -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/File Save Result.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/File Save Result.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/FullFile.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/FullFile.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Get TDMs Contents.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Get TDMs Contents.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Graph Blowup__DV.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Graph Blowup__DV.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Graph Tools.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Graph Tools.ctl -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SelectPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SelectPath.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Set DataList Tree Property.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Set DataList Tree Property.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_CalculateRange.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_CalculateRange.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ChooseChannels.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ChooseChannels.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_InitialUI_ResetPanes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_InitialUI_ResetPanes.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_NewPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_NewPath.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ProcessData.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ProcessData.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ProcessTitle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ProcessTitle.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadRow.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadRow.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadTDMs Header.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadTDMs Header.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadTDMs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadTDMs.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadTDMsAll.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadTDMsAll.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadTitle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadTitle.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_ReadTxt.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_ReadTxt.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/SubVI_SaveAsTXT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/SubVI_SaveAsTXT.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/TDMs Group&Channel Name.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/TDMs Group&Channel Name.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/TDMs Ref.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/TDMs Ref.vi -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/Waveform Info__DV.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/Waveform Info__DV.ctl -------------------------------------------------------------------------------- /TDMS File Processing/sub VIs/getChannelList Modify.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TDMS File Processing/sub VIs/getChannelList Modify.vi -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiVi488.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiVi488.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViAsrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViAsrl.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViEnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViEnet.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViEnetAsrl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViEnetAsrl.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViPxi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViPxi.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViRio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViRio.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViRpc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViRpc.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiViUsb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiViUsb.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/NiVisaTulip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/NiVisaTulip.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/niSync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/niSync.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/pipx40_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/pipx40_32.dll -------------------------------------------------------------------------------- /TestStand with RT/Bin/pipx40_32.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Bin/pipx40_32.tlb -------------------------------------------------------------------------------- /TestStand with RT/Hosts_DynamicVIs/DynamicCall.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Hosts_DynamicVIs/DynamicCall.vi -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/LabVIEW RT ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/LabVIEW RT ReadMe.txt -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40a.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40a.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40b.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40b.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40c.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40c.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40d.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40d.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40e.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40e.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40f.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40f.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40g.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40g.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40h.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40h.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40i.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40i.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40j.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40j.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40k.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40k.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40l.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40l.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40m.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40m.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40n.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40n.inf -------------------------------------------------------------------------------- /TestStand with RT/LabVIEW RT/Pipx40o.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/LabVIEW RT/Pipx40o.inf -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/40-295-121-10_16.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/40-295-121-10_16.vi -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pickering.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pickering.aliases -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pickering.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pickering.lvlps -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pickering.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pickering.lvproj -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pipx40/Examples.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pipx40/Examples.mnu -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pipx40/Pipx40.llb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pipx40/Pipx40.llb -------------------------------------------------------------------------------- /TestStand with RT/Pickring 40-295-121-10_16/Pipx40/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Pickring 40-295-121-10_16/Pipx40/dir.mnu -------------------------------------------------------------------------------- /TestStand with RT/Sequence File 1.seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/Sequence File 1.seq -------------------------------------------------------------------------------- /TestStand with RT/test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TestStand with RT/test.vi -------------------------------------------------------------------------------- /TrayIcon/LabVIEWTrayIcon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TrayIcon/LabVIEWTrayIcon.zip -------------------------------------------------------------------------------- /TrayIcon/NotifyIcon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TrayIcon/NotifyIcon.zip -------------------------------------------------------------------------------- /TrayIcon/createnotifyicon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/TrayIcon/createnotifyicon.zip -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/CommandLine.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/CommandLine.aliases -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/CommandLine.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/CommandLine.lvproj -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/CommandLine.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/CommandLine.vi -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/VI Server Project.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/VI Server Project.vi -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/VI Server Test.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/VI Server Test.vi -------------------------------------------------------------------------------- /VI Version Loader/CommandLine Folder/VI Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/CommandLine Folder/VI Server.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/2009.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/2009.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/2010.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/2010.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/8.0.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/8.0.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/8.2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/8.2.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/8.5.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/8.5.vi -------------------------------------------------------------------------------- /VI Version Loader/VERSION INFO/8.6.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/VI Version Loader/VERSION INFO/8.6.vi -------------------------------------------------------------------------------- /VI Version Loader/VI Loader.txt: -------------------------------------------------------------------------------- 1 | when labview.exe run cmd do not work right. -------------------------------------------------------------------------------- /Wake On Lan/WakeOnLAN-2.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Wake On Lan/WakeOnLAN-2.vi -------------------------------------------------------------------------------- /Wake On Lan/WakeOnLan.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Wake On Lan/WakeOnLan.vi -------------------------------------------------------------------------------- /Wake On Lan/wake_up_on_lan.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/Wake On Lan/wake_up_on_lan.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/ConvertString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/ConvertString.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/GetXMLNodeString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/GetXMLNodeString.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/Pansino_XML_Read.lvlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/Pansino_XML_Read.lvlib -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/_SubVIs/Convert_StringToU8.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/_SubVIs/Convert_StringToU8.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/_SubVIs/GetSimpleArray.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/_SubVIs/GetSimpleArray.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/_SubVIs/Get_AttributeValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/_SubVIs/Get_AttributeValue.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/_SubVIs/Get_NodeValue.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/_SubVIs/Get_NodeValue.vi -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkit/dir.mnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkit/dir.mnu -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkits.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkits.aliases -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkits.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkits.lvlps -------------------------------------------------------------------------------- /XML Read Toolkit/XML Read Toolkits.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML Read Toolkit/XML Read Toolkits.lvproj -------------------------------------------------------------------------------- /XML_ControlConfig/XML_ControlConfig.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/XML_ControlConfig/XML_ControlConfig.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Controls/Handle Images - Operations.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Controls/Handle Images - Operations.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Controls/ImageType.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Controls/ImageType.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Controls/Init-Run-End States.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Controls/Init-Run-End States.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Controls/Pics/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Controls/Pics/Stop.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Demo Script - Coolest cDAQ Demo Ever.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Demo Script - Coolest cDAQ Demo Ever.docx -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Documents/module_descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Documents/module_descriptions.txt -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/ConfigDelayScreen.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/ConfigDelayScreen.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/ConfigUI.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/ConfigUI.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/ErrorScreen.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/ErrorScreen.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/HW_Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/HW_Server.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9171.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9172.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9174.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/Images/NI 9178.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9211.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9211.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9215.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9215.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9219.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9219.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9234.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/MeasUIs/Measure - NI 9234.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/NotConfiguredScreen.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/NotConfiguredScreen.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/Sequencer.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/Sequencer.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Dynamic Loading/StopScreen.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Dynamic Loading/StopScreen.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/DEFAULT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/DEFAULT.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9201.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9207.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9211.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9215.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9219.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9222.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9234.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9263.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9411.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9411.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9472.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9472.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI 9481.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI 9481.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/Pics/NI UNSUPPORTED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/Pics/NI UNSUPPORTED.png -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Chassis Type Memory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Chassis Type Memory.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Check Chassis Status.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Check Chassis Status.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Clear Specific Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Clear Specific Error.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/CloseAllVIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/CloseAllVIs.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Config UI - Global Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Config UI - Global Stop.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/4ch.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/4ch.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/4ch_ao.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/4ch_ao.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/HW Server Status.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/HW Server Status.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/INIT- READ - WRITE.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/INIT- READ - WRITE.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/Init-Write-Read.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/Init-Write-Read.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/ModuleCluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/ModuleCluster.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/ModulePicCluster.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/ModulePicCluster.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Controls/Read - Write.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Controls/Read - Write.ctl -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/ConvertRunModesBack.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/ConvertRunModesBack.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/CreatemodulePicString.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/CreatemodulePicString.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Delete Unused Pictures.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Delete Unused Pictures.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Error - StoreError.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Error - StoreError.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Get Chassis and modules list.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Get Chassis and modules list.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Get Window Handle.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Get Window Handle.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetButtonNumber.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetButtonNumber.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetCurrentPath.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetCurrentPath.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetHWInfo.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetHWInfo.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetModuleDescriptions.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetModuleDescriptions.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetModulePic.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetModulePic.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetRunModes.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetRunModes.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/GetSlotNr.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/GetSlotNr.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Global Stop.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Global Stop.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HW_Server.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HW_Server.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HW_Server_memory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HW_Server_memory.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Handle UI Objects.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Handle UI Objects.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HandleDigitalInputModuleNames.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HandleDigitalInputModuleNames.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HandleInputModuleNames.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HandleInputModuleNames.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HandleModuleNames.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HandleModuleNames.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/HideShowFrontPanel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/HideShowFrontPanel.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Images - Delete all png images.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Images - Delete all png images.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/LaunchConfigVIs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/LaunchConfigVIs.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/LaunchTestPanel.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/LaunchTestPanel.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/LaunchVI_BG.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/LaunchVI_BG.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Meas - Filter Meas VI names.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Meas - Filter Meas VI names.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Meas - Meas VI names memory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Meas - Meas VI names memory.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Meas - Send Meas VI Names.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Meas - Send Meas VI Names.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/ModuleConfigurationMemory.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/ModuleConfigurationMemory.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Queue - Engine - Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Queue - Engine - Main.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/ReconnectMessage.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/ReconnectMessage.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Remove Unconfigured DAQmx Devices.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Remove Unconfigured DAQmx Devices.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Run VI Transparently.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Run VI Transparently.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Save Images Tool.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Save Images Tool.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/SelectChassis.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/SelectChassis.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Sequencer - Create Sequence.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Sequencer - Create Sequence.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Set Window Color to Transparent.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Set Window Color to Transparent.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/SortRefs.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/SortRefs.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/Testing.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/Testing.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/TransparencyEffect.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/TransparencyEffect.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/WaveformBufferGeneration_(multi).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/WaveformBufferGeneration_(multi).vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/cDAQ - Launch Configuration SW.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/cDAQ - Launch Configuration SW.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/cDAQ UI - Handle Config Launch.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/cDAQ UI - Handle Config Launch.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/cDAQ UI - Handle Images.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/cDAQ UI - Handle Images.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/SubVIs/cRIO Finder.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/SubVIs/cRIO Finder.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/cDAQ - UI - Main.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/cDAQ - UI - Main.vi -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/demo.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/demo.aliases -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/demo.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/demo.lvlps -------------------------------------------------------------------------------- /cDAQ UI Demo v1.2/demo.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cDAQ UI Demo v1.2/demo.lvproj -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/ATM_Practice.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/ATM_Practice.aliases -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/ATM_Practice.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/ATM_Practice.lvlps -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/ATM_Practice.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/ATM_Practice.lvproj -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/KeyPad_Clear.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/KeyPad_Clear.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/Keypad.xctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/Keypad.xctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/Keypad_Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/Keypad_Data.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/Keypad_Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/Keypad_Facade.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/Keypad_Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/Keypad_Init.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Controls/Keypad_State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Controls/Keypad_State.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/FGV/FGV_Error Handler.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/FGV/FGV_Error Handler.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/FGV/FGV_Message Manager.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/FGV/FGV_Message Manager.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/Simulation Interface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/Simulation Interface.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/0_Practice/SubVI/ATM Controller.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/0_Practice/SubVI/ATM Controller.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.aliases -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.lvlps -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.lvproj -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.rqtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.rqtf -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.rqtfimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.rqtfimage -------------------------------------------------------------------------------- /cla_sample_atm_solution/ATM.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/ATM.types -------------------------------------------------------------------------------- /cla_sample_atm_solution/Errors/CLA-errors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Errors/CLA-errors.txt -------------------------------------------------------------------------------- /cla_sample_atm_solution/From Hx.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/From Hx.rar -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad Clear.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad Clear.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad Data.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad Data.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad Facade.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad Facade.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad Init.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad Init.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad State.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/Keypad/Keypad.xctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Keypad/Keypad.xctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/MainFrameWork.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/MainFrameWork.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Project Planning Documentq.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Project Planning Documentq.doc -------------------------------------------------------------------------------- /cla_sample_atm_solution/Requirements.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Requirements.xlsx -------------------------------------------------------------------------------- /cla_sample_atm_solution/Simulation Interface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Simulation Interface.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/ATM Menu Handler.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/ATM Menu Handler.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/ATM Message Handler.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/ATM Message Handler.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/Handle Error.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/Handle Error.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/State Processing Logic.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/State Processing Logic.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/User Console Interface.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/User Console Interface.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/Withdrawal.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/Withdrawal.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/SubVIs/Write Error Log Entry.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/SubVIs/Write Error Log Entry.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Top-level Modules/ATM Controller.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Top-level Modules/ATM Controller.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/Top-level Modules/Account Database.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/Top-level Modules/Account Database.vi -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/ATM Controller State.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/ATM Controller State.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/CTRL to UI Command.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/CTRL to UI Command.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/CTRL to UI Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/CTRL to UI Message.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/Error Classification.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/Error Classification.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/Error Handler Commands.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/Error Handler Commands.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/Record.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/Record.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/UI Items.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/UI Items.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/UI to CTRL Command.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/UI to CTRL Command.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/UI to CTRL Message.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/UI to CTRL Message.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/TypeDefs/User Console Commands.ctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/TypeDefs/User Console Commands.ctl -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_exam_prep_guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_exam_prep_guide.pdf -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_exam_prep_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_exam_prep_guide.txt -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_exam_topics.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_exam_topics.pdf -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_sample_exam_atm_machine.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_sample_exam_atm_machine.docx -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_sample_exam_atm_machine.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_sample_exam_atm_machine.pdf -------------------------------------------------------------------------------- /cla_sample_atm_solution/cla_sample_exam_atm_machine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/cla_sample_exam_atm_machine.txt -------------------------------------------------------------------------------- /cla_sample_atm_solution/errlog.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cla_sample_atm_solution/intermediate/Data/ATM_Cover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/cla_sample_atm_solution/intermediate/Data/ATM_Cover.xml -------------------------------------------------------------------------------- /mailpop70/Catch POP Errors.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Catch POP Errors.vi -------------------------------------------------------------------------------- /mailpop70/Check for Mail.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Check for Mail.vi -------------------------------------------------------------------------------- /mailpop70/Close POP session.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Close POP session.vi -------------------------------------------------------------------------------- /mailpop70/Get All Messages.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Get All Messages.vi -------------------------------------------------------------------------------- /mailpop70/Mail Browser.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Mail Browser.vi -------------------------------------------------------------------------------- /mailpop70/MailWake.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/MailWake.aliases -------------------------------------------------------------------------------- /mailpop70/MailWake.lvlps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/MailWake.lvlps -------------------------------------------------------------------------------- /mailpop70/MailWake.lvproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/MailWake.lvproj -------------------------------------------------------------------------------- /mailpop70/MailWake.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/MailWake.vi -------------------------------------------------------------------------------- /mailpop70/Open POP session.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Open POP session.vi -------------------------------------------------------------------------------- /mailpop70/POP Read to DOT-CRLF.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/POP Read to DOT-CRLF.vi -------------------------------------------------------------------------------- /mailpop70/POP send DELE.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/POP send DELE.vi -------------------------------------------------------------------------------- /mailpop70/POP send LIST.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/POP send LIST.vi -------------------------------------------------------------------------------- /mailpop70/POP send QUIT.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/POP send QUIT.vi -------------------------------------------------------------------------------- /mailpop70/POP send RETR.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/POP send RETR.vi -------------------------------------------------------------------------------- /mailpop70/Parse Mail Header Info.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Parse Mail Header Info.vi -------------------------------------------------------------------------------- /mailpop70/Retrieve Message with Options.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/Retrieve Message with Options.vi -------------------------------------------------------------------------------- /mailpop70/WakeOnLAN.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/mailpop70/WakeOnLAN.vi -------------------------------------------------------------------------------- /键盘效果/API/API函数教程.hml.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/API函数教程.hml.chm -------------------------------------------------------------------------------- /键盘效果/API/API函数教程.hml.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/API函数教程.hml.chw -------------------------------------------------------------------------------- /键盘效果/API/API函数调用(GetDiskFreeSpace).vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/API函数调用(GetDiskFreeSpace).vi -------------------------------------------------------------------------------- /键盘效果/API/API库函数.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/API库函数.docx -------------------------------------------------------------------------------- /键盘效果/API/GetLastError返回值的含义.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/GetLastError返回值的含义.docx -------------------------------------------------------------------------------- /键盘效果/API/LabVIEW中如何调用Windows API.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/LabVIEW中如何调用Windows API.doc -------------------------------------------------------------------------------- /键盘效果/API/WinAPI函数库.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/WinAPI函数库.doc -------------------------------------------------------------------------------- /键盘效果/API/user32函数库.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/user32函数库.txt -------------------------------------------------------------------------------- /键盘效果/API/半透明窗体.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/半透明窗体.doc -------------------------------------------------------------------------------- /键盘效果/API/新编WIN32API大全.CHM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/新编WIN32API大全.CHM -------------------------------------------------------------------------------- /键盘效果/API/新编WIN32API大全.chw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/API/新编WIN32API大全.chw -------------------------------------------------------------------------------- /键盘效果/Example.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/Example.vi -------------------------------------------------------------------------------- /键盘效果/KeyDown.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/KeyDown.vi -------------------------------------------------------------------------------- /键盘效果/KeyPress.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/KeyPress.vi -------------------------------------------------------------------------------- /键盘效果/KeyUp.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/KeyUp.vi -------------------------------------------------------------------------------- /键盘效果/TypeCharacters.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/TypeCharacters.vi -------------------------------------------------------------------------------- /键盘效果/移动鼠标并单击.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhb5883/LabVIEW/HEAD/键盘效果/移动鼠标并单击.vi --------------------------------------------------------------------------------