martes, 18 de octubre de 2016

Tabla de KeyCodes javascript útil para para eventos javascript como keydown..


100%style="font-size: 26px; margin: 15px 0px 10px;"> Key Code Table
The "Key Down" event is supported from ForeUI V2.10, also we can check the "Current_Key_Code" system property to know which key is currently pressed. The key code table below is very useful when you want to test key code value in condition expression.
01020Caps Lock3040Arrow Down
111213141
212223242
313Enter2333Page Up43
4142434Page Down44
5152535End45Insert
616Shift2636Home46Delete
717Ctrl27Esc37Arrow Left47
8Backspace18Alt2838Arrow Up480
9Tab19Pause/Break2939Arrow Right491
5026070f80p90z
51361=+71g81q91Windows
5246272h82r92
5356373i83s93Right Click
5466474j84t94
55765a75k85u95
56866b76l86v960 (Num Lock)
57967c77m87w971 (Num Lock)
5868d78n88x982 (Num Lock)
59;:69e79o89y993 (Num Lock)
1004 (Num Lock)110. (Num Lock)120F9130140
1015 (Num Lock)111/ (Num Lock)121F10131141
1026 (Num Lock)112F1122F11132142
1037 (Num Lock)113F2123F12133143
1048 (Num Lock)114F3124134144Num Lock
1059 (Num Lock)115F4125135145Scroll Lock
106* (Num Lock)116F5126136146
107+ (Num Lock)117F6127137147
108118F7128138148
109- (Num Lock)119F8129139149
150160170180190.>
151161171181191/?
152162172182My Computer192`~
153163173183My Calculator193
154164174184194
155165175185195
156166176186196
157167177187197
158168178188,<198
159169179189199
200210220\|230240
201211221]}231241
202212222'"232242
203213223233243
204214224234244
205215225235245
206216226236246
207217227227227
208218228238248
209219[{229239249

Fuente: http://www.foreui.com/articles/Key_Code_Table.htm

Identificar la codificación de un código de barras

Gracias a la página: http://barcode.tec-it.com/es podemos introducir el dato que queremos visualizar y generar online un código de demostración de diferentes tipos para comprar con nuestro código a identificar.

¡Prueba y error y a comparar!

viernes, 14 de octubre de 2016

Solución al Error 1001 registrando un servicio de windows con installShield LE y visual studio 2013

Después de horas de pelea instentando instalar un servicio de windows con el installShield LE (limited edition) y visual studio 2013 siempre obtenía "error 1001" durante el intento de registro del servicio en el sistema. He pasado horas buscando por foros, web oficial.... y al final el error era:

¡¡En la pestaña 'Service' de installShield al crear el servicio DEBE TENER EL MISMO NOMBRE QUE LA PROPIEDAD 'SERVICENAME' DEL SERVICIO!!



Los pasos hasta llegar a este punto se pueden seguir en el artículo:

Crear un servicio en windows c# con visual studio




Información de interes de la pagina oficial de la empresa creadora de installShield Flexera

fuente: https://community.flexerasoftware.com/showthread.php?193911-Error-1001-during-installation

  1. #1
    konanedojawa is offlineNew User (0 Posts)
    Join Date
    Jun 2010
    Posts
    3

    Error 1001 during installation

    I'm new in installshield , i created basic msi project using installshield 2010 .. build is succeeded , but unofrortunately when i tried to install the application and when it is about to finish the installtion , it gets two errors "Error 1001" then the installation rollback .. i wasted alot of time searching for a solution for that error , but i failed 

    can any one help me 
    thanks in advance
  2. #2
    MichaelU's Avatar
    MichaelU is offlineInstallShield Software Engineer
    Join Date
    Jan 2004
    Location
    Schaumburg, IL
    Posts
    4,683
    Error 1001 is often due to a problem in a .NET Installer Class. Unfortunately for .NET Installer Classes this single error code corresponds to several different underlying problems. In general I prefer to avoid use of .NET Installer Classes because they do not conform well with Windows Installer best practices.
    Michael Urman - Staff Software Engineer - Flexera Software: InstallShield Team
  3. #3
    konanedojawa is offlineNew User (0 Posts)
    Join Date
    Jun 2010
    Posts
    3

    Question

    but i'm using the installer class to attach the db used by my application , is there a way instead of installer class to attach the db ??!!

    thanks for reply
  4. #4
    bashenfelter is offlineUser (5+ Posts)
    Join Date
    Jun 2010
    Posts
    5
    Two issues I ran into using installer classes that resulted in getting the "1001" error:
    1. Make sure the correct version of InstallUtilLib.dll is installed in the MSI. If installing on a 32-bit OS, you'll need the 32-bit version. If installing on a 64-bit OS, you'll need the 64-bit version. Search the InstallShield help for where you specify the version of InstallUtilLib.dll.
    2. Within your installer class make sure you call the base class method of every method you're overriding. For example, in your Install() method, make sure the first thing you do is call base.Install().


    Other than that, I would simplify my installer class to determine if it's a problem with the installer loading the class vs. a problem with the logic inside the class. Adding some logging inside your installer class helps too.
  5. #5
    konanedojawa is offlineNew User (0 Posts)
    Join Date
    Jun 2010
    Posts
    3

    Unhappy

    for installutillib.dll , i didn't find in installshield help what is the correct version for my OS , i have windows xp professional and i'm using installutill version "2.0.50727.3053 " , is that right? 

    for the installer class i'm sure that i call the base class method of every method i'm overriding

    thanks

Jesús Moreno - Ingeniero Ténico Informático - consultor Informático

Hola, soy Jesús Moreno Ingeniero Técnico Informático en sistemas por la US y propietario de éste blog. Mi trabajo en los ultimos años se ...