Tutorials

Interact With Webpage Using Chrome and jQuery - Mass Follow on Twitter!

Submitted by Yorkiebar on
Introduction: This tutorial is on how to use basic jQuery knowledge and Google Chrome to manipulate a webpage. Notes: The webpage we will be using for this is Twitter of which we will be following a page full of users with a simple, one line jQuery command. First: You need to find a list of users of which have the 'Follow' button displayed next to them.

How to get the Name Of Multiple TextBoxes Using For Each Loop

Submitted by janobe on
In this tutorial I will teach you how to get the name of a specific TextBoxes by using For Each Loop in VB.Net. This method will determine what are the names of your TextBoxes that you drag it on the Form. You will be able to find out the specific name of the TextBox because it will be seen in each TextBoxes. So let’s begin: Open Visual Studio and create a new Project. Drag all the TextBoxes and a Button.

Secure Password Generator in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a simple tool in Visual Basic to generate a secure password. Design: For this we are simply going to add a button to begin the process and a numericupdown to specify the amount of characters needed for the password. Button Click: Variables: First we want to create a Random object because this will choose which character to select next.

How to Add the Items in the ListBox Using InputBox in VB.Net

Submitted by janobe on
In this tutorial I will teach you how to add the items in the ListBox in VB.Net. With this, you can type whatever data you want in the InputBox and it will be added in the ListBox. The InputBox has been just like a MessageBox, their only difference is that the InputBox has a TextBox that you can input the data. Let’s begin: Open the Visual Studio and create a new Project. Drag a Button and a ListBox.

Unicode to HTML Converter in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a unicode to HTML equivilient characters. Design: This design requires two components; Textbox, textbox1, User entries Button, button1, Begins process. Variables: The way this system will work is it will search one array or list of information for the entry from the user, get the inex and return the element at the same index but in a different list, the information's equivilient partner.

How to Populate Listview with Data from Database using Visual Basic.Net

Submitted by joken on
In Windows from application, one of the most choice of a programmer used to display vast amount of data on the screen aside from datagridview is Listview control.Because Listview control provides the infrastructure to display a set of data items in different layouts or views. In this tutorial, i'm going to show you how to populate listview control with data from Microsoft Access database using Visual Basic.Net. to start with let’s a new project in Visual Basic called “Listview”. Then we will add a listview control from toolbox.

Compute Square Root of a Number in Java GUI

Submitted by donbermoy on
In this tutorial, you will learn how to compute a square root of a number using Java GUI using Math.sqrt function. We all know that square root are number that when multiplied by itself gives a given number. Now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of sqrRoot.java. 2. Import javax.swing package.