Tagged Questions

An HTML Application (HTA) is a Microsoft Windows program whose source code consists of HTML, Dynamic HTML, and one or more scripting languages supported by Internet Explorer, such as VBScript or JScript.

learn more… | top users | synonyms

43
votes
9answers
32k views

Take a screenshot of a webpage with javascript?

Is it possible to to take a screenshot of a webpage with javascript and then submit that back to the server? I'm not so concerned with browser security issues etc as the implementation would be for ...
9
votes
4answers
30k views

HTTP status code 0 - what does this mean in MS XMLHTTP?

I have an HTA (Microsoft HTML application - just an offline HTML + JavaScript application) that is using the standard MS XMLHTTP COM object (Microsoft.XMLHTTP or Msxml2.XMLHTTP depending on version ...
5
votes
1answer
247 views

How to get the associated icon of a file in HTA (HTML/Javascript/VBScript)

I'm building an HTA application in which I need to display a list of file with their associated system icon. I'm using FileSystemObject to list the file but there seem to have no way to get the ...
5
votes
1answer
839 views

HTA installer for MSI failing

I'm using a HTA to try to install a product using WindowsInstaller.Installer as an ActiveXObject. Using the same HTA model that has been used in the past, the attempt to install throws the error: "Msi ...
5
votes
4answers
2k views

HTA's; use other browser to host?

If Microsoft's method for using IE as a local host for HTA's then, can I use any other browser instead?
5
votes
9answers
7k views

Can I embed an icon to a .hta file?

I have written an HTML Application (hta file) and am wondering if there is a way to embed an icon file into the hta file itself. I have seen html emails that include embedded graphic files, is there ...
4
votes
3answers
1k views

Simple Win GUI - should I try PowerShell or just stick with HTA?

knowing what PowerShell can do on a command line I have never learned how to write GUIs with it. Should I? Or just go back to the good old HTA / VBScript?
4
votes
2answers
656 views

Is it possible to use reg free COM with HTA applications?

Since HTA applications are hosted within MSHTA.exe how does one provide a manifest? Plus I assume providing a MSHTA.exe.manifest could potentially break other HTA apps?
3
votes
1answer
649 views

Executing 32bit and 64bit mshta.exe (bypass default handler)

I'd like to be able to launch a page.hta in 32bit and 64bit versions of the mshta.exe. Create the file c:\page.hta <body onclick="if(confirm('Close? (onclick)')){self.close();}"> ...
3
votes
2answers
647 views

Is it possible to add custom icon to hta

Is it possible to add custom icon to hta? What I mean is change the default hta file icon, which is "System Application Icon". Can it be done without assigning new icon to the extension, and not using ...
3
votes
1answer
215 views

Embedding Javascript Within an Image File

I've noticed a new trend in distributing potentially unsafe code where people will post an image to a server with a watermark suggesting that they change the filename to have a .HTA file extension. I ...
3
votes
2answers
266 views

What are the requirements for HTA files?

They seem to open in an internet explorer type window, does anyone know: How long have HTA files been around? Have they been around since Windows 98? Do they rely on Internet Explorer being ...
3
votes
1answer
1k views

Security Level for WebBrowser control

I am trying to migrate an .hta application to a C# executable. Of course, since it's an .hta the code is all HTML and Jscript, with calls to local ActiveX objects. I created a C# executable project ...
2
votes
0answers
63 views

Using Javascript in HTA file to read/write from Windows registry

I'm currently attempting to write Javascript in order to read and write from the Windows registry in an HTA file. Here is the current code I am using to write: writeInRegistry = function (sRegEntry, ...
2
votes
1answer
70 views

CSS3 support for HTA

Is HTML5 and CSS3 supported by HTA? If I am planning to use my application only with Windows operating system: It is a simple application that does some basic file handling, is HTA a viable option? ...
2
votes
1answer
79 views

Documentor for javascript

Where I work we are using phpdocumentor and it works fine. But I cannot find an application to do the same for javascript. I found a few answer on stackoverflow, but they are all 2 years old : What ...
2
votes
3answers
775 views

Compiling .hta file to .exe

I have searched far and wide for a way to compile my .hta file (and resources) to a .exe file. There are plenty of applications that claim to be able to do this - but they have not worked for this ...
2
votes
2answers
478 views

How do you pass a javascript variable as an argument to a vbscript function (in the context of HTAs)?

I am writing an HTA and I need to pass a variable that I have in Javascript to a VBScript function. Can you please let me know how to do this? Here is a (nonworking) example of what I'm trying to do: ...
2
votes
4answers
295 views

javascript detect if being run in hta

We'd like to allow our users to download an hta file and run our web app inside it, and have certain pages detect that they are running in an hta file and offer additional features that a web app ...
2
votes
1answer
1k views

What IDE should I use to develop hta files that automate Word and Excel?

Which version of Visual Studio Express should I use to develop an HTA application that will script Word and Excel and connect to a web service? Should I download the web edition because hta files are ...
2
votes
2answers
208 views

What are HTML applications?

I recenty stumbled upon some files described as "HTML Applications" on my Win XP machine. What are they? Who would ever use them? Why do I have like 2 or 3 of them on my PC? How do they generally ...
2
votes
3answers
365 views

User Interface Markup Language pros and cons

I learnt about some declarative UI languages such as XUL for Mozilla/Gecko and HTA for Microsoft at Wikipedia. What would be the advantages/disadvantages of these markup languages? Why don't ...
2
votes
2answers
2k views

How can I open a link in the default web browser from an HTA?

I'm working on an application that is implemented as an HTA. I have a series of links that I would like to have open in the system's default web browser. Using <a href="url" target="_blank"> ...
1
vote
2answers
45 views

Paste image from clipboard javascript

We have a program the wants to get an image copy into the clipboard to paste into a file on the HDD using javascript/HTA. Does anyone done something like this before? Or How can I create an image ...
1
vote
3answers
91 views

Access VBScript variable within Javascript inside of an HTA

I'm trying to access a variable in javascript that i set in vbscript all within one hta file: <script type="vbscript"> var globalVariable = test123 </script> <script ...
1
vote
1answer
33 views

Dynamically Change HTA Window Properties

In my HTA, I hold it it open if an error occurred, and close it if everything was successful. At the start, I have the sysmenu property set to no because I do not want the user to close the HTA until ...
1
vote
1answer
28 views

How to make an HTA process an high priority

Is there a way to make an HTA process use more then 3% of the CPU? We are using a HTA script to scan multiple files. The process is quite long, but my guess is that if we could run the script on high ...
1
vote
0answers
57 views

Legal concerns about encryption [closed]

I am working on the development of an HTA application that I inherited. Among the new features I am implementing, there is that of collecting statistical data whenever a certain set of events occur. ...
1
vote
1answer
96 views

Creating a Chrome web application with shell commands

I would like to create a simple HTML based application which will be used offline. The application needs to be able to execute shell commands (in Windows) to perform various actions. How can I create ...
1
vote
1answer
206 views

Google Chrome Frame Don't Work with HTML Application (.HTA)

I want to build an application that will load the web like the web browser. But I want it looks like the application or like the .exe. When I double click, it will run the app and load the web. My ...
1
vote
1answer
591 views

What's the alternative for hta (HTML apps)?

I have to convert a HTML application (.hta file) so that it can be executed on Linux and MAC also. What could be the alternate ways of doing it? Should I convert to an AJAX app? Any suggestions? OR ...
1
vote
1answer
246 views

How to get the size of a HTA window?

You can SET the size of a HTA window but I can't find a way to GET its size. All I can think of is reading document.body.offsetWidth and .offsetHeight, but those give you the viewport size not the ...
1
vote
1answer
709 views

How to debug IE9 HTA?

Has anyone gotten a debugger attached to mshta.exe after installing IE9? (64bit or WOW64)
1
vote
1answer
296 views

How can I create an HTA that enable close button after certain time period(15 sec)?

How can I create an HTA that enable close button after certain time period(15 sec)? Thank in advance.
1
vote
1answer
78 views

How can I use watin with a .HTA HTML Application?

I've created a .HTA HTML application and I need to be able to create test scripts for it using watin (or anything else if you can suggest something that will work and fit in well with Visual Studio ...
1
vote
2answers
426 views

Javascript wshell.run not working properly

I'm using HTA and in it I have a function that should run a command line with wshell.run , If I'm writing this line in Windows 'Run' util it is working fine, I want it to work also in the HTA with ...
1
vote
2answers
429 views

A simple database for an HTA

I have been tasked with creating a couple of databases for local use in our office, one for logging sickness calls and another for logging staff taxis. I do not have the ability to install new ...
1
vote
1answer
685 views

Send email in HTA using JavaScript and hide the sender's email address

I'm using an HTA at work with many options, now I'm trying to add a page that allows you to send an email directly from the HTA without opening MS Outlook. I'm using Outlook 2003. I tried two ways to ...
1
vote
2answers
401 views

Running 2 subroutines at the same time

I am trying to enhance an hta i've been working on for a while with a loding bar. I want to make the loading bar running while the other sub is being executed. I don't know how to make both subs run ...
1
vote
1answer
923 views

Pass Credentials to WMI Call in VBScript

I have VBScript inside a HTA getting the ping status from a local WMI call.. I also have a function to get the last reboot time of the remote pc.. Function GetReboot(strComputer) Set ...
1
vote
1answer
652 views

How to get an HTA to restart itself?

I have an HTML Application that I am using to build a kiosk environment. At the end of every session (when the user clicks "Logout" or after a timeout) I want the HTA to close itself and restart*. I ...
1
vote
2answers
65 views

Can i not show the message that apears when HTA is activated

I tried using an HTA to deploy some files to the users computer. I would like to do so silently cause our users get upset by the fact that they need to approve the activation of the HTA every time the ...
1
vote
1answer
262 views

change HTA application window size

is there any way to change the size of an HTA application? thanks
1
vote
1answer
691 views

Any tricks to stop flickering in between page transitions?

Specifically, I am using a .hta to display pages. As the content is local, pages load instantly, but there is flicker as they redraw. Are there any tricks you can use to stop it flickering or reduce ...
1
vote
1answer
984 views

Using JavaScript and XML in an HTA?

JavaScript is the web language I am most comfortable with, and I am new to HTA but I think it might be 'the' way to make a fully local dynamic page (updatable with imgs, forms, and the ability to ...
1
vote
2answers
718 views

WinPE 2.0 (Vista) - Looking for a solution for BrowseForFolder using VBSCRIPT & HTA application

I am creating an HTA application to be run inside of a WinPE 2.0 environment. The purpose of this HTA app is to prompt the user to select a back-up location. I am currently using BrowseForFolder to ...
1
vote
2answers
377 views

is it possible to read something.properties using javascript ? (in a .hta file) >> to read in Selenium

I am using Selenium to do testing, We write our test cases in html files and make test suites out of them, our requirement is to write test cases that are robust enough to change themselves as per the ...
1
vote
1answer
214 views

Can a browser emulate the security-related functionality of a .hta file?

Currently, we have an .hta file that employees use to update certain elements of their active directory profile. This alleviates system administrators from having to deal with that issue. The ...
1
vote
4answers
2k views

Javascript - getting path of file dropped into HTA

I am building a little HTA for personal use, and would like to be able to drag and drop a file to the interface. Once the file is dropped, I would either automatically run it (assuming it fits some ...
1
vote
1answer
530 views

Design Advice for an HTA based Crud App

I am developing a framework for various in-house CRUD apps. I've considered several MS technologies (WPF, Access, WinForms, ASP.NET) and have settled on ASP.NET MVC with HTA+Jquery for the client. My ...

1 2 3