Saturday, October 11, 2014

How to create HTA Application


Hello friends in this post I am going to show how to create our first HTA Application. To create a HTA application you required a windows environment with basic knowledge of HTML.

To create your first HTA application open a blank notepad and past below code


<html>
<head>
<title>HTA Hello World</title>
</head>
<body>Hello World</body>
</html>

Save the changes with "MyFirstHTAApp.hta". This step is important save the file in. hta extension.

Now open your saved hta file by double click.

Wow your just created your first HTA Application.

Great! Now what we done here, as i explained in my previous article that HTA stands for HTML Application stored in local machine with *.hta extension. So using HTML code you can create great applications for windows. HTA provide you the power of HTML to create great windows app. In the next article we learn to add  HTA tag only applicable for HTA applications.

HTA tag  

My First HTA Application


Hello friends in this post I am going to show how to create our first HTA Application. To create a HTA application you required a windows environment with basic knowledge of HTML.

To create your first HTA application open a blank notepad and past below code


<html>
<head>
<title>HTA Hello World</title>
</head>
<body>Hello World</body>
</html>

Save the changes with "MyFirstHTAApp.hta". This step is important save the file in. hta extension.

Now open your saved hta file by double click.

Wow your just created your first HTA Application.

Great! Now what we done here, as i explained in my previous article that HTA stands for HTML Application stored in local machine with *.hta extension. So using HTML code you can create great applications for windows. HTA provide you the power of HTML to create great windows app. In the next article we learn to add  HTA tag only applicable for HTA applications.

HTA tag  

Friday, October 10, 2014

HTML Application add Custom Icon

HTML Application Add Custom ICON.



Hello,
Friends in this Post. I am going to show how to add Icon in your HTA Application. This is part of HTA Application tutorial you can access previous post by click on this.As show in image HTA_Application is my HTML Application and i want add install1.ico in the application.


Open HTA_Application.hta. In the below code add following line. Inside head tag.

<HTA:APPLICATION
     ICON="install1.ico"   
>



Save click.

Now double click to open HTA_Application.


Check this link for code