Epson ESC commands

Useful commands for controlling Epson POS printers. Use ASCII values. a. Cause a cutter activation TM-T88V 27 + 105 ESC + i b. Cause a drawer kick command TM-U375 27 …

C# convert string to enum

12345678910   enum Colour    {       Red,       Green,       Blue    }    // …    Colour c = (Colour) Enum.Parse(typeof(Colour), "Red", true); …

Howto Install BGInfo

1). Create c:\BGInfo\ 2). Download exe, run exe, create your configuration, save bgi file as C:\BGInfo\bginfo.bgi 3). Click Start, Programs, right-click “Start Up” and choose “Explore all users” 4). Create …

Rebuild INVALID Oracle Objects

1234567891011SELECT ( case when object_type = ‘VIEW’ THEN ‘ALTER VIEW ‘ || object_name || ‘ COMPILE;’ when object_type = ‘PROCEDURE’ THEN ‘ALTER PROCEDURE ‘ || object_name || ‘ COMPILE;’ when …

Bind to LDAP using System.DirectoryServices

Main: 123456789101112131415161718192021222324252627282930313233343536373839404142try {     // TODO: Add code here to start your service.     WriteToFile("Auth Test started at " + System.DateTime.Now.ToString("yyyy-MM-dd hh:MM:ss"));     WriteToFile("====================================");     #region …

Install Windows Service Manually Command Line

Create your windows service EXE: Install the service into the control panel of Windows: 1C:\> sc create [service name] binpath= "c:\program files(x86)\path\to\exe\file.exe" To remove the service from the control panel …