Some useful Windows Variables
Some useful variables like %PROGRAMFILES% or %USERPROFILE%, which I often forgot.
Some useful variables like %PROGRAMFILES% or %USERPROFILE%, which I often forgot.
Two ways, how to check if a binary is 32 or 64 bit on Windows. One is “official”, using dumbpin and another one is “funny” using … Notepad.
Every LabVIEW’s control part contains a “part ID” field which determines its purpose and functionality in the control. For example, a digital numeric control contains two BigMultiCosmetic parts for the increment and decrement buttons; the part ID is what determines which one is which. The Parts Window in the control editor displays the part ID as the textual name for the part, though the actual number is only visible in Heap Peek.
It’s simple to explain what it does, but people often misunderstand whats behind of Wait (ms) Function and how this Function works. Most common misunderstanding is accuracy, often expected that the loop with with 1 ms Delay will operate at 1 kHz rate, but it does not.
While playing around with the Signal Processing Toolkit, I found in NI’s sources a funny method to detect which decimal separator is used in the operating system — simply perform a conversion of the string “1,23” to a double and compare it to the double constant “1.23”.
When I hold Left Alt + Tab, I am still able to select my desired window by tabbing, however when I release Alt, nothing happens. It still stuck at the small window selecting thing, I have to manually click on or hit ENTER to switch to the desired window instead of just releasing key. Looks like left Alt acts as right Alt. And the Solution is to add DWORD Value AltTabSettings and set it to 1 to the Registry:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
Two command lines which I often forgot and googling again and again. If you have dynamic link library, but haven’t according *.lib file, then use
dumpbin /EXPORTS yourfile.dll > yourfile.exports
lib /def:yourfile.def /out:yourfile.lib
Technical validation of the DICONDE Files is important compliance step to be sure that the PACS System is compliant to DICONDE Standard. Below the instruction how to validate DICONDE Files.
The AIPD image format is an internal, proprietary National Instruments format. It can normally be opened in NI software like Vision Assistant, but it can also be opened in ImageJ.
There are some “hidden” INI keys available in LabVIEW, which I often forgot
Step by step guide - how to build open62541 from sources as Dynamic Link Library.
How to setup simple B&R OPC UA Server from the scratch.
Microsoft .NET and .NET Core Releases:
Version | Start Date | End Date |
---|---|---|
.NET 9.0 | Nov 12, 2024 | |
.NET 8.0 (LTS) | Nov 14, 2023 | Nov 10, 2026 |
.NET 7.0 | Nov 8, 2022 | May 14, 2024 |
.NET 6.0 (LTS) | Nov 8, 2021 | Nov 12, 2024 |
.NET 5.0 | Nov 10, 2020 | May 10, 2022 |
.NET Core 3.0—3.1 (LTS) | Sep 23, 2019 | Dec 13, 2022 |
.NET Core 2.0—2.1 (LTS) | Aug 14, 2017 | Aug 21, 2021 |
.NET Core 1.0—1.1 | Jun 27, 2016 | Jun 27, 2019 |
Small useful (for me) NP Snippet