Posts

Showing posts with the label Applications

Start Click Once Application on Windows startup

There are few ways to configure application to run on Windows startup, register application in Windows registry is one of the common used method using this key: HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run   In CodeArtEng.Extensions library version 1.5.0, ApplicationExtensions is introduced to register / unregister running application in Windows Registry. ApplicationExtensions.AddApplicationToStartup() ApplicationExtensions.RemoveApplicationFromStartup() These methods is useful to enable / remove click one application from Windows startup since installation path for click-once application is dynamic. When click once application is updated to newer version, it execution path also changed. The registry key's value need to be updated in order for the auto startup to works again. With CodeArtEng.Extensions package, simply call method ApplicationExtensions.CheckAndUpdateApplicationStartupPath() to update the registry key if application had been registered to run...

Keyboard Master

Image
Opearting System : Windows Only. Keyboard Master is a simple application launcher designed to work with keypad. Unlike most of the application launcher which use combination keys to activate, Keyboard Master can be either activated using combination keys or key sequence. Besides application launching, this launcher equipped with capability to restart and shut down Windows. GitHub Project: KeyboardMaster Image 1: Main Window Image 2: Configuration Panel

C# DSP Simulation - DSP Lab

Image
Introduction DSP Lab  is a digital signal processing simulation application created to simulate and visualize process of sampling and filtering analog signal using DSP system. This application is created to provide as a tool for educator and student to have a better understanding how DSP system works. DSP Lab allow you to view and listen to output from (Data Acquisition Unit) DAQ and digital filters. DSP Toolbox is the core of DSP Lab application which is a .NET assembly written in C#. The library is released under MIT license. You can use this library to jump start your own DSP powered application. DSP System DSP Lab is built using the system as shown above. Settings for each components are configurable. In PREMIUM  version, a 3 channels mixer system is available for more fun and signal combinations.