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

Oracle Released MySQL Workbench 6.0

Submitted by navajocodetalker on
The world's leading software company Oracle has released a new version of MySQL Workbench with a revamped user interface and more database management support. The new MySQL Workbench 6.0 combines data modeling, SQL development, and server administration tools. The SQL Editor provides color syntax highlighting, auto-complete, reuse of SQL snippets, and execution history of SQL. It also supports

Shop Apps

Submitted by akora4 on
Long time coders, this is a complete inventory, Stock and invoice system. Auto detect available products (Min, Reorder and Max stock level), manage customers, track product and transactions, Auto codes for products, user authentication.... just contact 00233(0)245149126/[email protected] for full source code.

Part II: Inserting and Reading of Data in MySQL Database Using Visual Basic.Net

Submitted by joken on
This tutorial is the continuation of Connecting MySQL Database using Visual Basic.NET. In this part we will focus on how to insert Data and to load data and display it in a form using DataGridview Object. To start with, we will set up first our database table.

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.

Media Player control in Visual Basic.NET

Submitted by joken on
In this tutorial we're going to focus on using Windows Media Player in Visual Basic .Net where user is able to play music, videos and viewing of different formats of pictures. Basically the Windows Media Player does not exist in the components portion of the toolbox. So to add the Windows Media Player we need to add it in the toolbox. The first step would be, go to the toolbox and Right click then select Choose Items and the Customize Toolbox dialog box will open. Then Select Windows Media Player on the COM Components. Then click ok.

Creating a Simple Paint Program in Java

Submitted by mehfuza on
Introduction In this tutorial, a simple Paint program is created, which enables us to draw anything to screen. It's a basic program to understand the logic behind creating a paint program. Here main concept is implementing MouseMotionListener which handles mouse events. Whenever mouse is dragged a mouse event is sent to Java which finds the event listener in the program in order to take any action. We need to implement only mouseDragged() of many functions of MouseMotionListener class to draw to the Panel.