Maps Windows 10 Get Latitude and Longitude

Come ottenere dal software delle mappe installato su windows 10 i riferimenti delle coordinate (latitudine e logitudine)

  1. Right click sul punto della mappa,
    e selezionare “Drop a Pin”
  2. Visualizzazione delle coordinate
  3. Cancellazione del marker
  4. Fine procedura
Posted in Operating Systems, Windows | Comments Off on Maps Windows 10 Get Latitude and Longitude

Java Framework

Spring è un framework per Java molto conosciuto e utilizzato per progetti Java.
Spring rende la programmazione di Java più rapida, semplice e sicura per tutti. L’attenzione di Spring su velocità, semplicità e produttività ha reso il framework Java più popolare al mondo.

Hibernate è un framework per java per la gestione di un modello relazionale ad oggetti è in concorrenza al “Entity Framework” per .NET

Posted in Java, Programming Languages | Comments Off on Java Framework

Satellite

Per conoscere la posizione (latitudine e longitudine) di un satellite è possibile consultare il seguente sito:
https://www.pulsesat.com/satellites/c/1ac6dff3-59d8-4309-8286-c77f9a66e5b0/

Posted in Utility | Comments Off on Satellite

Microsoft SQL Server Version

Nella cartella
C:\Program Files (x86)\Microsoft SQL Server\

probrebbero essere presenti le segueti directory

80 = SQL Server 2000 = 8.00.xxxx
90 = SQL Server 2005 = 9.00.xxxx
100 = SQL Server 2008 = 10.00.xxxx
105 = SQL Server 2008 R2 = 10.50.xxxx
110 = SQL Server 2012 = 11.00.xxxx
120 = SQL Server 2014 = 12.00.xxxx
130 = SQL Server 2016 = 13.00.xxxx
140 = SQL Server 2017 = 14.00.xxxx
150 = SQL Server 2019 = 15.00.xxxx

Posted in Database, SQLServer | Comments Off on Microsoft SQL Server Version

RFID

Alcuni produttori con relativi modelli di lettori RFID

Produttore Modello
Alien Technology ALR-F800X
Impinj Revolution
Caen Slate
Nedap TLS1128
NordicId Sampo; Stix
Posted in Hardware | Comments Off on RFID

DropDownList .NET with white background

Può essere utilile avere una dropdownlist in modalità di validazione dei dati,
ma che sia presente sempre lo sfondo bianco.

per rendere attiva la proprietà BackColor è necessario impostare se seguenti proprietà:
DropDownStyle = DropDownList
FlatStyle = Popup

Posted in Microsoft .NET C#, Microsoft .NET Visual Basic, Programming Languages | Comments Off on DropDownList .NET with white background

Microsoft Windows Default Environment Variables

%ALLUSERSPROFILE% C:\ProgramData
%APPDATA% C:\Users\{username}\AppData\Roaming
%COMMONPROGRAMFILES% C:\Program Files\Common Files
%COMMONPROGRAMFILES(x86)% C:\Program Files (x86)\Common Files
%CommonProgramW6432% C:\Program Files\Common Files
%COMSPEC% C:\Windows\System32\cmd.exe
%HOMEDRIVE% C:\
%HOMEPATH% C:\Users\{username}
%LOCALAPPDATA% C:\Users\{username}\AppData\Local
%LOGONSERVER% \\{domain_logon_server}
%PATH% C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
%PathExt% .com;.exe;.bat;.cmd;.vbs;.vbe;.js;.jse;.wsf;.wsh;.msc
%PROGRAMDATA% C:\ProgramData
%PROGRAMFILES% C:\Program Files
%ProgramW6432% C:\Program Files
%PROGRAMFILES(X86)% C:\Program Files (x86)
%PROMPT% $P$G
%SystemDrive% C:
%SystemRoot% C:\Windows
%TEMP% C:\Users\{username}\AppData\Local\Temp
%TMP% C:\Users\{username}\AppData\Local\Temp
%USERDOMAIN% {userdomain}
%USERNAME% {username}
%USERPROFILE% C:\Users\{username}
%WINDIR% C:\Windows
%PUBLIC% C:\Users\Public
%PSModulePath% %SystemRoot%\system32\WindowsPowerShell\v1.0\Modules\

::Avvio automatico applicazioni (copiare al suo interno il link a programma da avviare)
%appdata%\Microsoft\Windows\Start Menu\Programs\Startup

Posted in Operating Systems, Windows | Comments Off on Microsoft Windows Default Environment Variables

Html Icon Pointer Hand

I due link con attibuto CSS “cursor” impostato per la visualizzazione del puntatore del mouse “Hand”

Passando con il puntatore del mouse, sui seguenti link, puoi rilevare se il tuo browser, supporta entrambi gli attributi.

Di seguito un esempio di una pagina html che impstosta il cursore con i due attributi.

<!DOCTYPE html>
<html>
<head>
<style>
.pointer {cursor: pointer;}
.hand {cursor: hand;}
</style>
</head>
<body>
<a href="#" target="_blank" class = "pointer" >
pointer (mano cursore)
</a>
<a href="#" target="_blank" class = "hand" >
hand (mano cursore)(deprecato)
</a>
</body>
</html>
Posted in Web | Comments Off on Html Icon Pointer Hand

Javascript in ASPNET compliant for XHTML 1.0 Transitional

Potrebbe essere necessario convertire nelle pagine aspnet il codice javascript che non supporta lo standard “XHTML 1.0 Transitional”.

Solitamente il compilatore Visual Studio, segnala il seguente errore:

Validation (XHTML 1.0 Transitional): 
  Attribute 'for' is not a valid attribute of element 'script'.
Validation (XHTML 1.0 Transitional): 
  Attribute 'event' is not a valid attribute of element 'script'.

Lo scopo degli attributi

  • attributo “for”
    Imposta o recupera l’oggetto associato allo script dell’evento.
  • attibuto “event”
    Imposta o recupera l’evento per cui viene scritto lo script.

Di seguito un esempio di come convertire lo script javascript, per evitare l’errore

<!-- Codice Microsoft  -->
<script language="JavaScript" 
        for="id1" 
        event="Mousedown(Button, Shift, x, y)">
{
   // codice che utilizza le variabili Button, Shift, x, y
}
</script>

<!-- Codice Tradotto -->
<script type="text/javascript">
    var obj1 = document.getElementById("id1");
    obj1.onMouseDown = function(Button, Shift, x, y) {
        // codice che utilizza le variabili Button, Shift, x, y
    }
</script>
Posted in Web | Comments Off on Javascript in ASPNET compliant for XHTML 1.0 Transitional

chat

Una selezione dei sistemi per chat (e altro)

Posted in Utility | Comments Off on chat