visual basic

Retail Store Sales Management

Submitted by djshoruv on
This is a complete retail store sales management system. It allows you to create invoice, accept product return, and refund a sales. It has also a report for daily sales, daily sales return, current stock report, purchase report, sales report and a lot more. Password: 123 Full version source code. If u need any kind of help plz mail me.

Visual Basic Proxy Checker

Submitted by Yorkiebar on
Introduction: This tutorial will be on how to create a proxy checker which will test a list of proxies and report if they respond within 3000ms/3seconds (can be changed using .Timeout). Steps of Creation: Step 1: First we will need to Import two packages, one to use StreamReader and StreamWriter and another to use HttpWebRequest and HttpWebResponse

Visual Basic Skype Mass Message

Submitted by Yorkiebar on
Introduction: This tutorial you will learn how to create a mass message program for Skype in Visual Basic. Steps of Creation: Step One: First we need to include the Skype API so go to Project > Add Reference > COM > Skype4COM. Step Two: Now add a button to our form which will begin the mass message process and a text box to enter the message to send to everyone. Step Three: Next we need to create a variable to contain our Skype client.

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 =

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).