Send Bulk Mail Using Visual Basic

Submitted by Yorkiebar on

Introduction:

In this tutorial you will be learning how to send bulk mail in Visual Basic. Steps of Creation: Step 1: First we are going to create a new project with: 5 Text-boxes - Email From, Email Pass, Email To, Subject, Message 1 Button Rename them appropriately to: emailFrom, emailPass, emailTo, subject, msg Step 2: In the button one click event we are going to create an integer which is how many times we are going to send the email and another one to keep the amount sent.

Advanced Login module VB.NET & SQL Server

Submitted by Osman jama on
Login module Built in visual studio 2010 using vb.net and sql server database. used by administrators to control the users of your programs Perfect for Managing User Privileges and Roles control who has access to what such as viewing printing reports editing and deleting data or administrator tasks code sample program with database easy to add to vb.net projects . username = mike001 password =

Creating Quiz using JavaScript and HTML

Submitted by mehfuza on
The Quiz is created by designing it in HTML and Quiz Logic in JavaScript. It's a very basic and easy to implement Quiz Program. In the quiz program, one question is displayed at a time. It has two buttons next and previous. Answers are selected by checking radio buttons. Step 1: Design part: Form is created and <legend> tag is used to give title to the form. Inside the <fieldset> tag a table is created with id attribute.

Domain Checker + Pinger

Submitted by Joshman543 on
This program is designed to check if a client can access a domain or not if they think it is down, it also pings the domain. If the domain is not accessible it will say "Site is Down" in red and vice versa in green. The program pings the site and if the ping is below 100 the ping will be green, if its above 100 it'll be yellow and above 300 is red. For basic programmers and beginners.

Thesis Titles

Submitted by Ranielle Canlas1 on
IT Students, Do you need IT Project Proposals If you don't have any idea, here are some project titles to choose from Desktop Based Applications (VB6, VB.Net, Java, C, C++, C#, C#.Net, WPF Application) PRMS: Patient Record Management System CLASS: Computerized Library Administration and Support System Library Attendance and Transactions Recording System Payroll System for [Company Name] Products

How to use MS Access 2007 in VB6 for Patient Recording System

Submitted by Ranielle Canlas1 on
Sample Patient Record Management System that is capable of storing records of patient of a certain hospital. This application is created using visual basic 6.0 and the database is created using Microsoft Access 2007. Splash Screen is in simple design using Progress bar for animated loading of preferences (not actual loading) Login screen is connected to database records of users. Main Screen is in

Visual Basic Webpage Scraper

Submitted by Yorkiebar on
Introduction: In this tutorial I will be showing you how to create a webpage scraper in Visual Basic. This can be used to gather information from certain websites through an automated process. Steps of Creation: Step 1: First we want to create a form with a simple button (set the name to scrapeButton), a Text Box (set the name to linkURL), a Rich Text Box (set the name to srcBox) and a Web Browser (set the name to srcBrowser).