How to Create a File Browser in Visual Basic

Submitted by Yorkiebar on
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

Submitted by jproimakis on
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

Submitted by davidwachira on
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. */

Simple Query Builder using Visual Basic.Net

Submitted by joken on
In this tutorial, It covers how to create a simple MySQL query builder using Visual basic. This application allows user to select MySQL database and when the “use” button is clicked, the program will then load all the tables existing from a specific database. And every time the user select the name of a table it will generate a query and display the result on the datagridview provided.

How to Create a Random ID Generator in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a Random ID generator. Steps of Creation: Step 1: First lets import System.Net and System.Text so we can use the internet and a function get a string between two points within a given string. Let's import those now and create our getbetween function... Imports System.Net Imports System.Text.RegularExpressions Private Function GetBetween(ByVal

Web-based GUI PostgreSQL Studio released

Submitted by jproimakis on
Web-access to PostgreSQL databases will now be made possible via a web-based GUI, designed to help users interact with their databases in the cloud, without having to be overly familiar with the mechanics of psql. Jim Miodgenski, creator of the new GUI, notes that in order to move things forward, he decided to start from scratch. Using Java, the language he feels most comfortable with, he

How to Create and Drop MySQL Database Using Visual Basic.Net

Submitted by joken on
In this tutorial, it covers the basics of creating and dropping of MySQL Database with visual Basic. MySQL is a leading open source database management system, multi user and a multithreaded database management system. MySQL database is available on most important OS platforms. It is one part of the very popular LAMP platform. Linux, Apache, MySQL, MySQL, PHP. But in my case, I am using XAMPP. To begin in this course, open visual basic and create a new project and name it as “ManageDb”.

How to Create a Program to Login to Twitter in Visual Basic

Submitted by Yorkiebar on
Introduction: Welcome to a tutorial on how to create a simple program to login to Twitter. This bot will not do anything other than login so you must know bot basics to carry on for performing actions. Steps of Creation: Step 1: I have created a simple form with just a button1 which is used for starting the process; Textbox1 to contain the username/email and Textbox2 for the password. You will