line

Comments

Submitted by GeePee on
Introduction: Welcome to a tutorial on the use of comments within Java. What are comments? Comments are just like the standard definition of comments anywhere in the world, they are used to explain something within the midst of the code. Comments are not read by Java and as such do not affect the program running. When are comments used? Comments are normally used to either make a note for the developer their self so they know where they need to go back to, or bookmark a specific location within a Java file.

How to Create a Custom Command Line program in Visual Basic

Submitted by GeePee on
Introduction: Welcome to my tutorial on how to create a Custom Command Line in Visual Basic using a form design. Steps of Creation: Step 1: First we want to create a form with; listbox1 - to contain program output, textbox1 - to contain user input. Step 2: Next we want to access teh textbox1 keyPress event.

PHP Basic Syntax

Submitted by Yorkiebar on
Introduction: This tutorial will cover the basic syntax of PHP files. What is syntax? Syntax is defined as "the structure of statements in a computer language." and as such refers to the format of the given scripts. Importance of correct syntax Having correct syntax in any script is extremely important.

How to Create a Random Line Selector in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a random line selector from a word document. Steps of Creation: Step 1: First we want to create a form with... Textbox1 - File Path Textbox2 - Chosen line Button1 - Browser for file path Button2 - Get random line Step 2: Now lets do the button1 function - selecting a file path... Private Sub Button1_Click(sender As Object, e As EventArgs)