Visual Basic .NET

Arithmetic Operators

Submitted by joken on
In programming, the Mathematical operations are very useful because most of the time we are dealing with mathematical concepts in programming. We know that computers can perform a mathematical calculation much faster than humans. Also the computer doesn’t have the capacity to do calculations without receiving any instructions from the computer user.

For Loops

Submitted by Yorkiebar on
What is a For Loop? A For Loop is used to iterate through a script a certain amount of times. Personally, I use it to check conditions for each item within a group, list or array. How do I use a For Loop? To create a For Loop you first need to decide how many times you want a script to run.

MultiPlayer MP3/Radio/Video Player/SlideShow

Submitted by vangelios on
MultiPlayer - mp3-Player, Internet-Radio und Video-Player im Mini-Format. - spielt mp3 eines Musikverzeichnisses sowie .m3u-Playlisten (senderliste.txt) - spielt Internet-Radio-Streams (.m3u, .asx) aus der senderliste txt - spielt Videos aus beliebigen Verzeichnissen - ShutDown Timer (Sleep-Funktion) - Suchfunktion für Titel und (neu) CD Editor für die Senderliste, Suche und Löschen von Titeln

Parameters/Arguments

Submitted by Yorkiebar on
What are 'Arguments'? In programming, arguments are pieces of data which are sent to a function upon calling that function. Arguments can be any standard variable type, this includes types such as 'String', 'Integer' and 'Boolean'. What are 'Parameters'? Parameters (Params) are the pieces of data which are request or required once a function has been called.

Custom Functions

Submitted by Yorkiebar on
What are custom functions? Custom functions are functions which you have made yourself. They can be Private (only the class in which it is created can use it) or Public (any class may use it). They are able to take parameters/arguments, can return data and can be ran on separate threads. When should you use custom functions? Whenever you have a script which needs to be ran over and over again at different positions within your source code you should create one function to contain the script.

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.

Select Case Statements

Submitted by joken on
The other way to test the data inside a variable is by using a Select case Statements. In visual basic, the Select case statements are just like If statement but with a little difference. For me, the Select Case statement is better and more efficient.

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.