Showing posts with label VBscript. Show all posts
Showing posts with label VBscript. Show all posts

Monday, 29 July 2013

VBScript - How to make a text encryption program


     * This is a simple HTML application which can encrypt and decrypt the text entered into a text box using the given key. The encryption algorithm is really simple and the output is in only uppercase alphabet letters and numbers. The drawback of the program is that it will double the length of the string when encrypting. Don't use this encryption program as the only source of security for important data.
To make the encryption program save the following code with .hta extension using notepad.

Copyright © 2013 | By - Anbuselvan




Remember to leave your ratings and comments. Also share the blog with your friends and family!

 

Continue Reading →

Sunday, 30 June 2013

VBScript prime number generator



  This is a really cool HTML application which finds all the prime numbers in a given range. This program is pretty fast for low ranges and may raise the core usage to 100 or 90 percent for very large ranges. So I prevented large ranges from being entered as it caused some errors and caused the computer to crash.
The VBScript used in the program is really simple. The program tries to get a integer number by dividing it with all possible numbers and if does not get an integer the number is confirmed as a prime number. This process is repeated for all the numbers in the given range.
To make the program paste the following code in notepad and save with a .hta extension.

Copyright © 2013 | Prime Calculator - By #XByte

 

Continue Reading →

Make a weekday calculator in VBScript

   

*This is another hta file which will tell you the weekday of the date you specified.
The code is a little complex so when I looked at the code after making this, even I had difficulty in understanding the code. I took the formula from the internet and this program is tested so you can be hundred percent sure this program is accurate. :)


To make the program just save the following code with a .hta file extension using notepad.


Caution : Modifing codings will damage your data so dont modify the codings..


Remember to leave your rating! and subscribe us if u like .... (Y)

Continue Reading →


 Make a simple calculator in HTML using VBScript



  
*This is a very simple calculator made with HTML and coded with VBScript. This hta file simply evaluates the expression in the text box. The expression can be entered using the mouse to click the buttons or else from the keyboard. To prevent the chance of invalid data being entered, only numerical keys and the signs are allowed on the keyboard. Also you can use Enter key to evaluate the expression and C to clear the text box.
To make the calculator just save the following code with a .hta extension using notepad. Hope this code helps you improve your scripting! Happy Hacking..




Continue Reading →