How to Create a Reminder Tool in Visual Basic

Introduction: Welcome to a tutorial on how to create a reminder tool in Visual Basic. Steps of Creation: Step 1: First we want to create a form with; Button1 - to add a new reminder Label2 - to store the current time Textbox1 - to store the text of a new reminder Textbox2 - to store the time of a new reminder Step 2: Next we want to create some custom functions, the titles of each explain exactly

Redesigned Yahoo Email Looks More Like Gmail

If you regularly use Yahoo email for personal or business purpose, you must have noticed some of the changes that have been made in the design of your email client. Yahoo got its first make over in the beginning of 2013 and recently, they again redesigned the interface of Yahoo email client. The first redesign had people saying, “it looks pretty much like Gmail” but after the recent design upgrade

Firefox Os Gets Upgraded To Version 1.1 – Mozilla To Introduce Smartphones Soon

Just around 6-7 months ago, Mozilla took everyone by surprise when they announced their own OS for mobile devices. At this time, the smartphone market is led by Apple’s iOS and Google’s Android OS. There are some other contenders in the market such as Windows OS and Blackberry but they don’t hold a light against the giant operating systems already working in the market. In such situation, when

Georgia Tech College’s Online CS Masters Course Open

Back in May, the Georgia Tech College of Computing announced plans to offer an online Master of Science course in Computer Science, sponsored by Udacity and AT&T, at a cost lower than $7 thousand --less than one third of what regular on-campus Master courses usually cost. Admissions are now open and the course is set to cost a little over $6,600. According to the GTCC, this is the first time an

Creating MySQL Database tables using Visual Basic. Net

In this tutorial, I’m going to show you how to create a MySQL database tables dynamically in a simple way. To start in this lesson, we need to understand first the concept of creating a MySQL database table. The creation of table command requires the following: Name of the table, Names of fields and Definitions for each field.

Chapell Media Player

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

How to Create a File Browser in Visual Basic

Introduction: Welcome to a tutorial on how to create a file browser in Visual Basic. Steps of Creation: Step 1: First we want to create a form with a listbox to contain the current path items (files and directories), a button to open a directory and a button to go up a level. We also want to import System.IO so we can access our files, directories and paths. Imports System.IO Step 2: So, first

Microsoft boosts IPython funds

IPython’s development plans receive significant boost after Microsoft elects to sponsor the platform with a $100 thousand donation. A command shell for interactive computing in multiple programming languages, the IPython was awarded the 2012 Award for the Advancement of Free Software at Libre Planet this year. Dr Fernando Perez, the man behind the platform, originally developed it as a sort of

C Program - Working with Sub-arrays

C program with the following specifications : • An array of a variable size (n) • A variable (y) of type integer • The algorithm should divide the array into n/y parts • Calculate the average for each part • Finally find the maximum value among the averages #include /* C Standard Input and Output Library*/ /*Variable declarations*/ int y; /* Declaration of a variable called y of type integer. */