Programming Tips: Five Tools to Professional Coding

Submitted by jproimakis on
When shifting from coding as a hobby to full-fledged professional developing, here’s a set of tools one comes to appreciate. Discipline: Focusing on the task at hand and delivering it in a timely fashion and at an optimal state, becomes a major advantage one seeks in a professional coder, as opposed to a hobbyist who may write ingenious code but in an unreliable fashion. Priorities: Picking up one

Library Management System using Libsoft Framework

Submitted by joken on
This is a student project, a Library Management system created using Visual Basic 2008 with a Libsoft framework, a Libsoft is an integrated, multi-user, user-friendly Library Management Software Package. It has been an excellent performance in various schools, Colleges, universities, Special and Public Libraries. And Microsoft Access as Database support. The system has a feature for adding

MP3-Player and Internet-Radio - "old style"

Submitted by vangelios on
mp3-Player und Internet-Radio im "old style". - spielt mp3 eines Musikverzeichnisses sowie Playlisten (senderliste.txt) - spielt Internet-Radio-Streams (.m3u, .asx) aus der senderliste txt mp3 player and Internet radio in "old style". - Plays mp3 from a own default music directory and playlists from the senderliste.txt - Plays internet radio streams (.m3u, .asx) from the senderliste.txt. http:/

How to Create a Login form in Visual Basic.Net and MySQL Database

Submitted by joken on
In this tutorial, I'm going to show you how to create a simple Login-Logout system using Visual basic.net and MySQl Database. To start with this application, open Visual Basic->Create a New Project->Save it as “Login”. This time, let’s add objects to our windows form and these objects are the following: four Labels, two Textbox,two buttons and a Groupbox.

MARian College Computerized Enrollment System

Submitted by cowrylet on
This is an enrollment system for marian college of baliuag. it is a requirement for my thesis and for my project... it's working... admim username = a admim password= a registrar username = b registrar password= b cashier username = c cashier password= c for questions and suggestions... message me @ my facebook account.... here is the link... https://www.facebook.com/joncharles.delacruz

How to Create a 'What Should I Do?' Program in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to my tutorial on how to create a 'What Should I Do?' program to make decisions for you in Visual Basic. Steps of Creation: Step 1: First we want to create a form with; textbox1 - contain new options to add, button1 - add new option contained in textbox1, button2 - choose which option to do! Lets also create a list of string which will contain our options. We also need a

Inventory Management System

Submitted by induja.ganeshan on
This project is aimed at developing an inventory management system for a departmental store. This system can be used to store the details of the inventory, update the inventory based on the sale details, produce receipts for sales, generate sales and inventory reports periodically etc. This is one integrated system that contains both the user component and the admin component.

Teaching Initiatives Bring Coding to Forefront

Submitted by jproimakis on
A couple of teaching initiatives have made headlines, with non-profit Code.org aiming to reach 10 million US students with its Hour of Code program, while General Assembly is offering free online web development courses through Dash. Code.org is aiming to celebrate this year’s Computer Science Education week (Dec. 9-15) by reaching millions of students in 50 different States of the USA, spreading

If Statements

Submitted by joken on
The If statements is one of the conditional Logic statements, that allows the programmer to specify which condition evaluates to true or false. Without the conditional statement, a program could not meet the condition requirement and possibly returns a different result. Sample Syntax If condition Then [ statements ] [ Else [ else statements ] ] The if statement is a decision statement, used to check a condition and if the condition is true then the statements following Then are executed.