Facebook to Resurrect F8 Developer Conference After 3 Years

Submitted by blinkremz1 on
Facebook, the world's largest social networking site announced earlier that it is going to resurrect the F8 developer conference for the first time after three years. Facebook CEO Mark Zuckerberg together with Parse co-founder Ilya Sukhar announced the upcoming F8 developer conference in a presentation at SxSW last Saturday, March 8, 2014. Ilya Sukhar is one of the founding members of Parse, a

VB6 to Excel

Submitted by donbermoy on
In my previous tutorials, I had discussed about how to have an excel file using vb.net. And for now, we will create a program that can have an excel file from vb6. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2. Next, add two TextBox named Text1 and Text2 for inputting and displaying it in excel.

Get the Most Repeated Text in a ListBox using VB.NET

Submitted by donbermoy on
In this article, we will create a program that can determine the most repeated string or text inputted that is displayed in the ListBox. 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.

Developers Advice on Building Apps that will Sell

Submitted by anthea on
If you think that developing an app is just a simple task, well its definitely not as you have to work on it deeply. Meanwhile, if you are one of those aspiring app developer, you should focus first on your vision and goals before you go through in the complex world of developing an app and also consider the demand of your boss as well as the users expectations. Regarding to this, famous

Show Lists of Computer Process in VB.NET

Submitted by donbermoy on
In computing, a process is an instance of a computer program that is being executed. It contains the program code and its current activity. Depending on the operating system (OS), a process may be made up of multiple threads of execution that execute instructions concurrently. - wikipedia Here in this tutorial, we will create a program that will show processes in the computer. Now, let's start this tutorial! 1.

Count Total Subject/Row and Total Average Using Multiple Queries in One Table in PHP and MySQL

Submitted by ronard on
Hi sourcecodesterian especially for novice in PHP Programming, last time I uploaded was the " Multiple quries in one table using PHP and MySQL". Now I show you a simple queries in MySQL that count the total subject/row of student from table "grades" and display the total average grade from the student. This is just one table nested. Hope it will help. Thanks for reading...

Count Total Time Visited by User using PHP and MySQL

Submitted by ronard on
Hi sourcecodesterian, I would like to share this script that is part of my last project. The feature of this script is it will count the total time visited by user logged to the system. This will help the system admin to track the total time login by the user/client. Hope it will help you. How to install this script, copy the folder "tutorials" inside the "db" directory. And paste it to this path

Age Generator in VB6.0

Submitted by donbermoy on
Hello! Aside from making tutorial on vb.net, i will also create a tutorial for vb 6.0 for now. We will create an age generator using vb6.0. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2.Next, add only one Button named Command1 and labeled it as "Compute".

How to Create a Text Explorer Game in Python

Submitted by Yorkiebar on
Introduction: This tutorial will cover how to create a simple text based exploration game. How It Works: What we are going to do is; Give the user instructions. Show the current place where the user is within the game. Give the user options. Take them in the direction they enter. Restart loop from step 3. The Instructions: So the first thing we do is give the user instructions on how to play the game...