How to Get SVG Thumbnails in File Explorer on Windows 10
If you work with SVG files frequently you can enable the preview for this type of files this way.
[mai mult...]Soluții pentru problemele tale IT
If you work with SVG files frequently you can enable the preview for this type of files this way.
[mai mult...]ICON=”%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe”
Codul trebuie introdus in campul <HTA:APPLICATION .. />
[mai mult...]It is the most straightforward option for sorting, a simple option that enables us to reorder data in specific columns.
[mai mult...]Cum putem accesa un fisier txt cu ajutorul unei aplicatii HTML (.hta) folosind VBScript
Intr-un editor de text copiem urmatorul text:
<html>
<head>
<script language=”VBScript”>
Sub RunTXT
Set objShell = CreateObject(“Wscript.Shell”)
objShell.Run “E:\Users\Desktop\casuta.txt”
End Sub
</script>
</head>
<body>
<button onclick=”RunTXT”>Open TXT</button> <p>
</body>
</html>
In cazul in care dorim sa modificam culoarea de fundal a unei aplicatii HTML (.hta), putem folosi urmatorul cod:
<style>
body {
background-color:powderblue;
}
</style>
Powderblue este culoarea selectata de catre noi.
[mai mult...]In cazul in care dorim sa rulam o aplicatie .hta in modul Full Screen putem folosi urmatoarea comanda:
WINDOWSTATE=”maximize”
Exemplu:
<HTA:APPLICATION ID=”ExempluHTA”
BORDER=”thick”
BORDERSTYLE=”complex”
WINDOWSTATE=”maximize”/>