Responsive Navigation with HTML/CSS

Submitted by tmohlatlole on
For the mark-up, create file and name it index.html. CSS only Demo Responsive Show Menu Home About Who We Are What We Do Portfolio Photography Web & User Interface Design Illustration News Contact Now we come to css, create a file and name it main.css. #container { display: block; width: 100%; margin: 1.09123432523124534% auto; } header{ display: block; padding-bottom: 50px; } ul { list-style-type

Print with an Inputted TextBox using VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that creates a printing of textbox using vb.net. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add Button for printing named "bnprint", a textbox named "tx1", .a PrintDialog, and PrintDocument1.

Display Battery Information in VB.NET

Submitted by donbermoy on
This tutorial will teach you how to create a program that will get the information of the battery of your laptop such as getting its percentage battery and if it is charging or not using vb.net language. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one ProgressBar on the Form and a Timer on it.

How To Make Flip Menu Using HTML JavaScript

Submitted by alpha_luna on
Flip Menu Sidebar creates a menu out of an ordinary HTML using list types. It has a one external .js file inside, the images used instead the default list bullets. And, if it has previously open file or a folder, it should be closed when the current file or folder is open. You can add more link in the Flip Menu as many as you wish. And, you can edit the style, or you can put some animation using CSS.

Directions:

First: Kindly copy the following code below to the HEAD section of your page.
  1. <style type="text/css">
  2.  
  3. a {
  4. color:blue;
  5. text-decoration:none;
  6. }
  7.  
  8. a:hover {
  9. color:red;
  10. }
  11.  
  12. </style>
  1. <script type="text/javascript" language="JavaScript" src="js/menu.js">
  2. </script>
Note: The above code requires to DOWNLOAD the sourcecode and the images. Just click the ("Download Code") below. For the image, download by right clicking each link below, and select "Save image as...". flip_closed flip_open flip_static

Methods and Constructors

Submitted by GeePee on
Introduction: Welcome, this tutorial will teach you about Constructors and Methods in Java. What is a 'Method'? A method is a block of script which performs for a purpose. The use of methods is to avoid re-writing the same scripts over and over again because instead, you are able to use the same method every time you need to run that particular script. Methods normally return a value once ran but can run without returning anything. Methods can be custom created by the programmer or they can be built in to Java...

Syntax

Submitted by GeePee on
Introduction: Welcome to `Basic Syntax` for Java beginners. This tutorial will teach you the correct format your code should be in as well as what some syntax related errors mean and how they may occur. What is Syntax: Syntax is the arrangement or format of your code. The way your code is laid out will not generally affect the performance of your program.

Getting Started

Submitted by GeePee on
Introduction: This tutorial will help you get started with developing your own Java applications from scratch. Requirements: For developing Java applications you will need either an IDE (Integrated Development Environment) such as Eclipse which has it's own compiler built in which makes it easier for you to debug your program. Or, you can decide to use a Text Editor such as; Notepad, Notepad++ or Sublime then you will have to compile your .java files each time you would like to test your program.

Java Tutorial

Submitted by GeePee on
This page will (in the near future) hold a list of great, in-depth tutorials teaching you the ins and outs of programming in Java. Including tutorials for beginners such as; - Syntax - Namespaces and for advanced programmers such as; - Networking - Threading As you begin to learn the basics of Java through these dedicated tutorials you will become more aware of how software is 'programmed well', how to save space and the importance or certain conventions within Java. So go ahead; Choose you're first tutorial from the list below!