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

ColorDialog Tutorial in VB.NET

Submitted by donbermoy on
Color Dialog is one of the important features in VB.NET. It represents a common dialog box that displays available colors along with controls that enable the user to define custom colors. Now, let's start this Color Dialog 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.

View Source of a Website

Submitted by donbermoy on
All Internet browsers allow users to view the HTML or other source code of any of the web pages they visit. For example, a user can view the code used to generate page source of website. Here in this tutorial, we will make a program that can view the source of a website. 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.

C++ Tutorial: Multiplication Checker. Random in C++/CLI

Submitted by Bright777 on
   Today we will talk about random numbers in C++/CLI. Also I will show you a simple program, where I have used random numbers generator. First of all I should tell some words about the program. The main purpose of it will be to check your math knowledge in multiplication. It will generate two random numbers and you should multiply them and write the result. If the result is correct, program will show you the message “Correct”.

Spell Number Function in Excel

Submitted by StephenB on
Simple vb code (module) that can be integrated in excel to convert numbers into word. This example is convert hour(in number) to word, this code is a excel function which is the SpellNumber() function. Here is the process to integrate it to excel: 1. Download the sample module here. 2. First open excel file. 3. Press ALT + F11; new module creator will appear. 4. Just import the downloaded module

LinkLabel Control in VB.NET

Submitted by donbermoy on
We often see hyperlinks along the way in our websites, forms, etc. Same here in vb.net that we can also use this control to link to other websites through the use of linklabel. LinkLabel controls enable a user to hyperlink to a URL that points to either the Web or the local directory system. The idea is to put the email address or web URL into the Text property of a LinkLabel component, then when the label is clicked, the LinkClicked event is triggered.