File Searcher in VB.NET

Submitted by donbermoy on
Hi! Today, we will have a tutorial on how to create a file searcher program that can access to search files to your computer and display the lists of corresponding file in the ComboBox. So, 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.

Microsoft is Officially Going Down

Submitted by blinkremz1 on
Microsoft is officially going down as confirmed by the Fortune's annual ranking of the World's Most Admired Companies for 2014 bringing the former top spot contender on the 24th place. Apple continues to dominate on the list conquering the other giant companies including Google and its main rival, Microsoft. Microsoft has now brief into commercialization. In fact, Satya Nadella, the new CEO has

Forum Tutorial - User Levels #1 - Setting Up & Altering Register Functions

Submitted by Yorkiebar on
Introduction: This tutorial will be continuing my creating a forum in PHP/MySQLi/HTML tutorial series. I have received a request to implement user levels to the system, so this tutorial will be setting up the things we need, and adjusting the register script to avoid errors. The Theory: Each user will have an access level, each of which have different permissions.

Forum Tutorial - Deleting Posts

Submitted by Yorkiebar on
Introduction: This tutorial is on how to add the ability for a user to delete their posts. The Theory: We could add a user panel where it lists all the users posts along with options to delete them, but instead we are going to add a delete option adjacent to the post itself to save space - plus I'm planning on making an admin panel tutorial soon. The PHP: So in the part of the PHP where we actually output each reply to a thread, we want to check if the logged in users' username held in the session variable is equal to the author of the post,

Login Form

Submitted by Dusan on
This is a simple login form. I have created a database with 6 columns (usernameID, username, password, name, surname, email),and then created Entity data model from that database (ADO.NET). It also has a register form where you can insert new users into database and a datagrid view on starting form (login) and on the content form, where you can see what is in the database. I have entered 3 users

C++ Tutorial: Math class in C++/CLI. Function calculator

Submitted by Bright777 on
   In this tutorial we are going to talk about Math class in Visual C++/CLI and we will use such methods : Math::Sin (computes sine), Math::Cos(computes cosine), Math::Tan (computes tangent). And also we will write a simple program, which computes some math functions. Preparation    First of all you need to create a new Windows Forms Application project and prepare your main form for coding. In this program should be one Text Box, four Radio Buttons, two Labels and one Button Control.

Text to Binary Conversion in VB.NET

Submitted by donbermoy on
Computers store all characters as numbers stored as binary data. Binary code uses the digits of 0 and 1 (binary numbers) to represent computer instructions or text. Each instruction or symbol gets a bit string assignment. The strings can correspond to instructions, letters, or symbols. In computing, these codes are used for encoding data. Here in this tutorial, we will create our own program to create a text to binary conversion. :) So, now let's start this tutorial! 1.

C++ Tutorial: Using a Link Label Control in C++/CLI

Submitted by Bright777 on
   In this tutorial I am going to show you one more control – Link Label. This control is little similar to Label Control – it represents text. But if you click on the text of Link Label control you can go to a specific location, for example to the page in the internet. In the program of this tutorial we will make an opportunity for user to choose the browser and the page to surf the World Wide Web. Preparation    First of all you need to create a new Windows Forms Application project. Prepare main form by dragging controls on it.

Forum Tutorial - Email Verification

Submitted by Yorkiebar on
Introduction: This tutorial will be covering how to add email verification to your user account registration page. As a base for this tutorial, I will be using my already made series of pages from my forum creation series which can be found on my account tracking page (there's around 20 parts!). The Theory: The way this verification is going to work is; The user will enter their email upon registration. A ticket will be created and stored in our database containing a unique string which will be emailed to the users email address. The email will be sent