Chapell Multimedia Player

Submitted by Capela85 on
This is a full multimedia player.With this media player you can listen to mp3 files see mpg,avi,etc videos ,save and load playlists ,order files of playlist by name, listen to webradios, listen to cd's, change music speed, change music balance, see music time elapsed or remaining, see id3 information of mp3 files, see files location, play music continously, in random mode, repeating all, repeating

Conditional Operators

Submitted by joken on
In Visual Basic, we are using Conditional Operators to evaluate a condition that applied to one or two boolean expressions. An expression returning a value if the that expression is true and a different one if the expression is evaluated as false. The logical AND and OR operators both take two operands. Each operand is a boolean expression.

NetBeans 7.4 Released

Submitted by jproimakis on
NetBeans IDE 7.4 is now available, with its HTML5 development support implemented in version 7.3, now expanded to Java EE and PHP applications, as well as support for mobile web development on Android and iOS. NetBeans IDE allows you to quickly and easily develop Java desktop, mobile and web applications as well as HTML5 applications with HTML, JavaScript and CSS. The IDE also provides a variety

Developer Tips: Bypass JavaScript’s Garbage Collections

Submitted by jproimakis on
According to Google performance expert Colt McAnlis, one of the direst problems web developers face today is JavaScript performance. JavaScript parsing engines use GC (garbage collection) for memory management, a method that allows programmers make sure memory no longer used by a program is sent back to the operating system, and though that may be helpful, memory management code in languages like

5 new features being introduced in OS X Mavericks

Submitted by Saad Arif on
Apple is coming up with a new version of its OS Mavericks and it is called OS X Mavericks. There are many updates that will be seen in this new OS version but we are going to give you hints about some of the latest features that are going to be added in OS X Mavericks. 1 – iBooks If you have been an Apple user since a long time then you already know that to use iBooks, you had to be on iOS

Dates and Times

Submitted by joken on
One module in Visual Basic is DateAndTime . Which contains date values, time values, or date and time values. As a programmer, there are cases that we always display the date and time in our application or web application. Using visual basic we can manipulate dates and times in many ways. To do this, open and visual basic and create a new project and save it as “Datetime”.

For each Loop

Submitted by joken on
One way to loop over the elements in an array using visual basic is to use For each loop. Because it automatically loops over all elements in the array or collections. And it works well when you can associate each iteration of a loop with a control variable and determine that variable’s initial and final values.

Arrays

Submitted by joken on
In programming, there are many cases that we need to reuse or we want to store many values in a single variable, but the problem is that variables can only hold one value. On the other hand we will be using an array. An array is a series of objects, with the same type and size. Each object in an array is called an element of an array.

Progress Bar

Submitted by joken on
Progress Bar is used to give visualization about the status of the current process and computer operation, such as a downloading , transferring of files, installation and more. Your application will look more professional if you are implementing a complex data processing using the Progress Bar. This time, we will create an example of a Progress Bar using Visual Basic. First, open visual basic and create a new project then, save it as “ProgressBar”. Then from the toolbox add a progressbar,label, button and a timer. Next, we’re going to add functionality to our application.

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.