Basic Notepad in Visual Basic .NET
Introduction:
This tutorial is on how to make a simple Notepad text editor in Visual Basic .NET.
Controls:
The controls we will need are;
Button, button1, Save File
Button, button2, Open File
Textbox, textbox1, File Contents
Imports:
Before we begin, you need to import System.IO to allow our program to read and write to/from files.
Simple Phone Book in C++
Today, we will create a simple C++ console application to handle a simple phone book. This phone book will only store people’s name and phone numbers.
Church Management System
This Church Management System is developed using Visual Basic.NET and using MS Access 2010 database in the back end. Main Features are: 1. Members Registration 2. Weekly Expenditure Management 3. Income and Expenses Per Department Management 4. Income Envelops Management 5. Advance Records Searching 6. Advance Reports Login Information : Username - admin Password - admin Requirements - Visual
Call Function by String Name in Visual Basic .NET
Introduction:
This tutorial is on how to run a function using it's reference name as a string in Visual Basic .NET.
Built In:
Luckily enough, the .NET framework has a built in function which allows an object, string function name, invoke type, and parameters to be called - this function is named 'CallByName'.
Simple Screen Capture
Hi there, This simple project works like print screen button. The code demonstrates how to import external procedures on vb.net. I created this program using visual studio 2010.
DBF File Viewer
DBF File Viewer v.1 Usage: This is a simple program created in VS 2012, where in you can open and close a DBF file created in dBase.
Over-riding Functions in C++
Over-riding functions in C++
In this tutorial you will learn: 1. What is over-riding of a function? 2. Why to over-riding a function? 3. How to over-ride a function in a program? 4. Basic C++ syntax What is meant by over-riding a function? By over-riding a function it means that we add some extra functionality in the function which is present in the derived class and that function has the name same as that of the base class function.Backup MySQL Database in PHP
This is an update on the Data Entry with Picture Upload project that I created previously. I added Backup Database option on the View Data page. This is important to those sites that are using database. It is a good practice to regularly back up our records. Hope you learn from this project.